Virtualize SQL Server with KVM

Virtualizing SQL Server with KVM.

Installing KVM on Debian/Ubuntu

sudo apt update
sudo apt install -y qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils virt-manager
sudo systemctl enable --now libvirtd

Add your user to the libvirt group:

sudo usermod -aG libvirt $USER
sudo usermod -aG kvm $USER

Log out and back in to apply the change.

Start the libvirt service:

sudo systemctl enable --now libvirtd