Installing Qemu KVM on Ubuntu and derivateds - Nonoloki/microsoft_linux GitHub Wiki

Run the following grep command to verify that your processor supports hardware virtualization:

grep -Eoc '(vmx|svm)' /proc/cpuinfo

Update APT and Install CPU Checker

sudo apt -y update && sudo apt install -y cpu-checker

Installing KVM on Ubuntu

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

Adding your user for qemu and libvirt groups

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