-
ketas
megaTherion: you said mmap isn't my issue but others looked info subject much more deeply that i ever can and found that mmapping a file from zfs could lead to wasted memory
-
ketas
which would be "fun"
-
ketas
that would manifest itself much more quickly if you don't have much to waste
-
FatalNIX
Ay
-
megaTherion
ketas: mapping a file from vfs is actually allowed and a feature
-
megaTherion
and that you let your system starve for memory is your decision, not those of others
-
ketas
there the question wasn't what's available but more like is it reasonably used... as far as i know mmap function allows one to use file as it were memory, it doesn't mean stick it all into ram immediately for fast access and kill sshd off
-
ketas
no?
-
megaTherion
*lol*
-
ketas
unsure what zfs does in order to do the same
-
megaTherion
dude please get that freakin more 4GB RAM and be done with it :)
-
megaTherion
you are wasting days on a problem which isnt a problem but a totally expected situation
-
ketas
maybe it could be fixed without harm?
-
megaTherion
Cloud VPS, 8GB RAM 4,99 EUR XD
-
ketas
this has affected machines with more than 4g ram
-
megaTherion
no for software you need RAM, for even more complex software you need even more RAM
-
ketas
previously it was, if you want it faster, add more ram?
-
megaTherion
if your system is swapping and OOM then it's not about speed but about working correctly
-
ketas
but what if it's not swapping
-
ketas
and still going oom
-
megaTherion
then its not
-
ketas
what then
-
megaTherion
so why not get more RAM? I really dont understand the issue
-
megaTherion
whats keeping you from adding more than 2GB RAM?
-
ketas
might as well change entire machine then, really
-
megaTherion
thats fine too
-
megaTherion
or change the FS, also possible :)
-
megaTherion
UFS is still a thing
-
ketas
but that's not real answer
-
megaTherion
you didnt ask a real question
-
ketas
yeah people tried ufs, worked
-
megaTherion
OS' behave differently if they are OOM, its a design question but I bet almost all have an OOM killer which then goes for hunt
-
megaTherion
if you want to know the details read the sourcecode
-
megaTherion
it's not because of mmap, its an side effect - the OS has no other choice
-
ketas
it's fine to use entire free ram for caching purposes, it makes everything blazing fast
-
ketas
well it has choice to not do it?
-
ketas
that doesn't affect anyone with 3t ram
-
megaTherion
you dont need 3TB RAM, 8GB is totally fine ... how much you actually need depends on the zpool layout and if its about zraid etc.
-
megaTherion
it cannot not do it, it's the job of the OS to hand out memory if applications demand it
-
ketas
well it can say no'
-
ketas
?
-
megaTherion
no it cant
-
megaTherion
read about operating system design and those principals
-
megaTherion
the actual situation depends how it arises, but if its inside the kernel then it must kill other software in userland
-
megaTherion
if you try to alloc some huge amount of RAM in a single program then of course that program may be killed or denied the request
-
megaTherion
but then in the end... what good is an OS which has no memory at hand
-
megaTherion
if its about user restriction then yes you can restrict those limits in FreeBSD
-
ketas
it can decide that now zfs works slower because there's no memory left
-
ketas
well it's not a program
-
ketas
it would swap then
-
ketas
hmm
-
megaTherion
well then maybe investigate how Solaris or OpenSolaris descendents behave, thats where ZFS is coming from in the first place
-
ketas
how they do it?
-
ketas
it's too complex too
-
megaTherion
I dont know, I never read the source code
-
megaTherion
maybe Solaris can handle an less RAM situation better - who knows
-
ketas
would be fun if this is valid bug when using mmap and with lot of small files and with low ram and with zfs and with slow io
-
ketas
like perfecf storm or so
-
megaTherion
its no valid bug
-
megaTherion
the person XYZ coding C and using mmap has zero control about the file system which is used
-
megaTherion
there is no relation
-
ketas
it's a trigger?
-
ketas
well who knows
-
megaTherion
its a totally normal function, almost every, if not every OS has it. Not sure how it's called on Windows but on Mac OS you also have an mmap
-
megaTherion
its just totally nrmal
-
megaTherion
+o
-
megaTherion
is there something in dmesg if the problem appears?
-
megaTherion
s/if/when
-
ketas
i don't think there was
-
ketas
as in...?
-
ketas
io error? :)
-
megaTherion
no about oom
-
ketas
only the fact that things were killed now
-
ketas
i wonder if tuning oom features would change anything
-
ketas
or not
-
ketas
because what needs memory is kernel
-
ketas
it was worse before actually i recall
-
megaTherion
maybe vm.overcommit changes something for you, dont know
-
ketas
unsure if it made zfs worse now
-
ketas
i hope not
-
ketas
there are also other ways kernel can take memory
-
ketas
should it always say yes?
-
megaTherion
maybe you want to read tuning(7)
-
ketas
maybe thay manpage needs augmented :p
-
ketas
to be
-
megaTherion
really never had a lot of issues, my NAS has 16GB with a zraid1... what always helps is limiting the ARC to a sane level
-
megaTherion
but I have other machines though non of them has less than 8GB with ZFS
-
ketas
nowadays it's doing it for you i read
-
ketas
the sane arc
-
megaTherion
can be... yeah
-
ketas
0.6*ram iirc
-
ketas
zfs actually works in 512m too :p
-
ketas
it was even unexpectedly fast
-
megaTherion
as long as there is no load.. sure
-
ketas
it started falling over due hw faults
-
ketas
dead now
-
ketas
lost half the disk too due i was lazy and didn't add 2nd disk nor did regular backups
-
ketas
which is another problem
-
megaTherion
well I usually always have zraid's except for some single VPS instances where I use zrepl to replicate my stuff over wireguard
-
ketas
yeah now it's fixed
-
ketas
damn git is too good stress test tool eh
-
ketas
:p
-
ketas
well it does read and write million small files and likes them cached as well for speed?
-
megaTherion
never ran into the issue, I guess you can also use rsync as replacement?
-
megaTherion
I'd expect that those programs have kind of similar behaviour
-
ketas
they do not
-
ketas
that's the surprise
-
ketas
using rsync to sync over terabytes will not do it
-
megaTherion
well you could get a systrace from it, then you can compare
-
ketas
far past what recommend ram can do... yet no failures
-
ketas
oh that seems like meh hard
-
ketas
what to even look for?
-
megaTherion
FreeBSD has truss and friends
-
megaTherion
well you said mmap was evil, so maybe rsync doesn't do mmap?
-
megaTherion
at least you'd see how it looks when both applications "copy" files
-
ketas
it probably has no reason to do so?
-
ketas
but i don't know
-
megaTherion
or you can read the soure code of course
-
ketas
or it has or it does
-
megaTherion
+c
-
ketas
right now git has
-
ketas
[core] packedGitWindowSize = 8m packedGitLimit = 32m preloadIndex = false [diff] ren
-
ketas
ameLimit = 100
-
ketas
meh forgot the split
-
ketas
but anyway
-
ketas
this "fixes" it
-
ketas
it didn't go deeead slow either
-
kevans
rsync doesn't mmap
-
ketas
btw whole issue started when there was huge change at once happening in ports tree, which is massive repo for what i usually use
-
kevans
openrsync does and we've had some problems with that, but we've mostly managed to 'fix' it
-
megaTherion
what is the 'fix' for this?
-
ketas
dovecot nearly does it as well... that thing also has legit reason for this
-
ketas
hmm
-
megaTherion
using dovecot too
-
» kevans reads scrollback a bit more
-
ketas
also, abnormally large for machine maybe... tho dovecot did it whenmi tried to tune it upwards
-
kevans
I guess from the context it sounds like mmap is being accused of eating a bunch of memory, but that's not really how that works
-
ketas
index related values there were 128m...256m which i probably wrongfully assumed to not do anything bad because it's small on disk or in ram
-
ketas
mmap helps to eat it up?
-
kevans
not any more than usual, really
-
kevans
you can mmap a file but you still have to fault in pages/blocks/etc, it's not really common to prefault everything in
-
kevans
I mean, yeah, there's some trade-off there, but the odds of it being whatever anomaly your observing aren't really likely
-
ketas
what's the actual issue here i wonder
-
kevans
you're
-
ketas
:p
-
ketas
anomaly-ketas
-
kevans
it's only 21:18, I shouldn't really be oops'ing yet
-
ketas
run git without those limits, wait until git actually starts doing that particular unknown activity, hopefully you had top open somewhere before, observe wired memory shooting quickly in few seconds to 94% of ram, probably went past it... end result is no userland, kernel works just fine after it, you just only have limited ways to interact with it, like ping or keyboard
-
ketas
how do i know what happened
-
ketas
:/
-
kevans
what release/branch is this?
-
kevans
zfs default arc max is something like all but 1GB of RAM, but it should be responsive to pressure to relieve some of that if the system needs it
-
kevans
how much ram are we talking total?
-
megaTherion
limiting ARC is always a good idea
-
ketas
13, it started 13.2 or so, now 13.4 still seems to have other similar issues... maybe it's fixed in 14 or current, do you know?
-
ketas
and ram is 4g
-
ketas
while i have tried to use zfs with 512m, wasn't kernel panic festival at all
-
ketas
i even tried to look any offending openzfs bugs but that thing is huuuge and i don't even know what to look
-
ketas
not zfs issue at all?
-
megaTherion
having not enough ram is no bug ;)
-
ketas
well it rather sounds like perfect storm than tiny ram
-
ketas
and was observed elsewhere
-
ketas
funnily i tried to allocate ton of ram, tried some file tests, including mmap, increasing limits slowly so i could still observe it, i couldn't find anything, even arc and whatever else was in wired was scaled down and only test that ended up in actual failure was when just trying to consume ram, and what was killed was just tester itself
-
ketas
can't figure out smarter tests
-
ketas
if it wouldn't hide it, i could run some tests in small vm or so, easier and safer
-
badkat
Hello folks, im having a demential issue maybe you can help me to get out of it :)
-
badkat
after upgrading from 14.1 to 14.2-p3 my FreeBSD desktop (zfs) is going total unusable after 1 day of uptime or so
-
badkat
this system is always on, i had 122 days uptime before upgrade to 14.2, never had a problem like this on FreeBSD desktops so i suspect its a ZFS kernel module problem someway
-
badkat
in brief: after +/- 20hs of using the system the desktop starts freezing every time you do something
-
badkat
first thing i checked up was my NVMe, used nvme tools from base userland, S.M.A.R.T, etc the disk is in perfect conditions also ran the NVMe RW testing commands, seems neat.
-
badkat
also, when the system starts to get UNUSABLE i just reboot it and everything goes just fine, so I/O problem discarded
-
badkat
can anybody guide me to debug the HANGS/FREEZING on the kernel/openzfs.ko? thanks in advance :D
-
badkat
i think its ZFS related because, my ARC is the same as always (1G) i dont even need to do any heavy R/W to reach unusable state, just happens after 1 day of uptime more or less
-
rtprio
how did you diagnose the issue to zfs problem?
-
badkat
rtprio: i need help to discard ZFS, but i think it is because the only thing that would change along time is the ZFS ARC CACHE, thats my guess
-
rtprio
badkat: well, use bectl to boot back to 14.1 and confirm that it stays stable or still freezes
-
badkat
kernel memory is not exhausted neither, i mean there is 20G free memmory why would be hang like that
-
badkat
rtprio: i did that, the same day that i concluded it was not the NVMe
-
badkat
14.1 goes ok
-
badkat
i would love to try to report the bug, maybe contribute something to fix it :D
-
badkat
fun part is that when freezing starts, audio keeps going like nothing
-
ketas
so kernel works well still
-
ketas
how does it freeze, again?
-
ketas
also where the audio comes from
-
badkat
ketas: for example, you are playing music in background while coding in your IDE, reading articles on firefox or just operating some server over SSH. I call it "freeze" when suddenly i just can keep hearing the audio from the browser or VLC player but cant do nothing more.
-
badkat
not even change to other TTY
-
ketas
just xorg thing or more?
-
badkat
ketas: thats the tricky part for me, not sure what originates this..
-
ketas
can't ssh into that from elsewhere?
-
badkat
ketas: i restarted xorg some day to see if it was related to some QT library/AMD gpu driver and it was doing the same
-
ketas
and?
-
ketas
was there a change
-
badkat
no
-
ketas
or fresh xorg still choke up from time to time
-
badkat
thats why i think on ZFS ARC is corrupted or something i dont know
-
ketas
hmm
-
ketas
what about no x
-
ketas
you were able to kill it
-
ketas
same issues in console?
-
badkat
ketas: yes, freeze lasts less but still hangs weirdly the commands
-
ketas
hmm
-
badkat
if i navigate folders, or open files while thats happening it doesnt show any I/O problem
-
ketas
open top -qaHSPs1 and systat -v 1 and so there if not tried them
-
ketas
hmm
-
badkat
the freeze effect is random but not constant, it just evolves to UNUSABLE, day 3 of uptime is totally messed up
-
badkat
ok
-
ketas
would be fun to watch it evolve
-
badkat
i tried iostat
-
ketas
maybe over ssh
-
badkat
and when freeze starts the iostat doesnt even log that moment
-
ketas
if it finally locks up
-
ketas
maybe it's not io
-
badkat
nice idea with ssh, i could try that this weekend, i work in that setup so i restarted each morning XD
-
ketas
so finally... what happens?
-
ketas
freezes?
-
badkat
just becomes unusable, but keeps responding after the hangs from 10sec to 2minutes
-
ketas
hmm
-
ketas
crazy
-
ketas
wanna see that top during this
-
badkat
ok i will try it, thanks for the suggestion
-
ketas
and what happens after a pause
-
ketas
or before
-
ketas
maybe tail -F some log too
-
badkat
i did, nothing in /var/log
-
ketas
well did it freeze yet?
-
ketas
if it doesn't show up in any of those 3 places
-
ketas
it's weird
-
badkat
maybe i dont have ZFS debug messages enabled in the right way
-
ketas
all need separate window too since frozen system won't be able to do tmux window change
-
badkat
its working fine now, i just restarted like 1 hour before i did came here
-
badkat
i have time till monday to debug it
-
ketas
zpool iostat -v 1 & zpool status -svv for zfs
-
badkat
i will try to make some big R/W to see if i can make it freeze again
-
badkat
ok i will add those too
-
ketas
for interesting things to look of
-
ketas
rw does it?
-
ketas
and this was some flash?
-
badkat
ketas: not sure what does it
-
ketas
single nvme one?
-
badkat
yes, Samsung EVO NVMe
-
ketas
yeah kind of hard
-
ketas
to find cause
-
badkat
i have no mortality signs on the drive
-
badkat
ketas: thanks for `zpool iostat` thats way better than plain iostat
-
badkat
also, with -svv switch i see this: "Some supported and requested features are not enabled on the pool."
-
badkat
and recommends to run `zpool upgrade`, i have this zfs pool from 2023 IIRC
-
badkat
that upgrade could be risky?
-
ketas
maybe pool is from pre v5000 + flags time
-
ketas
or
-
ketas
hmm
-
ketas
upgrade wasn't needed anymore iirc?
-
ketas
or it was different upgrade
-
badkat
i checked the zfs logs
-
badkat
its from 13.1
-
ketas
v5000 is much older
-
ketas
but i'm not sure, it still might use manual upgrades
-
cpet
betas!
-
cpet
er ketas
-
ketas
just i haven't see it yet
-
ketas
upgrade would be safe if you don't go back
-
ketas
unsure if you could
-
ketas
also, freezes came after 14.1->14.2?!
-
ketas
you can leave the zpool as old now i guess
-
ketas
cpet is back
-
badkat
ketas: exactly, i had 120+ days uptime, then i said "Oh new release, lets upgrade" :P
-
cpet
uptimes are useless now
-
cpet
any service that has an uptime of more than 60 days you question it
-
ketas
perfect reason to test upgrades before using
-
cpet
just like I question my firewall with an uptime of 48 days
-
badkat
cpet: lmao i dont turn my computers off xD
-
ketas
it could be specific stupid bug
-
cpet
I don't either
-
ketas
whatever reasoned
-
cpet
but I like to be updated
-
cpet
and if that requires n reboot
-
cpet
then so be it
-
cpet
betas can wait
-
cpet
er ketas
-
voy4g3r2
could it be the applications..
-
cpet
?
-
ketas
betas can wait!
-
voy4g3r2
well there is an IDE, firefox, vlc player
-
cpet
betas the ketas
-
ketas
which ide, also?
-
cpet
no software would require a reboot
-
ketas
and firefox is one stupid hog
-
badkat
cpet: well i always try to update asap, thats why i did 14.1 -> 14.2 not 11.0 :P
-
cpet
only a kernel update
-
ketas
anyway wait until
-
ketas
freezes
-
ketas
then test
-
cpet
ketas: we need firefox
-
voy4g3r2
i would wait to see if it happens again.. and just monitor the apps
-
cpet
cause that other browser hasn't been updated in years
-
cpet
what was it called netsurf ?
-
ketas
maybe leave sshs open with all above commands
-
ketas
zpool status via topless or so
-
cpet
have it mail you if the app dies
-
cpet
"yo foo your app crashes here is the core dump"
-
ketas
well firefox is only way yes
-
ketas
pretty much
-
cpet
I use safari
-
ketas
my android phones do ff too
-
cpet
the only reason why I don't update is Firefox is just as bad :P
-
cpet
the issue with updating zfs is the possibility of the system not booting after update due to forgetting to reinstall the boot stuffs
-
cpet
so I have never bothered to upgrade
-
ketas
pool you meant?
-
ketas
yes i guess it's fine
-
cpet
either of you still need to reinstall the boot code
-
cpet
and that has a possibility of having a 50/50 you can reboot
-
ketas
where does the bootcode go?
-
cpet
heaven
-
ketas
or you mean updated one?
-
cpet
I have always updated the boot code after any updates with zfs
-
cpet
now is that good practice who knows but that's what I do
-
badkat
voy4g3r2: could be, i wonder if something that goes through the ARC cache corrupts it,dont know if that could be even feasible, just thinking in the air..
-
ketas
unsure if it can corrupt
-
ketas
machine did pass at least one full memtest86+ run, right?
-
cpet
anything can corrupt something
-
ketas
and buildworld
-
ketas
maybe
-
ketas
as a good measure
-
voy4g3r2
yeah.. well the whole corrupt thing.. is drawing at straws.
-
cpet
honestly if it can do a make build world without a core dump its good enough
-
voy4g3r2
does the freebsd logs say anything?
-
badkat
ketas: i did memtest yes, stick is fine
-
voy4g3r2
freebsd-version fetch install ones that is
-
cpet
meatiest is not a really good way to test
-
cpet
er memtest
-
ketas
meatiest!
-
cpet
betas a beer a day keeps the docker away
-
ketas
hah
-
cpet
for now on betas is betas
-
cpet
wtf
-
cpet
now that made me giggle
-
badkat
voy4g3r2: no, im sure i can improve the logs tho, preparing now for the shitty moment
-
ketas
you didn't mean docker?
-
cpet
docker is evil
-
cpet
any mention of it you'll become one of the ketas
-
cpet
voy4g3r2: what exactly is the issue
-
cpet
if you want to retell the story while I drink Guinness
-
cpet
would be appreciated
-
voy4g3r2
cpet: no issue.. helping badkat
-
ketas
beer world records
-
cpet
badkat: what is the issues ?
-
voy4g3r2
i am over here.. just doing a poudriere run, updating my mac with brew upgrade and doing some python code.. all good
-
cpet
I can't sleep
-
ketas
cpet: he has machine running xorg freezing up for 10s...2m
-
ketas
after a day or so
-
cpet
which one
-
badkat
exactly, thanks ketas
-
ketas
after 14.1->14.2
-
cpet
voy4g3r2: or badkat
-
ketas
has zfs on nvme
-
ketas
that's all
-
cpet
which video card brand ?
-
ketas
it's stupid bug
-
badkat
cpet: AMD GPU (Renoir)
-
cpet
model?
-
ketas
so, it did continue to happen after xorg was killed off?
-
badkat
cpet: Ryzen 7 PRO 4750U
-
cpet
badkat: how long have you used a BSD ?
-
badkat
cpet: 7 years
-
badkat
started in 10.2 or so with my servers
-
cpet
ok so you know you'll always have issues with the latest swizzle right ?
-
badkat
moved to desktop 4-5 years ago
-
ketas
23y here
-
badkat
never had this kind of problems
-
cpet
I have been using *BSD for 30 yrs
-
badkat
i miss solaris zfs
-
cpet
I miss opensolaris
-
badkat
you can hug illumos lmao
-
ketas
hug openzfs
-
cpet
that's old
-
badkat
ketas: im trying xD
-
cpet
have you recompiled xorg+ with debug
-
cpet
and use all the debugging system to help you debug why it crashes ?
-
ketas
don't try to hold openzfs down with hug
-
ketas
:p
-
badkat
cpet: i have this weekend to try that kind of troubleshooting
-
cpet
is this the onboard GPU r ext ?
-
tykling
2025-04-26 04:04:54 < ketas> same issues in console?
-
tykling
2025-04-26 04:05:38 < badkat> ketas: yes, freeze lasts less but still hangs weirdly the commands
-
badkat
im building the kernel now and checking for debug options
-
tykling
doesn't this absolve X of guilt?
-
ketas
well you can wait for fail before
-
tykling
or does it start in X and then continue
-
cpet
have you tried current
-
cpet
my desktop that runs current is 2020
-
badkat
cpet: onboard GPU
-
cpet
so in computer terms old
-
ketas
i have one armv7 current machine here
-
ketas
could do more
-
cpet
I was unhappy when rasp pi 5 has such shitty support all over
-
ketas
i have similarly stupid bug here
-
cpet
so I sold my rasp pi 5
-
ketas
how much did you get
-
badkat
rpi are not good SBC's for freebsd IMHO
-
cpet
badkat: how come you haven't invested in a AMD vid card ?
-
cpet
rasp pi 3 worked like a champ
-
cpet
er 4
-
ketas
onboard is fine
-
ketas
which one bte
-
ketas
btw
-
ketas
intel?
-
badkat
cpet: its a laptop, i have another setup with nvidia cluster over bhyve :)
-
cpet
I have a AMD ext card
-
cpet
ok its a laptop pfft
-
cpet
give up nd move on
-
cpet
laptops have so much software bullshit
-
ketas
it being laptop could also give fancy other bugs
-
ketas
perhaps cpu scaling
-
badkat
i have like 3-4 workstations here, i wont give up sorry
-
cpet
ok I can annoy betas then
-
ketas
betas
-
badkat
ketas: i know this setup pretty well, never had a problem, only this crap
-
cpet
why does this auto change ketas to betas
-
ketas
unsure what you do there
-
cpet
badkat: did it work fine in 14.1 ?
-
ketas
b and k are far away
-
badkat
cpet: Perfectly.
-
cpet
how keen are you with git ?
-
ketas
regressions suck
-
cpet
freebsd changed the way they do arm
-
ketas
what about git
-
cpet
they changed the way they de drm
-
ketas
did we switch topic
-
cpet
its a port
-
cpet
so I really doubt its a OS thing rather a port thing
-
cpet
you could backport to a later port
-
cpet
and see if it fixes your issue
-
cpet
again i have alwys seen these issues with modern HW
-
ketas
which machine too, btw?
-
ketas
new laptop?
-
cpet
users buying a moderm top of the libe x y and then having it have shit performace
-
cpet
is pretty much how it goes with FOSS
-
cpet
new anything really
-
badkat
i see some "allan" here, any chance is allan jude over here?
-
ketas
i've seen
-
cpet
you can email him
-
ketas
it's him
-
ketas
here
-
ketas
!!!
-
badkat
i will try to DM him and keep my debug mission :P, thanks ketas for your time
-
badkat
and cpet for the non-sense road leading questions!
-
ketas
:)
-
cpet
pfft f i ever help you again
-
cpet
;/
-
» ketas bites cpet
-
» cpet hands ketas a beer
-
cpet
stfu and drink beer
-
ketas
doesn't it make you weird :p
-
ketas
kind of warm fuzzy
-
cpet
kinky
-
ketas
badkat: come back after 1d of so :p
-
ketas
i'm curious too
-
ketas
what does top/systat vm say
-
cpet
he wont be back
-
ketas
all those top options are important too as they show where cpu possibly goes
-
ketas
or memory
-
ketas
if it's that
-
cpet
the issue is really with the drm/gfx driver
-
ketas
maybe
-
cpet
i dont think the latter has anythign to do with it
-
badkat
cpet: i thought a lot about that
-
badkat
but why after 20 hs
-
cpet
the system im on naw is a Mac Mini
-
ketas
what happens after xorg kill?
-
ketas
video is still indeed working but
-
cpet
badkat: in my ealy days of usinf freebsd as my every days my system woud work fine then crash after 2-3 days
-
cpet
badkat: could be many things
-
badkat
ketas: drm is loaded after i boot the kernel so im still in the framebuffer from amd_gpu driver
-
ketas
unload gpu drivers maybe
-
cpet
badkat: however without coredump or actually info
-
ketas
hmm
-
cpet
not much ketas can do
-
cpet
i would start back tracking ports revs
-
cpet
and pin point where it fails
-
ketas
ports eh?
-
cpet
then go hey this is where my system fails and then works
-
cpet
so
-
cpet
they can deal with it
-
ketas
anyway first would be some debugging
-
cpet
as fare as I know all the drm stuff was taken out of the base system and made into a port
-
cpet
so yeah
-
ketas
probably have top running before 10s...2m pauses
-
ketas
those suck to get ssh up
-
cpet
what do you do on the desktop ?
-
badkat
cpet: yes i manually built drm5
-
cpet
play games, gimp, ?
-
badkat
from ports, and drm6 is for kernel 15
-
ketas
supposedly code ide, ff, vlc, ssh
-
cpet
why are you using beta code >
-
cpet
er ?
-
cpet
are you using current ?
-
badkat
cpet: code,ff,vlc,CAD (kicad,freecad,librecad),blender,bambu lab
-
ketas
manually built what
-
cpet
ketas
-
cpet
will be ketas
-
ketas
maybe you need rebuild but still eh weird
-
cpet
after 20 yrs still keta
-
cpet
s
-
badkat
drm-61-kmod
-
cpet
which model CPU
-
cpet
i have a amd 7 5700H
-
badkat
Ryzen 7 PRO 4750U (Renoir gpu family)
-
cpet
never had issues with it
-
cpet
but its like 5 yrs old
-
ketas
hmm
-
badkat
i never had neither, till now XD
-
ketas
i only have used like integrated intels...
-
ketas
so far
-
cpet
launch date 2020
-
cpet
now thats weird i was expecting that to be some modern recent CPU
-
cpet
but no
-
ketas
who runs video on cpu
-
cpet
i have a ext card I dont use the int
-
ketas
:)
-
cpet
very true
-
cpet
ketas: ++
-
badkat
i wont bother on other laptops i have, because they are running gentoo and are used as servers with battery xD
-
cpet
i would purchase a el cheapo ext card
-
cpet
and see if that has the same issue
-
cpet
personally
-
cpet
but since this is a laptop you cant do that :D
-
ketas
the second hand cheap sff's are the reason why it's intel video for me
-
ketas
those work
-
cpet
why would you use freebsd on a laptop ?
-
ketas
i had it
-
cpet
ketas: why would you use freebsd on a laptop ?
-
ketas
fbsd laptop
-
cpet
ketas: why?
-
ketas
hw broke
-
ketas
because i wanted
-
cpet
thats not an excuse
-
cpet
thats like the people who buy a mac and then install freebsd on it
-
badkat
cpet: lmao
-
ketas
had ose virtualbox with win and so
-
badkat
mac comes with freebsd userland somehow anyway
-
cpet
why the hell would you spend s much on HW then install a OSS OS on it ?
-
ketas
and playstations?
-
cpet
then complain that x y z doesnt work?
-
cpet
now i have been using freebsd for 30+ yrs
-
cpet
and I still use it despite the issues
-
cpet
but come on now
-
cpet
i am 41 now
-
badkat
cpet: my hardcore CAD workstation runs windows
-
cpet
disabled vet with more health issues than the VA can list
-
cpet
and I still use freebsd heh
-
badkat
maybe when freebsd supports CUDA i will drop it lmao
-
ketas
multi workstations are fun
-
cpet
badkat: see the issue is you expect to much from an OS
-
badkat
cpet: i dont
-
ketas
i mean nothing wrong
-
cpet
i bet you open like 500+ tabs
-
cpet
then bitch that the OS complains ?
-
ketas
to have windows also there
-
badkat
cpet: i dont
-
cpet
ok
-
cpet
now this doesnt help at all
-
» ketas cpet's badkat
-
cpet
but any time I have used my in house gfx
-
cpet
meaning the included GPU on CPU
-
cpet
issues arise
-
cpet
when I have used a ext video card
-
cpet
i have no issues
-
ketas
which issues?
-
cpet
does that laptop have no vid card ?
-
ketas
it often works
-
ketas
i've seen
-
ketas
for desktoppy purposes
-
cpet
ketas my gaming latop had that nvidia/cpu and you could set it to use either
-
cpet
i could never get it to play nice with freebsd
-
cpet
or any BSD
-
cpet
and I refuse to run linux so i sold it
-
ketas
yeah multigpu laptops are a thing
-
badkat
cpet: i patched so many games to bypass anticheat using linuxlator+glibc-shim
-
badkat
its so fun :)
-
cpet
my current system is built by myself is chumping along with current
-
ketas
naughty one
-
cpet
badkat: damn it people like you ruin it for the rest of us
-
badkat
actually, i got extremely good performance with intel + nvidia over freebsd
-
cpet
badkat: which cad soft do you use ?
-
badkat
cpet: i dont cheat in games, i need anticheat to be bypassed to get in the lobby lol
-
cpet
</curious>
-
ketas
only talks in games
-
cpet
i have a mac mini thats my main machine
-
ketas
:p
-
cpet
and I have a desktop that dua boots pretty much any os you can think of
-
cpet
and ketas
-
cpet
will always be ketas
-
cpet
even after 20+ yrs
-
badkat
ketas: hahah its a shame when you can get into the match because your game crash
-
ketas
same cpet too
-
cpet
the only games I have played on. BSD are the ones that are older than x
-
cpet
and even when I used to maintain doom
-
cpet
I still play doom ;/
-
badkat
cpet: Altium designer, AutoDESK products suite, engineer stuff :P
-
badkat
not in bsd tho, the OSS i mentioned already
-
ketas
what do you engineer
-
cpet
sex dolls
-
badkat
cpet: i do too :)
-
ketas
those are fun nowadays bte
-
ketas
btw
-
cpet
ketas out of all people man
-
badkat
lmao
-
cpet
wtf ?
-
badkat
ketas: electronics engi
-
cpet
badkat: I am a disabled veteran i dont do shit besides drink beer and goto apts
-
cpet
i have CKD
-
cpet
stage 3b
-
ketas
were you in tne vietnam
-
cpet
about 2 point from needing dialysis
-
ketas
ehm
-
badkat
cpet: ok! dont go to 14.2 you could increase the pain
-
ketas
seems bad
-
cpet
i ran 14.2 for a few months beore i moved to current
-
cpet
however
-
cpet
i started using computer with msdos
-
cpet
so a simple CLI with x yz program will suffice
-
cpet
i dont need blender to work
-
badkat
x)
-
ketas
blender is fun tho
-
cpet
it is
-
badkat
did you ever compiled the windows kernel ?
-
cpet
you cant compile the windows kernel
-
badkat
i can compile the windows kernel
-
badkat
:)
-
ketas
special boy
-
cpet
if you have a MS forget what its called then yeah
-
cpet
my brother had one
-
SponiX
Sounds like a waste of resources
-
cpet
back in the day it was called I think MSDN
-
ketas
did any of that ever leak?
-
cpet
whats ts called now I Dont know
-
badkat
ketas: ofc
-
cpet
i am a student so I could possible get access to
-
ketas
who was sue?
-
ketas
sued
-
ketas
:p
-
cpet
as MS will give access to windows code to student udner some special NDA
-
cpet
but i dont really care much for this
-
badkat
cpet: roflmao thats not true
-
cpet
badkat: is this similar or something else ?
-
ketas
it's horrible nda probably
-
badkat
you dont get the kernel source like that, only goverments
-
cpet
never said kernel
-
cpet
i said "windows"
-
ketas
once you look code it burns into your brain
-
cpet
or meant windows
-
badkat
cpet: the API is pretty much documented, better than linux ofc
-
cpet
yeah the win32 API is well documented
-
ketas
but you can get entire windows src, eh?
-
badkat
ketas: g0vs do.
-
cpet
and the sources accesible to student is interesting
-
badkat
i mean, cool g0vs
-
ketas
probably not that fancy btw
-
cpet
its not
-
ketas
what you gonna do, fork it?
-
cpet
the source code to Windows is accessible
-
cpet
just MS has a ver weird way of allowing access to it
-
cpet
gov have access to to it without any rest
-
badkat
ketas: i tried to port openbsd PF to it, did a poc some time ago
-
cpet
students have access to a subset of it
-
ketas
to windows'
-
ketas
?
-
badkat
ketas: yes
-
cpet
badkat: you ported pf to windows ?
-
ketas
hahaha no kidding?
-
cpet
proof or youll full of it
-
ketas
and what happened
-
badkat
only can block stuff with a pretty dumb rule
-
cpet
i tried to port hammerfs
-
badkat
but it was a month experiment
-
ketas
windows?
-
cpet
and I am proud to say it was way way way out of my league
-
cpet
hah
-
ketas
eh
-
ketas
did it even work once :)
-
badkat
windows kernel is not bad at all, i mean you start to become crazy because you dont spot actual backdoor code
-
SponiX
I’m lucky to file a decent bug report. Let alone write code
-
» ketas resists the urge to bend hammerfs author's family name to funny variants
-
badkat
how the fuck they do it? dunno. prolly it has to do more with the out of band interface of intel or the AMD equivalent
-
cpet
SponiX: VA GIBill allowed me to get a BA in cybersecurity
-
ketas
cpet with degree
-
cpet
yeah but the moment i say im a disabled vet they deny all
-
cpet
so bleh
-
ketas
so do you get transplants or you would just die?
-
cpet
ketas: the nice thing about hammerfs is it has all the features of zfs without the ram hogging
-
cpet
epends on level
-
cpet
once it reaches a certain level it s either dyalisis or transplant
-
SponiX
cpet: which BSD has hammerfs?
-
badkat
cpet: which version of hammerfs did you used as base?
-
cpet
SponiX: dragonfly
-
badkat
SponiX: DragonFly
-
cpet
badkat: this was long long time ago
-
cpet
i would say about 15 yrs ago
-
cpet
before I joined the .mil
-
SponiX
I’ve never even booted that one in a vm
-
ketas
hammer has no volume manager
-
ketas
iirc
-
badkat
SponiX: its a very modified version of freebsd
-
cpet
a vary modfied version of 4.x
-
cpet
plus modern bits added
-
cpet
i would prefer a modern one such as freebsd or open
-
ketas
what about net
-
cpet
i used net for a bit
-
ketas
i have booted net and open
-
badkat
ketas: i learned PF internals from netbsd
-
cpet
i had a prject were I would allow student to have a shell
-
SponiX
Luckily my FreeBSD machine has 256G
-
cpet
but no one would coonect to it so i killed it
-
cpet
256 of what ?
-
cpet
ram space
-
cpet
AI
-
SponiX
Ram
-
ketas
ai?
-
cpet
ketas is an AI
-
cpet
i like the idea of 1 NVE per OS
-
ketas
i'm not uploaded yet
-
cpet
no VM's
-
cpet
ketas: then you are doing it wrong
-
badkat
cpet: you killed the free shell project? :(
-
ketas
pov: they logged in but cpet didn't see
-
badkat
ketas: hahahah
-
ketas
:p
-
cpet
badkat: not killed suspended
-
cpet
i killed off the VM but backups the scripts
-
cpet
just a matter of givien a fuck to redo it again
-
cpet
but thems days no one wants a shell
-
cpet
i gave ketas a shell like 20 yrs ago
-
cpet
think this was when I had bsd.ninjas
-
cpet
and had #bsdninjas
-
cpet
and ketas ruined it
-
cpet
how old is ketas like 70 ?
-
badkat
i like the name, what happened?
-
cpet
gave up o it
-
ketas
hah no
-
ketas
41
-
cpet
yeah sae 41 but feel like im 70
-
badkat
cpet: on which network was bsdninjas?
-
cpet
they say military as 20 yrs
-
cpet
makes sense
-
cpet
badkat: efnet
-
ketas
i recall a shell
-
badkat
efnet <3 really cool network
-
cpet
i dont do the freenode/librechat
-
ketas
c pet sells csh near seashore
-
cpet
if koobs was here I would of been banned before I said ketas!
-
ketas
why?
-
cpet
i dont know
-
cpet
cursing I think
-
cpet
or saying ketas
-
cpet
badkat: its dead
-
badkat
cpet: ye brother i got it
-
ketas
i gave friend a nonroot user into one jail
-
cpet
ketas: how come I dont get one
-
ketas
his microsd failed in linux rpi again
-
cpet
wtf man?
-
badkat
but you could open your house doors again :), drop some shell access here in this irc
-
ketas
hahaha
-
badkat
and no mandarin speaker will get into it >:)
-
ketas
i don't have enough hw for this yet
-
ketas
to have trusted ircfriend shellbox
-
ketas
and is it even needed nowadays
-
cpet
i fid that offensive
-
ketas
:p
-
cpet
where you from again?
-
ketas
.ee
-
cpet
romania ?
-
ketas
no
-
Dooshki
the land of electrical engineering :o
-
ketas
someone else is from .ro
-
badkat
im from Nauru.mil
-
ketas
yeah Dooshki
-
ketas
how fun
-
cpet
русский?
-
ketas
tiny country?
-
cpet
theres many
-
badkat
Dooshki: >:) 兄弟
-
ketas
translated as bro
-
badkat
cpet: брат!
-
ketas
:p
-
Dooshki
badkat: I don't recall us being family :o
-
cpet
i went to japan food man... holy hell
-
ketas
that i don't need to translatr
-
ketas
:)
-
cpet
went to guam as well
-
cpet
again food man...
-
cpet
us americans eat like garbage
-
ketas
unsure
-
ketas
i bet you can eat well in us
-
ketas
but yes it has issues
-
badkat
ketas: pretty expensive tho lma0
-
cpet
ketas: i moved to .us when I join in 19
-
ketas
iirc ice cream is ruined?
-
cpet
stationed in .us
-
ketas
but who knows
-
cpet
stayed in .us
-
cpet
last time you talked to me i was in .mx
-
ketas
where are you now
-
cpet
.us
-
ketas
and before it?
-
cpet
.mx
-
ketas
hmm
-
cpet
its ok man
-
cpet
i drink a lot so
-
cpet
;/
-
SponiX
What does mx stand for?
-
cpet
mexico
-
ketas
mexico
-
SponiX
Other than a DNS record
-
cpet
someoen doesnt know his tlds
-
cpet
er cctlds
-
ketas
some cctlds are fun
-
ketas
or cc's
-
cpet
SponiX: learn them
-
cpet
then you can have a .beer
-
cpet
like me
-
ketas
like have to check
-
cpet
i own unix.beer
-
cpet
:D
-
» cpet pets ketas
-
badkat
l0l
-
ketas
like where is .dj?
-
badkat
i miss the unprotected whois queries
-
ketas
:)
-
cpet
jamming
-
cpet
i miss the days when people would drink without using there fawking cell phone
-
ketas
why
-
cpet
i had this lady today just stop in the middle of the road to txt i guess
-
cpet
she just decided to stop
-
cpet
who cares about traffic
-
cpet
just stop
-
cpet
and respnd to txt
-
cpet
who cares about left right up down
-
cpet
just stop
-
ketas
did you press horn
-
cpet
no
-
cpet
no one cares any more man hah
-
Dooshki
should've at least blinked on her
-
badkat
cpet: she wont drop the "posts per minute" leaderboard so easily
-
ketas
yeah i can irc on phone but
-
ketas
on safe locationä'
-
cpet
i just stared at her
-
cpet
and lughed when she got scared when 4 people honked her
-
ketas
well no shit
-
ketas
and yelled "oh come on"?
-
cpet
i dont do that
-
cpet
i care but i dont
-
ketas
what do you do
-
cpet
depends
-
cpet
on my good days i honk
-
cpet
on my bad days i dont really care
-
ketas
why did your peecreators get sour anyway?
-
ketas
just happened?
-
cpet
?
-
cpet
well when you are in a 2 lane highway and someones just stops
-
cpet
people get upset
-
cpet
not only that its dangerous
-
ketas
yes of course
-
cpet
for some bitch to be just txting
-
ketas
who does that
-
cpet
some ..
-
cpet
heh
-
ketas
some even do it while driving
-
cpet
tey dont care
-
ketas
really easy to royally fuck up then
-
cpet
i got rear ending buy some kid who was high
-
cpet
i just said coe one man smoking that shit
-
ketas
it took like 500ms to react and before it you need to see
-
ketas
crazy to move eyes off road
-
cpet
you would think..
-
cpet
but eversince these things were invented called cell phones
-
cpet
peope drive worse than they did in the 90's
-
ketas
killphone
-
cpet
when all we had were big ass car phones and brick phones
-
cpet
now people want to tweet
-
cpet
im driving...
-
cpet
no one cares
-
cpet
m with my girl driving...
-
cpet
no one cares man
-
cpet
the fact that ketas still knows who i am
-
ketas
they stopped tweeting now
-
cpet
is impressive
-
cpet
hah
-
ketas
now they just have sex
-
ketas
i mean x
-
cpet
i soent 10 days in inpatieint psych ward
-
ketas
why
-
cpet
and 10 more days in outpatient psych ward
-
cpet
and ketas still knows who i am
-
ketas
why^2
-
ketas
i wonder if you were in mental hospital
-
cpet
why?
-
ketas
during missing times
-
ketas
ircmissing
-
cpet
that is what a psych ward is
-
cpet
heh
-
ketas
or died but that doesn't reverse
-
ketas
why should i forget cpet anyway
-
cpet
i dont know
-
ketas
btw, what about this
-
cpet
ketas will be ketas
-
ketas
git pulls machine down
-
cpet
ketas is the ketas
-
ketas
wired goes 100% ram, userland kills off
-
cpet
think i used to call you ketas moetas
-
cpet
or some shit
-
ketas
and this has zfs
-
ketas
4g ram but still wtf
-
cpet
you need a new provider
-
cpet
i will not use any us provider..
-
cpet
the resource the cost ratio is utter garbage
-
cpet
what I pay for my VPS i will be paying 100+ in .us
-
cpet
when its a fraction in .de
-
ketas
what helps is
-
ketas
[core] packedGitWindowSize = 8m packedGitLimit = 32m preloadIndex = false [diff] renameLimit = 100
-
ketas
:/
-
ketas
wtf
-
cpet
your git is messed up man
-
ketas
funnily with this limit, it works
-
cpet
kill it with fire and find another
-
ketas
not that slow even
-
ketas
tree is ports and ram is 4g :p
-
cpet
my ram is 12g
-
cpet
my spce is 120gb
-
ketas
spce?
-
cpet
space
-
cpet
the space of all spaces man
-
cpet
this provider offers SSD or NVE
-
cpet
now we all know NVE is faster
-
cpet
so I chode NVE
-
cpet
however NVE offers less
-
cpet
ketas
-
cpet
what tims is it in .es
-
ketas
in .es, no idea
-
ketas
gmt+1? or 0'
-
cpet
according to google
-
cpet
tallin, es
-
cpet
its 9am
-
cpet
alost 10am?
-
ketas
2025-04-26 09:24:05 +0300
-
ketas
/exec -out date '+%F %T %z'
-
cpet
yeap
-
ketas
:p
-
cpet
its about 1am
-
cpet
here
-
cpet
and i am enjoying last 2 beers
-
darwin
a chatter in similar/same channel on libera gave me this script:
mirror.davidchmelik.com/math/cpu_info ... anyone know who made it? It's commented what it does, and year of this version, but not who made it
-
cpet
Safari can not open this link
-
cpet
github link?
-
ketas
wtf is it
-
cpet
aids
-
darwin
which link? Mine or previous chatter? Mine is simply a text file that can be run as a UNIX/GNU/Linux script, though lacks filename extension
-
cpet
-
cpet
?
-
darwin
unrelated
-
cpet
that link doesnt resolve
-
cpet
so i dont know
-
cpet
ketas
-
cpet
ask ketas hes the lat night guru
-
ketas
yea
-
ketas
Host mirror.davidchmelik.com not found: 3(NXDOMAIN)
-
cpet
yeah
-
cpet
post some bogus link man
-
cpet
wtf
-
cpet
ketas++
-
darwin
thanks for notifying me; that site should be back up in some hours
-
cpet
hours?
-
ketas
hahaha
-
ketas
add monitoring
-
ketas
dns was there too or why no resolves
-
cpet
if it takes houts to fix a DNS issue
-
cpet
you suck miserably
-
cpet
;/
-
cpet
even ketas can agree on that
-
cpet
cause hes the ketas
-
ketas
well it could take ttl time to update it
-
ketas
but
-
cpet
once DNS seens a serial number chage it will or should refresh itself
-
ketas
i run my dns partially off free services
-
cpet
i run my DNS off a netgate firewall
-
cpet
ketas is cheap++
-
ketas
auth dns?
-
ketas
:p
-
cpet
yeah
-
cpet
i use it locally for 192.168.0.0/16
-
ketas
i'm surprised afraid even works still
-
cpet
think thats the cidr
-
cpet
:D
-
ketas
xname went bust
-
ketas
zoneedit got bought
-
cpet
this is why you dont go free
-
cpet
if you go free use something decent like he.net
-
ketas
it still gives legacy users a service
-
cpet
or whatever is the equivalent in .eu
-
cpet
legacy isnt always good
-
cpet
especially these days
-
cpet
i remeber when I had a hosting account with aplus
-
cpet
and its infrustrure was half BSD half linux
-
ketas
hostings are all gone now
-
darwin
no, it means I don't have a lot of money
-
cpet
and the BSD side was old as hell
-
ketas
i had some
-
cpet
darwin: i dont either
-
cpet
think my bank account right bow is 0.58
-
cpet
:D
-
cpet
think ketas has mre than me
-
ketas
how do you even eat
-
cpet
lucky bastard
-
cpet
i dont
-
ketas
people die that way
-
cpet
meds dont make me hungry so i dont bother
-
cpet
i made pound cake earlier
-
cpet
ate a few slices
-
ketas
need like 2.3kwh per day
-
cpet
well the needs are met
-
cpet
the extras are not
-
cpet
meaning i cant buy a new vid card
-
cpet
but i can buy a coke
-
cpet
etc..
-
ketas
the black or white one?
-
cpet
bottle coke ?
-
cpet
the fuck man
-
ketas
black one then :p
-
cpet
you racist bastard
-
ketas
we need to make cocacola white again
-
ketas
or now white
-
cpet
bleach it
-
cpet
we used to have clear pepsi
-
cpet
that shit was the shit
-
cpet
that shit was the shit of all the shits if it was the shit
-
cpet
then it was discontinued
-
cpet
and then someone said lets bring it back
-
cpet
and the it tasted like orange cola
-
cpet
sad day when i was like 12
-
cpet
ketas: I remeber when I lived close to atlanta
-
cpet
and we went to the coke museum
-
cpet
the amount of weird colas we tasted
-
cpet
we tasted one that was basically cumcumber
-
cpet
from .ru
-
cpet
as weird as it sounded that shit was good ;/
-
» cpet punches ketas
-
ketas
eh
-
cpet
i dont know
-
cpet
its been what 10+ yrs since ive last bee here ?
-
cpet
if not more than that ?
-
ketas
yea i was wondering where you went
-
badkat
can you recommend a good nerd movie?
-
cpet
hackers
-
badkat
cpet: best .mil movie involving computers
-
cpet
stupid movie but
-
badkat
lol i saw them all
-
cpet
hunter killer
-
badkat
2018?
-
cpet
i dont know
-
cpet
i came out a yr before i went to basic
-
badkat
hahah wtf? aprox date?
-
badkat
cpet: best .mil movie with actual hacking / tailored operations action over tech?
-
cpet
honestly man the best .mil movie is AMerican sniper
-
cpet
as a retired disabled vet, that movie ,,
-
badkat
i saw that one, is good
-
cpet
as for hacking
-
badkat
i meant tailored access operations mil movie
-
cpet
hollywood has a way of exagerating a bit
-
ketas
-
ketas
yeah eventually i could host own
-
cpet
i host my own
-
badkat
cpet: yes to many blinking warnings on hackin related movies
-
ketas
cpet: single dns eh?
-
cpet
you want the cheesy one hackers you want a decent one hacker
-
cpet
with Haylie Duff
-
badkat
cpet: im a decent hacker i dont deserve less
-
cpet
as a student in cyber sec
-
cpet
most movies in the theme of hacking are/is bs
-
ketas
real hacker movies?
-
badkat
totally, i just like operation takedown which relates to mitnick
-
badkat
i mean its fun
-
cpet
now that movie
-
ketas
where ipv6 doesn't contain letter s?
-
ketas
:)
-
cpet
was a decent hacker movie
-
ketas
i'm impressed they used reak ipvy
-
ketas
ipv6
-
cpet
too bad he passed away
-
badkat
hahah and operation swordfish have ipv5 or something like that
-
cpet
hallywood
-
badkat
321.123.123.111
-
cpet
you will never see a decent hacker movie in hollywood
-
badkat
:P
-
ketas
but still went for 3d magic and data sounds
-
cpet
i did like the movie with pierce brownan though
-
badkat
hahahah the 3d cube ye
-
ketas
yeah it's too difficult to setup props maybe
-
ketas
and boring to watch
-
badkat
totally boring and meaningless to random people of course...
-
cpet
-
badkat
they need action 8-)
-
ketas
imagine staring at quiet terminal and after a hour someone farts
-
ketas
or so
-
cpet
only you rhink that shit up man
-
cpet
wtf
-
ketas
not very hollywood
-
badkat
xD
-
cpet
i think the only hacker movie that resembles what ive studied is operation takedown
-
cpet
or hackers 2
-
cpet
the rest is all holly garbage
-
ketas
well even that is weird
-
cpet
the rest is all defcon videos
-
ketas
tbh
-
cpet
ketas you are weird
-
cpet
but thats ok
-
badkat
i still have my defcon 12 DVD somewhere
-
ketas
some scifi is coolä'
-
cpet
the video regarding ssl with moxie
-
cpet
was impressive
-
cpet
and why cause we use ssl like its our new savior
-
badkat
cpet: now its all about black hoodies and RGB keyboards *pukes*
-
cpet
i wear a black hoodie
-
badkat
im wearing a black hoodie too
-
cpet
my keyboard is a logitech pebble
-
cpet
connected to a mac
-
cpet
;/
-
badkat
but i dont approve RGB in my home
-
cpet
dont hate if you got something better
-
cpet
freebsd uses a logitech gaming keybord
-
ketas
black hoodies
-
cpet
i wear all the black
-
cpet
all of it
-
ketas
i just do darker colors
-
cpet
black
-
ketas
cargo pants tho
-
ketas
:p
-
cpet
yeap
-
cpet
my original PC was a Lenovo Legion
-
cpet
worked fine even with freebsd
-
ketas
was it milspec
-
cpet
it wasnt until i took out the light board that it started to act up
-
ketas
wtf name
-
cpet
so I decided to rebuild it using parts of parts
-
cpet
so new case, MB
-
cpet
but same ram and CPU
-
cpet
and took all the RBG garbage out
-
cpet
right now it runs as my windows, freebsd, cachy os, slackware,
-
badkat
cpet: did you ever used freebsd on a rugged mil laptop?
-
cpet
PC
-
ketas
hah miltop
-
cpet
i was a construction mechanic all we did is work of shit
-
cpet
the IT guys would be a better option to ask
-
badkat
lol
-
ketas
funnily, i do host mail now
-
ketas
with free mx backup currently
-
ketas
just no other services were fitting anymore
-
cpet
i want a .ketas.eu
-
badkat
i love India military rugged laptops, best green in the world, but specs are shitty for sure lolol
-
cpet
chris⊙fke
-
cpet
;/
-
ketas
i did mail before actually but never used it actually much
-
cpet
badkat: computers change to quick to really matter
-
cpet
i remeber my first PC was a 66mhz DX2 with 32 mb of ram and a 2gb upgrae HD
-
ketas
what was that bombproof one?
-
ketas
panasonic?
-
ketas
it's all metal
-
cpet
now my PC has 6 NVE's and 64GB of ram
-
ketas
helllll 6
-
ketas
eh
-
cpet
the rugger laptops are made by panasonic
-
ketas
i wonder which lenovo could do dual ssd
-
cpet
and you can literily kick them like a foot ball and they still chump and boot up
-
ketas
or i could do ssd + hdd too which would be hacky
-
cpet
impressive but exp as fuck
-
badkat
dell have some rugged toys too
-
cpet
for the pos they are resource wise
-
ketas
the freebsd foundation has late done laptop support program now
-
cpet
i got mad one time and kicked one and it hit a truck
-
ketas
someone donated or so
-
cpet
and picked it up and it still chumped on so yeah
-
cpet
aweomse laptops
-
cpet
but the price ...
-
badkat
ketas: yes, i wish they finish the AX200 driver soon :)
-
badkat
works half speed in comparison with linux
-
ketas
it's indeed in works
-
cpet
wireless ...
-
ketas
i wish i can do ap as well
-
ketas
the progress is there
-
cpet
i was amazed how easy it is to crack a wireless network
-
ketas
i even found bugs
-
cpet
according to ethical hacking 101
-
cpet
and a few programs
-
badkat
ax200 cant use hostap?
-
ketas
wpa2?
-
ketas
well maybe it can
-
cpet
all the WPA
-
ketas
wpa3'
-
cpet
even ketas WPA
-
ketas
?
-
ketas
well run vpn over wpa :p
-
ketas
have your onion
-
cpet
no not WPA3 "yet"
-
badkat
cpet: enterprise wpa is easier to hack than home networks xD
-
ketas
let hackers peel and cry
-
cpet
hackers++
-
ketas
but i want to make fbsd aps
-
ketas
all good cards are pcie
-
cpet
my wireless is a asus wifi 7 router
-
ketas
but what supports pcie
-
ketas
nothing
-
cpet
and I chose this one as I can change the channels
-
cpet
and it ook me a very long time
-
badkat
you can do that, you dont need much special hardware
-
cpet
to figure out which channel didint make my shit slow
-
cpet
my old linksys you could not
-
badkat
freebsd ieee802_11 stack is pretty good
-
cpet
i sold it on ebay its gone
-
ketas
server, yes, laptop, yes, embedded, well basically none
-
ketas
usb adapters to rescue!
-
ketas
but they have own issues
-
cpet
i have gig cable with a /29
-
cpet
wifi is no good
-
badkat
less tx power
-
cpet
i have to have one desktop connected wired to hav full access
-
ketas
besides we have like whole 2 persons on wifi dev?
-
badkat
cpet: ofc, i dont want chinese speakers gettin on my wlan
-
cpet
or else i should really be paying for 300mbit
-
cpet
whats wrong with chines e speakers ?
-
cpet
you racist bastard
-
badkat
they have lot of 0days to throw at me
-
cpet
you can learn a lost on creating a jail and having a password of password
-
cpet
and just having anything login
-
cpet
and its amusing as fuck when you see them trying to compile linux stuff on it and it fails
-
cpet
amusing
-
badkat
i love that
-
badkat
i had a openbsd honeypot
-
cpet
i just sit and watch
-
cpet
an watch
-
cpet
and make fun of badkat
-
cpet
and watch some more
-
cpet
however this did not work so mcuh on my rasp pi
-
cpet
as that indeed got owned
-
badkat
* shits near cpet tech setup *
-
cpet
to this day I do not know how they managed to recompiled my openbsd kernel
-
cpet
but they did
-
cpet
and the only way i noticed is when I saw the ethernet port rapidly blinking
-
cpet
and took it offline
-
badkat
openbsd is useless
-
cpet
it runs my server stuff
-
badkat
if i need security i just turn down the computer
-
cpet
i think this was something due to uboot
-
cpet
not the os itself
-
badkat
and smash the fuck out the board with a hammer
-
cpet
you have anger issues
-
badkat
and operation security
-
cpet
kind of like when you ask the tech support and they say well change your ssh port
-
cpet
when freebsd has a very decent means of blocking such
-
cpet
taken from netbsd
-
cpet
something I wish openbsd had
-
cpet
thats one thing that always puzzled
-
cpet
me
-
ketas
so i built myself a new mail system, with a twist
-
ketas
it doesn't have spam filter but
-
cpet
the people who go oh this is chinese made its garbage
-
ketas
it has 500 aliases
-
cpet
99% of computers are made there
-
ketas
:p
-
cpet
and 99% of the time I blame ketas
-
cpet
i want slaps@
-
cpet
ketas gib me slaps@
-
cpet
now
-
ketas
change ssh port?
-
ketas
to what
-
cpet
2222
-
ketas
non-22?
-
cpet
22222
-
cpet
34
-
cpet
35
-
cpet
45
-
cpet
67
-
cpet
89
-
cpet
76
-
cpet
543
-
ketas
yeah maybe it's good
-
cpet
3444
-
cpet
5655
-
cpet
6555
-
ketas
actually <1024 is good
-
cpet
change port to 8
-
ketas
well i dare you to run sshd on 1
-
ketas
:)
-
cpet
why
-
cpet
my ssh runs on 22
-
cpet
we have firewalls for a reason
-
cpet
connect to server.unix.beer
-
ketas
hophosts?
-
cpet
or security.unix.beer port 1984
-
ketas
well yes
-
cpet
or ketas.es port 22
-
ketas
wtf is it your domain
-
cpet
i brew beer
-
cpet
as a hobby
-
cpet
i dont work i dont do shit
-
cpet
so i figured brewing beer would be fun
-
cpet
so i mae unix.beer
-
cpet
yay me
-
ketas
why not work
-
cpet
end of story
-
ketas
brain works
-
cpet
i am a disabled veteran
-
ketas
has fbsd inside it
-
cpet
more like corrupt fbsd inside it
-
ketas
why
-
cpet
cause
-
cpet
i was fucked before now im more than i was before
-
ketas
but yeah sadly i have to run mail on mail ports
-
ketas
:p
-
cpet
i have biz class inet
-
cpet
so I dont have ports limited
-
cpet
otherwise port 25 is filtered
-
ketas
that stopped here
-
ketas
out was filtered too
-
cpet
what stopped
-
ketas
in was able to be removed
-
ketas
by isp
-
ketas
on request
-
cpet
well for the amount of people that probe my email server in a day
-
cpet
compred to the early 90's
-
cpet
is in the holy fuck range
-
appledash
Why would outgoing 25 be blocked
-
appledash
you need that to send mail
-
ketas
even on residental
-
ketas
now just every mail server blocks dyn
-
cpet
appledash: remeber you have out and in
-
ketas
most
-
ketas
funnily noone blocks v6
-
cpet
you can send email out and receive from a different port
-
cpet
and most service these days dont use "25"
-
cpet
but either the others
-
cpet
imap imaps
-
cpet
SMTPD
-
ketas
so my postfix just retries on v6
-
cpet
er SMTPD
-
ketas
and gets it through
-
cpet
SMTPS
-
cpet
fuck
-
ketas
into google and microsoft too
-
ketas
:)
-
ketas
i was surprised
-
cpet
ketas remeber when I had bsd.ninja
-
ketas
unsure what they check really
-
cpet
and i had console email
-
cpet
i stil do that
-
ketas
maybe they are like
-
ketas
dyn
-
cpet
you have to logn to receive email
-
ketas
but has all enabled
-
cpet
best email
-
cpet
is logged in email
-
ketas
let it pass
-
cpet
webmail gives you anal polyops
-
ketas
i have spf, dkim and dmarc on it
-
ketas
like fully compliant mail service
-
cpet
really
-
appledash
How drunk are yall
-
cpet
prove it
-
cpet
appledash: 6 pack just finished
-
ketas
why not quitting?
-
cpet
appledash: but i have known ketas for 20+ yrs
-
appledash
me too
-
cpet
i think since 2001
-
cpet
or 2002
-
appledash
(that's a lie)
-
ketas
everyone spams, that's why 25
-
badkat
appledash: tasting some meth over here :))
-
ketas
wtf
-
appledash
Meth is for when you need to do linux, not freebsd
-
badkat
hahah you are right :(
-
cpet
shit if you need meth to use either you need to gtfo off the PC
-
badkat
thats for ubuntuers
-
ketas
walther white shite
-
cpet
i liked ubuntu
-
cpet
but this was in like 2005
-
ketas
but now blocks are off
-
cpet
i liked slackware
-
cpet
but it has a bug
-
ketas
but someone creative in .ee had idea to block some sites with dns
-
cpet
that bug is after you update kernel and dont do a manualt initrd you system fails to boot
-
appledash
I would wager it has many bugs
-
ketas
love govts
-
cpet
VPN bypass that shit
-
ketas
well it's just dns
-
» cpet uses vpn to bypass ketas
-
ketas
so i can run my own recursive
-
cpet
appledash: anything made by college grads i buggy as hell
-
cpet
appledash: any software is buggy as hell
-
ketas
it mirrors roots too, whole deal
-
cpet
having 56 forks of software x from github doesnt help
-
cpet
this is why using freshports is amusing now
-
cpet
it has almost ever git hosting provider known
-
badkat
slackware at least feels BSDish
-
cpet
yeap
-
cpet
but I killed my install earlier after an update
-
ketas
i used winlinux once, then mandrake, then redhat
-
ketas
then local honeypot ran fbsd
-
ketas
so installed 4.6
-
cpet
forgot to do a mkinitrd
-
ketas
:)
-
cpet
and rebooted
-
badkat
there was WinBSD too
-
cpet
bam
-
cpet
*BSD doesnt have this issue
-
badkat
or Win4BSD something like that
-
cpet
all if not all BSD desktop OS's have died
-
cpet
with the exception of midnight
-
cpet
but that shit is garbage
-
ketas
it's win *ON* bsd
-
cpet
the indea is awesome
-
cpet
but the code is garbage
-
ketas
-
cpet
the idea behind PCBSD was awesome
-
cpet
but the code was garbage
-
ketas
yeah sad that pcbsd went bust
-
cpet
but any complex system will have bugs
-
badkat
ketas: yes, im trying to find a magazine scan i have somewhere
-
badkat
pretty old
-
badkat
cpet: NomadBSD its pretty good
-
cpet
now I have been using freebsd for a long time and I have yet to have a system not boot up after a system upgrade
-
ketas
my freesbie cd-r still booted uo
-
ketas
up
-
ketas
:)
-
cpet
most linux die
-
ketas
sucker still worked
-
cpet
after
-
ketas
i actually want to have own xorg live
-
badkat
found it
-
ketas
eventually
-
cpet
and those new linux system that are rolling releases
-
cpet
well
-
badkat
-
cpet
i personally like opensuse
-
ketas
i do have console better live
-
cpet
only linux distro i can use
-
cpet
and even that breaks at times
-
badkat
it was BSD on windows, another bizarrre stuff
-
badkat
actually windows have some bsd already (netstat)
-
ketas
hah bsd on win
-
badkat
and other TCP/IP stack utils
-
ketas
really!
-
cpet
widnows has the whole tcp/ip stack
-
cpet
back in the day
-
badkat
exactly
-
cpet
now im sure its the same shit just modified
-
badkat
is the bootstrap they used to get into the internet :D
-
ketas
anyone ever recalls kern.flp?
-
ketas
:)
-
badkat
not really :O
-
cpet
so if I was a ompany
-
cpet
lets call me PCS
-
ketas
had to swap it for mfsroot.flp
-
cpet
i wanted software to help me connect to the intnernet
-
ketas
after bootup
-
cpet
would I use a GPL OS that forces me to serve src
-
cpet
or would I use a BSD that allows me to keep it closed
-
cpet
i would keep it closed
-
cpet
one thing a lot of people dont realize is
-
badkat
lmao ofc you dont give shit back, i didnt see any nintendo or sony contributors
-
badkat
only from netflix, if we talk about the fbsd abusers :)
-
cpet
well nintendo is probably the shitiest comp
-
cpet
in that regard
-
cpet
sony does give a little back to be fair
-
badkat
they do?
-
cpet
nintendo still files lawsuits for nintendo games not even sold any more
-
ketas
nomadbsd still exists
-
ketas
for ready live needs
-
cpet
i used to mirror for nomadbsd
-
cpet
then I forgot why I stopped
-
badkat
it haves cool zfs configuration by default
-
badkat
pretty good for non techy users also
-
cpet
my pool is named beer
-
cpet
and I have a pool named beer/more
-
ketas
juniper gives code back also
-
badkat
lol open the unix.beer ssh and give us creds
-
badkat
cpet: ^
-
ketas
from large companies
-
ketas
i lack of i
-
ketas
imagination so
-
badkat
f5 used openbsd kernel also as base some years ago
-
ketas
i now name my machies after colors
-
ketas
and pools get metals
-
cpet
badkat: f3FkUPtBLlXdyQTPe4vmxrDUrLKKpevj
-
ketas
:)
-
cpet
decrypt that
-
cpet
you get access to
-
ketas
i thought it was password
-
badkat
lma0
-
ketas
:p
-
cpet
tell me the decryption algorithm and the decrypted assword
-
badkat
cicada3001 lets go
-
cpet
and you get root on unix.beer
-
cpet
which runs on my cable connection
-
badkat
xD
-
ketas
why root
-
cpet
cause if he can guess that
-
cpet
he deserved root
-
cpet
hah
-
ketas
because you can't even guess that isn't it
-
ketas
in 1000+ years?
-
ketas
:)
-
cpet
if you have a GPU farm
-
badkat
if i get the algo you give me guest access
-
cpet
takes less
-
ketas
hmm .beer is not expensive?
-
ketas
weird
-
badkat
i dont need root, i will call my chinese friend to escalate privs with some nasty communist 0day
-
cpet
now you aint getting shit no matter what you say
-
ketas
hah
-
cpet
hah
-
badkat
:O
-
ketas
-
ketas
ha
-
ketas
looks like sex toy
-
ketas
but is not
-
cpet
thats what people think when they see ketas
-
cpet
;/
-
ketas
-
cpet
chinese made sex toy
-
badkat
those use netbsd ofc
-
ketas
i'm bad toy
-
ketas
obsd lives exist too
-
cpet
badkat: npf is quit nice
-
badkat
npf is used by japanese ISPs
-
cpet
ketas unix.beer run on openbsd
-
badkat
it has a interesting library also
-
cpet
yeap
-
cpet
when I opened up madhatter.
-
cpet
it was using netbsd
-
cpet
but since no one connected i closed
-
ketas
and obsd has official live too
-
cpet
CS class with a free shell and no one connected
-
ketas
fbsd should also do it maybe
-
cpet
if this was in the 90's my machine would of been riddled with eggdrops
-
cpet
heh
-
ketas
maybe i'll contribute my live ideas and it will exist
-
badkat
satanic brain BBS
-
badkat
that was a cool place to get phucked
-
ketas
cpet: hah
-
ketas
eggdrop still exists!
-
ketas
funnily
-
cpet
ketas: i maintain eggdrop
-
cpet
going strong
-
cpet
and even has a cute logo
-
cpet
badkat: certain places on the dark web
-
cpet
can be said will fuck you heh
-
cpet
not really worried about a BBS
-
badkat
i said it WAS
-
badkat
when telephony had something to do :))
-
cpet
you can still dialup to BBS's
-
cpet
mostly synchronet
-
cpet
i remebered I tried to create a port for it
-
badkat
after ESS-5 it was no more fun to do it hahah
-
cpet
but it was such a cluster fuck of a cluster fuck that even the dev said it was a cluster fuck
-
cpet
that I gave up
-
ketas
they are going to pinch pirates here now
-
ketas
funnily it's service problem too
-
» cpet pinches keta
-
cpet
s
-
badkat
cpet: you would get offended if you see my ANSI arts collection
-
cpet
doubt that
-
badkat
internet is not fun anymore
-
badkat
so many rules
-
cpet
this is why im normally on efnet
-
cpet
bck in the day i would get banned orm here almost daily
-
ketas
i recall that server where you connected and it showed ascii dick
-
ketas
:p
-
ketas
with telnet
-
cpet
underworld.no?
-
ketas
no idea
-
ketas
i have screenshot somewhere
-
cpet
see ascii dick get offended go hoe see real dick its ok
-
cpet
dont get it
-
cpet
hah
-
cpet
see ascii tits not ok, go home breast feed your kid ok
-
cpet
list goes on and on
-
badkat
hahah i have some ansi banners that goes way beyond that lma0
-
cpet
send links
-
cpet
or you are full of the shizzle
-
badkat
you gonna send me the N cops
-
cpet
if my pc doesnt get a message saying to call a number in india
-
cpet
you failed
-
badkat
roflma0
-
ketas
why coppy
-
badkat
i remember an efnet anniversary some years ago not so far
-
badkat
it was a beautiful cascade of ansi art :D
-
cpet
still waiting on links
-
ketas
i think it was some .ru domain even, on connect you saw it rising, stuff extracting and then server closed connection
-
» cpet smacks badkat
-
ketas
:p
-
badkat
i tried to spam some here in libera and got banned on every channel
-
ketas
hah
-
cpet
yeap explains why i am here after a six pack
-
ketas
someone trolled me a kline just last month for entire month
-
cpet
took me 12 tries to remeber password
-
cpet
:D
-
ketas
here
-
» ketas shrugs
-
cpet
ketas is ketas
-
cpet
just change your ip
-
cpet
or register a new nick with a toss email
-
ketas
nah it disappeared
-
cpet
you dissappeared ?
-
cpet
ketas: theres help available if you need it man
-
ketas
the kline hah
-
ketas
i'm still ok
-
cpet
if that is what ou want to call it ok
-
badkat
what actually happened to freenode lol
-
cpet
some guy bought it
-
cpet
then fucked it all up
-
cpet
then he didint want togive it back
-
cpet
so someone created librechat
-
cpet
or something like that
-
badkat
seems like a govmt operation to disband a great place
-
cpet
i never cared much for ither
-
cpet
any network or channel that doesnt condone cursing
-
cpet
is ...
-
cpet
or i blame ketas
-
ketas
btw kingston dt micro seems like sane installer/live/carry on flash... i got that after my existing lexar fit one got stuck in port and didn't survive pliers
-
cpet
i went to bestbuy today
-
cpet
and I wanted to get a bluray burner
-
cpet
then i saw price of 99 and said nope
-
ketas
and?
-
ketas
oh
-
badkat
lol zandronum is not ported to freebsd
-
ketas
but you had account <1usd anyway?
-
ketas
:p
-
badkat
i should do it or there is a better way to play doom multiplayer already?
-
cpet
badkat: port it or stfu really hah
-
cpet
the last doom to be officialy support using linux emu is doom 3
-
badkat
ok i will add a littledoor then that reports to unix.beer
-
cpet
after that id was bought by zenmedia or some shit
-
cpet
and it all went to crap
-
ketas
open games exist
-
cpet
just like every company that buy then wrecks havok
-
badkat
lmao but im talking about doom 2 solely
-
cpet
oracle is a good example
-
cpet
oh doom 2 should be easy to find in ports
-
cpet
brboom
-
cpet
hrdoom
-
cpet
doom
-
cpet
doom2
-
badkat
i know, but zandronum have lots of servers
-
badkat
dont know on these, i will check out
-
megaTherion
I remember doom3bfg compiling fine on FreeBSD back then
-
cpet
-
cpet
whats the project site
-
cpet
i have lots of time on my hand
-
ketas
littledoor?
-
cpet
if its some shitty linux only app
-
badkat
cpet: update your portsdir i have 118 roflma0
-
cpet
pfft
-
ketas
did you get shell
-
ketas
:p
-
cpet
he hasnt decrypted anything
-
cpet
or even guessed
-
badkat
cpet: zandronum is for multiplayer hahah deactivate your third eye
-
badkat
cpet: i just gave .221 and .218 ips to my friend in ch1n4
-
cpet
badkat: i do not come on irc to act smart man
-
badkat
cpet: are we in IRC? i tought it was ICB
-
cpet
ICQ?
-
badkat
ICB
-
cpet
wtf is ICB
-
badkat
internet citizen band :))
-
cpet
insane clown butts?
-
cpet
i need to see some ID
-
badkat
i dont have ID on me officer
-
cpet
are you going to remind me of your rights
-
cpet
man those vides are stupid
-
cpet
we had this one guy ousdie base think it was ok to film he learned real quick his right mean shit
-
badkat
Mr officer look behind you!
-
badkat
* chokes him with a cat6 cable *
-
cpet
once you cross that blue line
-
cpet
;/
-
ketas
thin blue cat5
-
cpet
cat 5e is thin
-
cpet
cat 5e does 1gig
-
cpet
i dont need more
-
badkat
brb i have a strange van outside my house
-
cpet
cat 6+ is over kill for me
-
cpet
badkat: probably me
-
cpet
if its white and has 2 attenas
-
cpet
say hi
-
ketas
-
ketas
lovely lively eh
-
ketas
based on o
-
cpet
i dont get why people do these
-
cpet
on of the nice thing about freebsd is the customization of the OS
-
cpet
not some bloated pos that forces you to use systemd
-
cpet
so why would I want something like namadbsd on my PC
-
cpet
?
-
megaTherion
systemd doesnt even work correctly
-
cpet
when its a few commands to have a working desktop OS
-
cpet
pkg install xorg xfce4 firefox tmux irssi
-
cpet
pretty much is it for me hah
-
cpet
since current includes something similar to openbsd's fw_update
-
cpet
you dont have to worry about fw's
-
cpet
now why did they remove drm*
-
cpet
i something I will always remind myself
-
cpet
but bleh
-
cpet
it works and works well so bleh
-
cpet
well i ran out of beer
-
ketas
yeah, fwget
-
ketas
badkat was captured by van men
-
ketas
systemd was nice idea
-
ketas
but road went to hell
-
megaTherion
Linux is a hell of nice ideas which are all horribly implemented
-
cpet
the rc system doesnt need to be as complex
-
megaTherion
Im happy FBSD is off with doing these things... I'll thrash it once they go that road
-
megaTherion
cpet: exacly
-
cpet
i was un happy when they added service
-
cpet
you boot the shit
-
cpet
and you leave it alone
-
cpet
this is why i dont use linux is the const stupid changes
-
cpet
not to mention torvolads is a tool
-
megaTherion
ya every 1-2y you have breaking changes, changed interfaces and what not
-
cpet
pulseaudio was one
-
cpet
told the dev it was stupid
-
cpet
cracking sounds
-
cpet
oh disable pulse audio works like a champ
-
cpet
to this day i have an hatred for that crap
-
ketas
service?
-
ketas
in fbsd rcng?
-
ketas
i mean i get why systemd but
-
ketas
anyway
-
ketas
fbsd init works
-
megaTherion
I dont get why... service starting parallel is a stupid idea anyways, nobody needs that
-
ketas
if it doesn't, you can hack it working
-
cpet
and it worked before adding the linuxism that is service
-
cpet
sh /etc/rc.d/ketas start
-
cpet
was fine
-
megaTherion
yup
-
ketas
well that still works
-
ketas
isn't as clean
-
cpet
no it doesnt
-
cpet
or else you wouldnt be here as I did stop like 20 yrs ago and it failed
-
ketas
:p
-
ketas
what
-
ketas
anyway
-
ketas
our init is fine
-
cpet
KISS
-
cpet
why do people want to complicate things
-
ketas
for autorestarts you use daemon etc
-
ketas
actually daemon is useful
-
ketas
as is lockf
-
ketas
and others
-
cpet
figured it was easier to have 1 SSD or NVE for OS i wanted
-
cpet
than to pretend freebsd makes a decent desktop
-
cpet
now im not bashing freebsd as I still use it after 30 yrs
-
cpet
but it doesnt make a good desktop os ;/
-
megaTherion
Im just using mac os for desktop *shrugs*
-
cpet
i got me a mac mini M4
-
cpet
I like it
-
cpet
i have a mac book the battery life is awesome
-
cpet
sold my gaming laptop
-
megaTherion
ya have an M4 too, these things are just great
-
cpet
that pos got like 2 hrs of battery life
-
megaTherion
and you have a proper shell, (almost) proper userland.. it works as expected unlike Win
-
megaTherion
you can install OSS stuff, but you can also install proprietary crap
-
cpet
well i got a imac for my mom
-
cpet
as one day she got some middle easter dewd asking her for her ssn and stuff
-
cpet
i curse the dewd out and after that no middle easter calls so
-
cpet
its not a gaming system
-
cpet
thats why I use windows or PS5
-
megaTherion
ya you cant game everything with an mac mini, but you can already run a lot with it... maybe not the latest AAA crap
-
cpet
now i wish that they did not include the power supply
-
cpet
and made it a brick like the imac
-
cpet
and made it smaller and slimmer
-
cpet
that would of been cooler
-
cpet
but bleh
-
cpet
so you have a PC the size of a apple tv
-
cpet
:D
-
ketas
-
ketas
but it's so simple script
-
ketas
i expected more
-
ketas
and author is needed for... ?
-
ketas
who knows who it was :/
-
megaTherion
bääsh
-
ketas
äää
-
ketas
-
ketas
:p
-
ketas
it goes into installers and helps me
-
dch
woah aarch64 bootonly.iso is *360MB*
-
dch
thats a lot for an installer
-
megaTherion
modern fat isos
-
ketas
in finnish "iso" is "big" so
-
ketas
it fits
-
megaTherion
hah
-
ketas
but yeah
-
ketas
big iso
-
megaTherion
it still fits on an good old fashioned CD ;)
-
ketas
but yeah all are that big
-
ketas
powerpc one was smallest
-
megaTherion
so get a ppc then
-
megaTherion
I think I've an old iMac somewhere
-
» dch remembers OS that fit on a 8" floppy
-
megaTherion
DOS 6.22?
-
megaTherion
(or 5.0 whatever)
-
dch
CP/M my dad had it for work
-
megaTherion
was definetly before my time
-
megaTherion
the first IBM machines didnt really have any hdd or?
-
megaTherion
(IBM PCs)
-
megaTherion
but CP/M or DOS were cheating anyways... not much of an OS
-
megaTherion
for DOS you need like 2,3 files then its basically usuable ... all it does are BIOS calls
-
dch
my first programming was inputting hexadecimal byte by byte using a 16 digit keypad.. no screen. no floppy. no mistakes.
-
ketas
greybeards :p
-
ketas
what i'm surprised is how my win95 worked on 66mhz cpu and 8mb ram
-
megaTherion
66MHz sounds still decent, no everyone already had a Pentium when win95 came out
-
ketas
had that in 1999
-
ketas
but then i upgraded eh
-
ketas
free secondhand machine
-
ketas
:p
-
megaTherion
better than nothing, stuff was horribly expensive back then
-
megaTherion
not sure what I had in win95 times but around 00s or shortly after I had a crappy K6-2
-
Lovis_IX
Hello friends, I have an issue with the freebsd-mailing list. I unsubscribe many time of several list, but I'm still subscribed. What can you do? I did'nt found any email address.
-
ketas
which list?
-
Lovis_IX
Desktop, Ports for example
-
ketas
unsure what lists do right now, strangely
-
ketas
i notice weirdnesses too
-
Lovis_IX
ok. It's only me, I did'nt have bad vision.
-
Lovis_IX
It's NOT only me.
-
ketas
i sent 11 mails to current list over several days and one got thru
-
ketas
finally
-
megaTherion
Lovis_IX: did you get confirmation?
-
ketas
spam filter?
-
ketas
i didn't really spam tho
-
ketas
several people sent like long inline logs there
-
» ketas shrugs
-
ketas
front mta kept telling ok queued
-
dvl
I typed this before, when my irc client was b0rked, and I've since restarted it: I just configured AdGuard at home. This laptop is the only client using it 100% (all the other are at 33% because there are 3 dns servers). Let's see how this goes.
-
» dch waves to dvl
-
dvl
yo
-
dch
i'm migrating the last of my amd64 servers today, to arm64
-
dch
living the dream
-
dch
ivy:
reviews.freebsd.org/D50043 say goodbye to minimal image
-
dvl
dch: Nice, I'm a big fan of RISC.
-
dch
me too, I have a soft spot for the Acorn Archimedes. The first graphical system I got to use.
-
Lovis_IX
megaTherion: yes, I reply to all the mails for confirm my goal to unsubscribe. I've just reply to those mails, wihthout changing anything.
-
Allan
badkat: that is me
-
darwin
my homesite DNS finally updated restoring mirror site with cpu_info script I linked asking if a chatter made it... but I'm going to sleep. If anyone replies, I'll try to search logs but will also watch for messages
-
flyback
heh
-
flyback
trying powerpc/power port for this old ibm system p5 power5+ rig
-
flyback
fail
-
benjamino
is it normal for vidcontrol -i mode to show nothing?
-
cpet
Are you using uefi console
-
cpet
If so that command pretty much does jack
-
benjamino
cpet: bootmethod is BIOS if thats what you meant
-
cpet
Yeap
-
cpet
Syscons is what's it's called
-
benjamino
cpet: thank you!
-
Rudde
Hello, if I install podman or docker on freebsd, is it able to run containers that are designed for linux?
-
dvl
Now thinking about how to deploy/use AdGuard for the #homelab. My idea so far is:
bsd.network/web/@Zven/114400623663497346
-
FatalNIX
dvl: Not loading for me
-
FatalNIX
Oh, nevermind, it's just deathly slow.
-
FatalNIX
Heh that's funny.
-
FatalNIX
Rudde: I think I tested this and it worked but it wasn't a complicated container. I was not a fan of how podman's install on FreeBSD played out. I felt like it wanted to force me to set up a particular paradigm of networking for example, in which I already have a stict setup I'd like to follow that my network is architectured for, and I didn't like that.
-
FatalNIX
I was hoping that it would be more agnostic.
-
FatalNIX
You know the whole, "Why are you trying to force me to do it this way?" Sort of problems
-
FatalNIX
For now, I am just running a Linux VM in bhyve for my docker containers.
-
jbo
dvl, just run blocky on localhost and point your resolver to it?
-
FatalNIX
For some reason the little animal on the blocky website reminds me of plan9
-
jbo
it's the goopher from golang.org
-
FatalNIX
I have never seen this, thanks for sharing jbo. I already have a DNS server on my network, but it looks like I can just point my local DNS server's forwarder to blocky, then blocky's forwarder to cloudflare or something to put it in the chain? It's either that or, routinely download blocking files for bind9..
-
FatalNIX
Ooh, has grafana support too
-
vectr0n
finding "new" open source projects is always fun :)
-
vectr0n
also happy it was mentioned, looks very handy
-
FatalNIX
Might as well install it and see what it can do
-
dvl
FatalNIX: It's the wrong URL anyway. Meant to be
bsd.network/web/@dvl/114405742038254107
-
dvl
jbo: Not sure how that resolves my local names
-
ivy
dch: oh good
-
dvl
jbo: Why use blocky over adguard? I know little of either
-
dvl
cccccbvkufelrvnhecflneihldbfcvetrtibgvkhffcb
-
FatalNIX
Hm, I guess with bind9 I can just use an RPZ to use the same host file blocky does, I can just add a fetch on cron to pull it...
-
FatalNIX
Perhaps blocky is not really necessary
-
FatalNIX
(Unless it does things I am unaware of)
-
dvl
^ thanks yubikey, sorry.
-
dvl
FatalNIX: You and I seem to have similar goals at present.
-
FatalNIX
I have a vastly overengineered network at home XD
-
ivy
dch: although i've been thinking recently that it would be nice to get rid of the freebsd-runtime and freebsd-utilities packages :-)
-
jmnbtslsQE
FatalNIX: looking at the blocky github page, it looks like it supports some features such as policies based on client, which i think bind cannot do with RPZs/blocking
-
jmnbtslsQE
actually it can, but then you have to load your rpz zone into separate views and it uses memory separately for each view, so it can become prohibitve
-
hernan604
here we go again... intel drm-kmod... should it be working from pkgs these days ?
-
hernan604
here is my /var/log/Xorg.0.log
termbin.com/zj27 -- what could be wrong ?
-
hernan604
i think it may be because there is the processor GPU (which i want to use) plus another GPU
-
hernan604
here is the pciconf -lv | grep vga
termbin.com/4nos
-
hernan604
here is the /etc/X11/xorg.conf
termbin.com/s8ki
-
hernan604
X seems like its going to start but then it falls back to terminal
-
hernan604
here is the pciconf -lv | grep -B3 display
termbin.com/gp2k
-
hernan604
oh great, sway works and X doesnt
-
hernan604
interesting
-
hernan604
i really want X, but i guess i will go with wayland then
-
duncan
the reason for this is that X11 needs very minimal configuration (it's in the handbook), but wayland doesn't.
-
duncan
try the modesetting driver. if you've specified intel and don't have xf86-video-intel installed, it won't work IIRC. (I think the handbook is distinctly confusing in this part.)
-
hernan604
duncan: where do i set the modesetting ? in kld_list ?
-
hernan604
i vaguely remember it..
-
duncan
it's an X11 driver
-
hernan604
ok
-
duncan
If you have drm-kmod installed, it should work
-
hernan604
aha modesetting works
-
hernan604
thanks!
-
FatalNIX
dvl: So I now have a cronjob, daily fetching dns blacklists. it runs a script that generates a new SOA header for bind9 with an appropriate date and
-
FatalNIX
appropriate date and counter serial, and then does this fancy awk '$1 ~ /^#/ { next }; NF >= 2 {print $2 "\tCNAME\t."}' to build the RPZ zone
-
FatalNIX
Voila, no blocky needed.
-
benjamino
hi! am i supposed to do something other than add kern.vty=sc to /boot/loader.conf to get syscons up and running? when i reboot the machine, i can see the boot messages perfectly, then it just opens lqxt on tty8, but the rest of the terminals just dont work, all i can do is go back to tty8
-
benjamino
sorry, tty7 (ctrl+alt+f8)
-
benjamino
brb i might just be stupid
-
jbo
dvl, block allows you to resolve local names
-
jbo
dvl, I know nothing of adguard so I cannot answer your question in a meaningful way
-
benjamino
weird i got the syscons working by disabling the sddm and removing drm-kmod (i915-kms)
-
cpet
Kms uses vid console or frame buffer
-
cpet
I think
-
FatalNIX
Finally, I have it fully working.
-
FatalNIX
DNS adblock in bind9 with an auto cron
-
ketas
i have done manual updates so far
-
ketas
of random lists
-
ketas
ublock origin is in play too
-
ketas
it's just bind and views
-
ketas
and vpn gives it to all phones as well
-
ketas
androids are damn clevery and bypass my dns by going direct to google so all apps can still show ads, which i bypass by redirecting those to my own dns
-
ketas
nothing ever gets ads
-
ketas
:p