Comes with the 7.0.3 Linux Kernel.

My commit got merged to the rtw89 Realtek linux kernel driver

https://github.com/pkshih/rtw/commit/7068c379cf9aa8afe4dce4d9d82390187aa9c4d0
If you’re trying to run VirtualBox on a Linux host with an AMD CPU and you get this error:
VirtualBox can't enable the AMD-V extension. Please disable the KVM kernel extension, recompile your kernel and reboot (VERR_SVM_IN_USE).
The problem is that KVM has claimed the AMD-V virtualization extension, and VirtualBox can’t use it at the same time.
This issue has become more common with Linux kernel 6.12 and later. The KVM modules are now loaded more aggressively at boot, even if you’re not using KVM. If you recently updated your kernel (e.g., to 6.14+ on Arch Linux) and VirtualBox stopped working, this is likely the cause.
You don’t need to recompile anything. Just unload the KVM modules:
sudo modprobe -r kvm_amd
sudo modprobe -r kvm
Then start your VirtualBox VM — it should work.
If you want KVM to never load automatically (so VirtualBox always works), blacklist the modules:
echo "blacklist kvm_amd" | sudo tee /etc/modprobe.d/blacklist-kvm.conf
echo "blacklist kvm" | sudo tee -a /etc/modprobe.d/blacklist-kvm.conf
If you need KVM again (e.g., for QEMU), simply reload the modules:
sudo modprobe kvm
sudo modprobe kvm_amd
You can only use one hypervisor at a time — VirtualBox or KVM, not both simultaneously. That’s a hardware limitation of AMD-V/SVM.
If you’ve ever rebooted a machine and NTP refused to sync because the clock drifted too far, you’ve hit the panic threshold. By default, ntpd will exit if the offset exceeds 1000 seconds.
Add this to /etc/ntp.conf:
tinker panic 0
Setting panic 0 disables the panic threshold entirely, allowing ntpd to correct any offset regardless of size.
If you don’t want to permanently disable the panic threshold, you can do a one-time force sync with:
ntpd -gq
The -g flag allows the first adjustment to be any size, and -q makes ntpd set the time and exit.
Sad news for the open source community… 😦
Written in Rust … 🙂
“A program for managing systemd services through a TUI (Terminal User Interfaces).
This tool allows you to manage systemd services with ease. You can view logs, list services, view properties, and control their lifecycle—start, stop, restart, enable, and disable—using the D-Bus API.”

Released with a new ChatGPT generated algorithm that switched the Glob Pattern Matching from exponential to linear time!

In almost all tests except from MariaDB. It is now time to see some BTRFS compression benchmarks.

“The X86_NATIVE_CPU Kconfig build time option has been merged for the Linux 6.16 merge window as an easy means of enforcing “-march=native” compiler behavior on AMD and Intel processors to optimize your kernel build for the local CPU architecture/family of your system.
The CONFIG_X86_NATIVE_CPU option is honored if compiling the Linux x86_64 kernel with GCC or LLVM Clang when using Clang 19 or newer due to a compiler bug with the Linux kernel on older compiler versions.”
