-
Notifications
You must be signed in to change notification settings - Fork 4
HOME
-
Make sure your machine support KVM by running
LC_ALL=C lscpu | grep Virtualization
orgrep -E --color=auto 'vmx|svm|0xc0f' /proc/cpuinfo
. If nothing is displayed after running either command, then your processor does not support hardware virtualization. If it looks like your processor does not support virtualization, it's almost certainly turned off in the BIOS. -
Install the following package using this command (for arch-based linux)
sudo pacman -S qemu virt-manager ebtables
-
enable libvirtd by using
sudo systemctl enable libvirtd
and then start libvirtd by usingsudo systemctl start libvirtd
. -
Add your username to libvirtd group by using
sudo usermod -G libvirt -a <username>
-
Finally, you ready to go using virt-manager.
(For error starting domain you can check this article.)