Featured

How to Upgrade Manually to Ubuntu 26.10 "Stonking Stingray"

  With the development cycle for Ubuntu 26.10 officially underway, Canonical has published stonking/snapshot-1 . For early adopters, developers, and enthusiasts looking to ride the absolute edge of the open-source wave, the temptation to jump from the stable shores of 26.04 LTS, Resolute Raccoon, into the development stream is strong. Because the automated release pathways are not populated so early in the cycle, the standard do-release-upgrade -d tool will politely decline to find the new branch. To make the leap, we must step past the guardrails and manage our repository tracking manually. > Important Prerequisite: Upgrading to a day-one snapshot moves your environment into a highly experimental space. Ensure all core personal files, configurations, and local development repositories are thoroughly backed up before executing these steps. Ubuntu 26.04 has transitioned to a modern, structured deb822 formatting layout for core package sources. This means standard mod...

Running Windows 11 on Linux with KVM/QEMU

This guide walks through the full process of running Windows 11 on Linux using KVM/QEMU and Virt-Manager, the most robust and future-proof setup available today.

While tools like VirtualBox still exist, KVM/QEMU has quietly become the gold standard on Linux.

It offers:

  • Near-native CPU performance

  • Excellent disk and network throughput

  • Proper UEFI, Secure Boot, and TPM support

  • Long-term compatibility with Windows 11 updates


Before starting, make sure you have:

  • A Linux system with virtualization enabled in BIOS

    • Intel: VT-x / VT-d

    • AMD: SVM / IOMMU

  • At least 8 GB RAM (16 GB recommended)

  • Around 80 GB of free disk space

  • A Windows 11 ISO

  • The VirtIO drivers ISO


Step 1: Check Virtualization Support

Open a terminal and run:

egrep -c '(vmx|svm)' /proc/cpuinfo

If the result is 1 or higher, virtualization is enabled.
If it returns 0, you’ll need to enable it in your BIOS before continuing.


Step 2: Install KVM, QEMU, and Virt-Manager

On Ubuntu / Debian-based systems:

sudo apt update
sudo apt install -y \
  qemu-kvm \
  libvirt-daemon-system \
  libvirt-clients \
  virt-manager \
  virtinst \
  bridge-utils \
  ovmf \
  swtpm

Enable libvirt:

sudo systemctl enable --now libvirtd

Add your user to the libvirt group:

sudo usermod -aG libvirt $USER
newgrp libvirt

This avoids permission headaches later.


Step 3: Download Required ISOs

Windows 11 ISO

Download directly from Microsoft:

VirtIO Drivers ISO

On your Linux host:

wget https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso

Store both ISOs somewhere sensible, such as:

~/VMs/iso/

Step 4: Create Virtual Disk Storage

Create a fast, flexible virtual disk:

mkdir -p ~/VMs/win11
qemu-img create -f qcow2 ~/VMs/win11/win11.qcow2 80G

QCOW2 allows snapshots and grows only as needed.


Step 5: Launch Virt-Manager

virt-manager

Click Create New Virtual Machine and choose:

  • Local install media (ISO)

Select the Windows 11 ISO.

Set OS type to:

  • Windows → Windows 11


Step 6: Configure Windows 11 Requirements (Important)

Before starting the install, select “Customize configuration before install.”

Firmware

  • Use UEFI (OVMF)

  • Enable Secure Boot

TPM

  • Add hardware → TPM

  • Type: Emulated

  • Version: 2.0

Windows 11 will not install without this.


Step 7: CPU, Memory, and Devices

Recommended settings:

  • CPU model: host-passthrough

  • CPUs: As many cores as you can spare

  • Memory:

    • Minimum: 8 GB

    • Recommended: 12–16 GB

  • Disk bus: VirtIO

  • Network device: VirtIO

These settings are key to performance.


Step 8: Install Windows 11

Start the VM.

When the installer says “No drives found”:

  1. Click Load Driver

  2. Browse the VirtIO ISO

  3. Select:

    vioscsi → w11 → amd64
    

Your disk will appear. Continue the installation normally.


Step 9: Install VirtIO Guest Tools (Critical)

Once Windows boots to the desktop:

  1. Open This PC

  2. Open CD Drive (virtio-win)

  3. Run:

    virtio-win-guest-tools.exe
    
  4. Install all drivers

  5. Reboot

Comments