kernel update

Winsage
March 28, 2026
Microsoft has confirmed a major kernel security update for Windows 11, revoking trust in older drivers signed through an outdated cross-certification program. The update will ensure that Windows 11 accepts only software that has passed the Windows Hardware Compatibility Program's testing standards. This change aims to counter piracy attempts, particularly against a hacker known as DenuvOwOA, who bypassed Denuvo's anti-piracy protection by manipulating the embedded hypervisor and loading unsigned or vulnerable drivers. The new security policy will block the execution of such code, making existing hacking methods obsolete. The rollout will begin in compatibility assessment mode for Windows 11 and Windows Server & Hosting, with a hard block activated only if no stability issues are detected. Corporate clients can manually add certificates through the Application Control for business tool, while gamers will find it increasingly difficult to run hacked games relying on a modified hypervisor.
Winsage
August 7, 2025
Updating the Linux kernel is generally straightforward and low-risk, similar to Windows updates. Most Linux distributions, including Ubuntu, Fedora, Debian, and Linux Mint, manage kernel updates automatically through the package manager. When a new kernel is installed, the previous version remains intact, allowing users to revert to it if necessary via the GRUB boot menu. Kernel updates provide essential security patches, bug fixes, and improved hardware support. While manual installation of a kernel is possible, it is not required for most users. Tools are available for easier management of kernel versions, but the update process is designed to be user-friendly and safe.
Winsage
November 12, 2024
Updating the kernel for Windows Subsystem for Linux 2 (WSL2) can improve performance and functionality. Steps to update the WSL2 kernel include: 1. Adjust the kernel version as needed. 2. Assign a unique name to the kernel using the command: scripts/config --file Microsoft/config-wsl --set-str LOCALVERSION "-custom-microsoft-standard-WSL2". For further customization, use: make menuconfig KCONFIG_CONFIG=Microsoft/config-wsl. 3. Create the kernel with the command: echo 'yes' | make -j $(nproc) KCONFIG_CONFIG=Microsoft/config-wsl, and install necessary modules with: sudo make KCONFIGCONFIG=Microsoft/config-wsl modulesinstall. 4. Access the Linux environment through Windows Explorer, and copy the vmlinux file from your home directory to the WSL folder (C:Users[username]WSL). 5. Create a .wslconfig file in your Windows profile folder and input the lines: wsl --list --online. Replace [username] with your actual user name. Terminate all running WSL instances using: wsl --list --online. To verify the new kernel version, start Linux in WSL and run: wsl --list --online.
Search