NetBSD 9.0 is officially released! It has:
- AArch64! (with UEFI, server hardware support, many boards all supported by a single GENERIC kernel, some graphics drivers!)
- NVMM, a clean new hardware-accelerated virtualization API
- updated ZFS!
https://t.co/lVJY9Q0XNA
otto@ modified www/mozilla-firefox: Disable DoH by default. While encrypting DNS might be a good thing, sending all DNS traffic to Cloudflare by default is not a good idea. Applications should respect OS configured settings. The DoH settings still can be overriden if needed. o...
If you decide you want to disable Firefox DoH in your network, here is how to configure BIND to use the non-standard method Firefox came up with:
https://t.co/dViUzQtqHB
FreeBSD core team appoints a WG to explore transitioning from Subversion to Git
via @Mcnst
https://t.co/uhdT7gSzbn #freebsd#vcs
https://t.co/u1cRx4qzET
FreeBSD is UP and running on the U.S. Government Furnished Equipment (GFE) 64-bit RISC-V cores. GFE cores are synthesized on the $7000 Xilinx VCU118 unit.
Soon all the voting machines in U.S. will be powered by FreeBSD/RISC-V.
It's surprisingly easy to do #dedup in #UNIX shell on any filesystem:
S=`sha256 -q $F` && mv $F $S && ln -s $S $F ;
Yes, it fits in a Tweet!