Getting started with KVM and Virtual Machine Manager
After playing with VirtualBox (see my posts), I’ve decided to try also KVM (based on QEMU) and Virtual Machine Manager (virt-manager). The installation is straightforward. In Ubuntu systems:
1 |
sudo apt install virt-manager bridge-utils |
In Arch-based systems:
1 |
sudo pacman -S virt-manager qemu edk2-ovmf |
Then, you need to add your user to the corresponding group:
1 2 |
sudo adduser ${USER} libvirt sudo adduser ${USER} libvirt-qemu |
Reboot, and you’re good to go. In this post, I’m […]