Table of Contents

Learn how to install Virtual Machine Manager on your Arch device following a few simple steps.

  1. Install qemu, virt-manager, ebtables and dnsmasq.
sudo pacman -S qemu virt-manager ebtables dnsmasq
  1. Edit /etc/libvirt/libvirtd.conf.
# Uncomment these lines
unix_sock_group = "libvirt"
unix_sock_rw_perms = "0770"
  1. Add user to “libvirt” group.
sudo usermod -aG libvirt <username>
  1. Start and enable services virtqemud, virtstoraged and virtnetworkd.
sudo systemctl enable --now virtqemud
sudo systemctl enable --now virtstoraged
sudo systemctl enable --now virtnetworkd
  1. You may need to reboot.

You may need to install edk2-ovmf in order to be able to boot your VMs in UEFI mode.

If you have any suggestion, feel free to contact me via social media or email.