home tags events about rss login

Things happen.

horia bonked 25 Mar 2026 09:49 -0700
original: miodvallat@hostux.social

Guess who forgot to publish the new episode of the #OpenBSD on m88k story earlier this morning? (I'll blame the cat wanting to play, for this).

So, in today's episode, I try my luck at arm-wrestling the compiler, the OpenBSD/mvme88k port gets its first official release, and we end with a proof that I suffer from Alzheimer's disease.

Read it at http://miod.online.fr/software/openbsd/stories/m88k2.html and stay tuned for next week!

horia bonked 23 Mar 2026 09:09 -0700
original: rqm@exquisite.social

Here's a snippet for sending files via serial from #OpenBSD (and other BSD systems) via direct RS232 serial using YMODEM (set to 57600 baud for great success, in my case the transfer likes to fail at higher speeds):

First you need lrzsz for sending stuff:

# pkg_add lrzsz

Then establish a serial connection:

$ cu -l /dev/cua00 -s57600 -d
Connected to /dev/cua00 (speed 57600)

Then (on a "clean" line, so perhaps press Enter once for good measure) issue the cu command:
~C
Which forks out and asks for a command you'd like to execute.
Run:

*Local command?* lsz --ymodem ~/file-to-send.bin
Sending: file-to-send.bin
Bytes Sent:1881472/5125910 BPS:5243 ETA 10:18

Then put the other machine in YMODEM receiving mode and rub your hands together in glee.

Other methods that work but are discouraged:

cu(1) actually has XMODEM transfer baked in (running the ~X command once connected) but I found it to be unreliable and slow. Don't use it.

Depending on your use case you might be able to use the ~> command in cu(1) as well, but that will just directly write file contents to the serial connections, "raw". In my case this was NOT what I wanted as I wanted to send stuff to a non-unix machine. But if you did, then you'd probably need to just cat the output of the serial connection to a file on the receiving end.

#RunBSD #retrocomputing

horia bonked 23 Mar 2026 09:01 -0700
original: overeducatedredneck@bitbang.social

I nerd sniped myself and wrote a monster article doing a code commentary of /etc/rc from #OpenBSD 7.8: https://overeducated-redneck.net/blurgh/openbsd-init-system.html

I learned a ton of my base sysadmin skills from studying init(8), and decided to produce a modern version of that (I learned in the 90s).

Also, I have armored my webserver against all bots, and fedi is the only place I syndicate. Boosts are appreciated.

#sysadmin #runbsd