Install KVM on Debian 12
This article is going to elaborate the whole process to install KVM on Debian 12, with Bridge network. With the power of bridge network, each VM will have its own LAN IP, and we can connect to the VM directly from other hosts in the same LAN. Install dependency packages Install QEMU deps Install qemu with GUI sudo apt install qemu-system libvirt-daemon-system virt-manager aqemu Install qemu without GUI sudo apt install --no-install-recommends qemu-system libvirt-clients libvirt-daemon-system virtinst Install bridge network deps sudo apt install dnsmasq-base bridge-utils firewalld Create bridge network KVM use NAT as the default network type, we need to create the bridge network first, and create the VM with the bridge network. ...