Boot windows as KVM on serprate HDD =================================== This article is about mounting a secondary hard drive as a disk for a KVM vm. The advantages of this include being able to dual boot a system, and run one system as a vm within another. In my setup Windows 10 is installed on the factory m.2 mvne drive, with Debian 12 on a septate SSD. During the setup of Debian I removed the nmve drive to make sure each disk has its own uefi boot partition. Because there are two seperate boot partitions, we wont need to do anything special, we can just point the kvm to use the disk directly. Here my disk is named ``/dev/nvme0n1`` We need to enable ipv4 and ipv6 forwarding. Uncomment these two lines in /etc/sysctl.conf :: sudo nano /etc/sysctl.conf net.ipv4.ip_forward=1 net.ipv6.conf.all.forwarding=1 | Reload system config for this to take effect. | ``sudo sysctl --system`` We are going to setup a network bridge. Add this to ``/etc/network/interfaces``, then restart the service with ``sudo systemctl restart networking`` :: # The bridge interface auto br0 iface br0 inet dhcp bridge_ports enp3s0 bridge_stp off bridge_fd 0 bridge_maxwait 0 Virsh config :: windows10 ad49edea-f888-432a-aa2c-0721938eca4c 12582912 12582912 4 /machine hvm /usr/share/OVMF/OVMF_CODE.fd /var/lib/libvirt/qemu/nvram/win10_VARS.fd destroy restart destroy /usr/bin/qemu-system-x86_64