QEMU Guide with Virt-Manager
INFO
Simple and easy setup for Qemu with Virt-Manager on Arch Linux.
Installation
Install required packages:
shsudo pacman -S --needed qemu-full virt-manager virt-viewer libguestfs edk2-ovmf dmidecode dnsmasq vde2 bridge-utils openbsd-netcat ebtables iptables-nft
Package Info:
qemu-full
→ Full QEMU package with all features.virt-manager
→ GUI for managing virtual machines.virt-viewer
→ Lightweight viewer for virtual machines.libguestfs
→ Tools for managing virtual disk images.edk2-ovmf
→ UEFI firmware for virtual machines.dmidecode
→ Reads hardware information for VM configuration.dnsmasq
→ DHCP and DNS support for VM networking.vde2
→ Virtual network switch for advanced networking.bridge-utils
→ Tools for bridging network interfaces.openbsd-netcat
→ Netcat implementation for networking tasks.ebtables
→ Controls Ethernet bridge firewall rules.iptables-nft
→ Packet filtering framework for networking.
- Enable and start the libvirt service:sh
sudo systemctl enable --now libvirtd
- Add your user to the libvirt group:sh
sudo usermod -aG libvirt $(whoami)
- Restart the libvirt service:sh
sudo systemctl restart libvirtd
- Enable autostart for the default network:sh
sudo virsh net-autostart default
- Reboot your system:sh
sudo reboot now
Useful Commands
- List all networks:sh
sudo virsh net-list --all
- Enable autostart for the default network:sh
sudo virsh net-autostart default
- Start the default network manually:sh
sudo virsh net-start default
TIP
If networking issues occur, check if the default network is started.
sh
sudo virsh net-list --all