1 . Check whether CPU has hardware virtualization support. KVM only works if your CPU has hardware virtualization support – either Intel VT-x or AMD-V. To determine whether your CPU includes these features, run the following command: #sudo grep -c "svm\|vmx" /proc/cpuinfo A 0 indicates that your CPU doesn’t support hardware virtualization, while a 1 or more indicates that it does. 2 . Install KVM and supporting packages. Virt-Manager is a graphical application for managing your virtual machines — you can use the kvm command directly, but libvirt and Virt-Manager simp...