schmonz.com is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.
This server runs the snac software and there is no automatic sign-up process.
boostedHere are some things that one can add to the analysis of the MacOS TCP timeout clock freeze bug.
The code for calculate_tcp_clock() in XNU was changed in May 2025. Older versions of this function (e.g. in xnu-11417) worked quite differently and wouldn't have stopped ticking the clock at 32-bit unsigned integer wraparound.
None of #NetBSD, #FreeBSD, nor #OpenBSD share this exact way of doing TCP timeout processing with #XNU.
FreeBSD does not have a tcp_now and works off the global 32-bit ticks variable. OpenBSD effectively works off the kernel's system clock, too, but with a randomized offset, and does 64-bit unsigned modular arithmetic. NetBSD uses a distinct 32-bit unsigned tcp_now counter that it simply increments by 1 at regular intervals, and does modular arithmetic subtraction.
https://photon.codes/blog/we-found-a-ticking-time-bomb-in-macos-tcp-networking
What is considered state of the art for Endpoint management, and specifically security controls (EDR, SIEM, RMM, etc.) for BSD? There usually exists clients and agents for Linux in this space. There is an abandoned(?) Wazuh port for FreeBSD.
Essentially how does one manage and monitor the security of 100โs or 1,000โs of BSD endpoints like a Windows or Linux or even Mac environment would?
๐ Cells for NetBSD - Kernel-enforced, jail-like Isolation with User-friendly Operations
๏ฝข The system stays fully NetBSD-native: isolation and policy enforcement are built into the kernel security framework, not delegated to a separate runtime layer.
The goal is not to replicate Linux-style container ecosystems, but to provide a focused operating model with minimal dependencies, no external control services, and explicit operational boundaries ๏ฝฃ
Have you been wondering about ZFS AnyRAID? Allan Jude will be giving a talk about Flexible Disk Layout @ BSDCan
If you register before May 1, the closing reception is free!
Register at https://www.bsdcan.org/2026/registration.html
#bsdcan #conference #bsd #unix #development #freebsd #netbsd #openbsd
#sysadmin #devops
Can anyone recommend a decent 2 port PCI network card?
Not PCIe or PCI-X!!!!
Bonus if its compatible with #NetBSD and has 1Gb ports
RE: https://social.lansky.name/@hn50/116359791078932871
I think this is in #netbsd too from looking at the src. Cannot find it in #freebsd
boostedThe new way of selling 'AI' seems to be to push it as a bugfinder. The latest example being waved around as of yesterday includes, as one of its non-embargoed examples, what is patched by this #OpenBSD patch.
https://ftp.openbsd.org/pub/OpenBSD/patches/7.8/common/025_sack.patch.sig
The problematic thing is that this sort of bugfixing hasn't changed the commentary in the code, which stated that p points to the last linked list entry at the point of the added null check and can never be null. But it actually can be, if there was a sole linked list entry that ended up being fully encompassed and thus deleted.
So this kind of 'AI' use is going to give us a lot more comments-do-not-match-code maintenance headaches down the road.
(Both #NetBSD and #FreeBSD factor this out into a separate tcp_sack.c and do the linked list handling slightly differently without a 'previous' pointer.)
boostedhttps://red.anthropic.com/2026/mythos-preview/
I wonder why they didn't check #NetBSD ! ๐ค
#FreeBSD #OpenBSD #runbsd
Vรฝvojovรก verzia operaฤnรฉho systรฉmu #NetBSD 11.0 RC3 mรก byลฅ poslednou pred vydanรญm stabilnej verzie. Vรฝvojรกrom sa podarilo opraviลฅ niekoฤพko chรฝb.
https://techsvet.eu/aktuality/posledna-vyvojova-verzia-netbsd-11-0-rc3/
boosted[discussion] the BSDs in the AI Age via @lattera https://lobste.rs/s/pdhar1 #culture #freebsd #netbsd #openbsd
https://lists.nycbug.org/pipermail/talk/2026-April/018894.html
An overview on running #FreeBSD, #NetBSD and #OpenBSD on the #PINE64 #ROCKPro64 #arm64 board, bare and with PCIe extension cards, in the context of building a NAS system.
https://www.tumfatig.net/2026/bsd-discovery-on-the-pine64-rockpro64/
Latest ๐ฉ๐ฎ๐น๐๐ฎ๐ฏ๐น๐ฒ ๐ก๐ฒ๐๐ - ๐ฎ๐ฌ๐ฎ๐ฒ/๐ฌ๐ฐ/๐ฌ๐ฒ (Valuable News - 2026/04/06) available.
https://vermaden.wordpress.com/2026/04/06/valuable-news-2026-04-06/
Past releases: https://vermaden.wordpress.com/news/
#verblog #vernews #news #bsd #freebsd #openbsd #netbsd #linux #unix #zfs #opnsense #ghostbsd #solaris #vermadenday
Latest ๐ฉ๐ฎ๐น๐๐ฎ๐ฏ๐น๐ฒ ๐ก๐ฒ๐๐ - ๐ฎ๐ฌ๐ฎ๐ฒ/๐ฌ๐ฐ/๐ฌ๐ฒ (Valuable News - 2026/04/06) available.
https://vermaden.wordpress.com/2026/04/06/valuable-news-2026-04-06/
Past releases: https://vermaden.wordpress.com/news/
#verblog #vernews #news #bsd #freebsd #openbsd #netbsd #linux #unix #zfs #opnsense #ghostbsd #solaris #vermadenday
๐ฉ #NetBSD 11.0 Nears Release With RC3 Released For Testing - Phoronix https://www.phoronix.com/news/NetBSD-11.0-RC3
Which has the best source code?
----
Best is whatever you care about about code quality. For some it might be design coherence, for others it might be resistance to security exploits, for others it might be architecture portability.
#netbsd #openbsd #freebsd #opensource
| NetBSD: | 0 |
| OpenBSD: | 0 |
| FreeBSD: | 0 |
Small fix, big impact ๐ง
Initial situation: The network card in my parentsโ mini server (NUC5PHY, RealTek 8168/8111) wasnโt properly entering Wake-on-LAN mode during shutdown. The server powers down automatically after inactivity and is woken up on demand via cron (every 1 min) from their laptops. Without WoL, it just stays off โ manual power-on required.
Solution: A patch for the NetBSD PCI network driver to hook it into the power management framework. On shutdown, the NIC is now correctly configured for WoL.
First tests: works as expected โ
#NetBSD #WoL #homelab #lowtech #pragmatic
Commit: https://github.com/MatthiasPetermann/netbsd-src/commit/4e3ee0370c3a9811f841e826ebf332639404209e
/usr/pkg, /home and /usr/X11R7 off the Compact Flash card that until now held everything. This box is now positively snappy! Never mind a couple of file system corruption issues experienced in the process...Also obligatory desktop screenshot.
[1] https://shop.rabbitholecomputing.com/products/sata-pci-hard-card
#NetBSD 11.0 RC3 was tagged and will soon be shipped to a http or ftp server near you.
The decision was made to delay the release and make another RC because of a number of important fixes being pulled up. This included ZFS and swap reliability fixes, improvements to support for allwinner risc-v hardware, and a curses compatibility fix.
https://www.legacy.com/us/obituaries/wlfi/name/george-goble-obituary?id=61144779
I remember the BBQ incident from years ago.
Scratch that last post about needing a #NetBSD VPS. Remembering ive got good internet these days; and found a NUC w/ enough ram on ebay for a good price.
Dear #NetBSD users what VPS service do you recommend ? I have spun up NetBSD on tunnelr.com before, but sometime after they switched management and names a few years back that dropped NetBSD images.
Something I've been most surprised by while trying NetBSD is how much thought has been put into creating a high-quality TTY experience.
On Linux, trying to create a functional TTY work environment feels like a a hack. Things often didn't work right or require lots of tinkering.
Here, everything just works. Straight out of the installer, I have 256 colour support, audio functionality, and the brightness/volume control keys just... work. No configuration. It's fantastic
EuroBSDcon 2026's call for papers is open, see https://2026.eurobsdcon.org/cfp/
Here is a direct link to submissions form https://events.eurobsdcon.org/2026/submit/ew426G/info/
@eurobsdcon #eurobsdcon #openbsd #netbsd #freebsd #conference #development #devops #sysadmin #freesoftware #libresoftware
Have you registered for BSDCan yet? I finally got around to it myself a day or so ago ;) I really like to chat with Open/Net etc. BSD folks as well as Free since I'm a BSD Agnostic!
Full disclosure yes I am on the Committee but don't hold it against me.
I just released netbsd-gce-0.4.2, with some minor bugfixes and updates.
boostedOkay, folks, gather 'round, because you are not going to believe this one. My friend who is working at NASA told me this confidential news , but i can finally spill the beans: NASA is officially running NetBSD.
Yeah, you heard that right. Turns out, when you need an OS that can literally run on a potato *and* survive the vacuum of space without a hiccup, you do not mess around. They have been working under wraps with their deep space division on something they are calling "AstroBSD."
Apparently, the Perseverance rover on Mars? Yeah, it is not just taking pretty pictures; it is crunching data with a custom NetBSD kernel.
This just proves what foundation has been saying forever: "Of course it runs NetBSD!" From your ancient router to a rover on another planet.
#NetBSD #NASA #AstroBSD #AprilFools #OpenSource #Portability #MarsRover #SpaceTech #GeekHumor
Greetings BSD Cafe', I have been playing around with the NetBSD packet filter. Based on my understanding, I presume the following would pass as a basic filter for a stand alone host firewall. Its not clean but perhaps adequate enough?
$ext_if = { inet4(wm0) } # LAN Connection
group "external" on $ext_if {
pass stateful out final all
block all
}
group default {
pass final on lo0 all
block all
}
Ok, #NetBSD on Odroid M1S update: I'm setting this one down for a bit. I'm stumped by the ethernet phy and tired beating my head against it. I put in a PR for my current progress, and that's merged into the main repo. Spinning a release might be difficult (for submodule bitrot reasons), so I made a status post with release binaries: https://overeducated-redneck.net/blurgh/netbsd-on-odroid-m1s.html
I'm just going to use a USB-to-ethernet adapter for now and use the board for its intended purpose. Finally.
Latest ๐ฉ๐ฎ๐น๐๐ฎ๐ฏ๐น๐ฒ ๐ก๐ฒ๐๐ - ๐ฎ๐ฌ๐ฎ๐ฒ/๐ฌ๐ฏ/๐ฏ๐ฌ (Valuable News - 2026/03/30) available.
https://vermaden.wordpress.com/2026/03/30/valuable-news-2026-03-30/
Past releases: https://vermaden.wordpress.com/news/
#verblog #vernews #news #bsd #freebsd #openbsd #netbsd #linux #unix #zfs #opnsense #ghostbsd #solaris #vermadenday
Latest ๐ฉ๐ฎ๐น๐๐ฎ๐ฏ๐น๐ฒ ๐ก๐ฒ๐๐ - ๐ฎ๐ฌ๐ฎ๐ฒ/๐ฌ๐ฏ/๐ฏ๐ฌ (Valuable News - 2026/03/30) available.
https://vermaden.wordpress.com/2026/03/30/valuable-news-2026-03-30/
Past releases: https://vermaden.wordpress.com/news/
#verblog #vernews #news #bsd #freebsd #openbsd #netbsd #linux #unix #zfs #opnsense #ghostbsd #solaris #vermadenday
@trashheap @grahamperrin I don't know about #FreeBSD but #NetBSD has policy of not accepting AI/LLM generated code