跳转到内容

Arch Linux KVM

Terminal window
lscpu | grep -i Virtualization
  • VT-x for Intel
  • AMD-Vi for AMD

Ensure that your kernel includes KVM modules

Section titled “Ensure that your kernel includes KVM modules”
Terminal window
zgrep CONFIG_KVM /proc/config.gz
  • y = Yes (always installed)
  • m = Loadable module
Terminal window
sudo pacman -S qemu-full qemu-img libvirt virt-install virt-manager virt-viewer \
edk2-ovmf dnsmasq swtpm guestfs-tools libosinfo tuned
  • qemu-full - user-space KVM emulator, manages communication between hosts and VMs
  • qemu-img - provides create, convert, modify, and snapshot, offline disk images
  • libvirt - an open-source API, daemon, and tool for managing platform virtualization
  • virt-install - CLI tool to create guest VMs
  • virt-manager - GUI tool to create and manage guest VMs
  • virt-viewer - GUI console to connect to running VMs
  • edk2-ovmf - enables UEFI support for VMs
  • dnsmasq - lightweight DNS forwarder and DHCP server
  • swtpm - TPM (Trusted Platform Module) emulator for VMs
  • guestfs-tools - provides a set of extended CLI tools for managing VMs
  • libosinfo - a library for managing OS information for virtualization.
  • tuned - system tuning service for linux allows us to optimise the hypervisor for speed.

Go to the Fedora People repository and download virtio-win.iso.

Save it anywhere on disk, and attach it to a CD-ROM it when creating Windows VM.

The default location on Debian/RedHat based is /usr/share/virtio-win/

  • Here is the documentation detailing the difference between monolithic and modular daemons.
  • Choose between option 1 and 2 and then do a reboot.
Terminal window
for drv in qemu interface network nodedev nwfilter secret storage; do
sudo systemctl enable virt${drv}d.service;
sudo systemctl enable virt${drv}d{,-ro,-admin}.socket;
done
  • loop through virtualization systemd services necessary for the libvirt modular daemon.
Terminal window
sudo systemctl enable libvirtd.service
Terminal window
sudo virt-host-validate qemu

If you receive warnings, proceed to their respective sections. Re-run the above command to check your changes.

Intel:

sudo modprobe -r kvm_intel
sudo modprobe kvm_intel nested=1

AMD:

sudo modprobe -r kvm_amd
sudo modprobe kvm_amd nested=1

Intel:

echo "options kvm_intel nested=1" | sudo tee /etc/modprobe.d/kvm-intel.conf

AMD:

echo "options kvm_amd nested=1" | sudo tee /etc/modprobe.d/kvm-amd.conf

WARN (IOMMU appears to be disabled in the kernel. Add intel_iommu=on to kernel cmdline arguments)

  1. Open your GRUB config
Terminal window
sudo vim /etc/default/grub
  1. Add the following kernel module entries
/etc/default/grub
GRUB_CMDLINE_LINUX="... intel_iommu=on iommu=pt"
  1. Regenerate your grub.cfg file
Terminal window
sudo grub-mkconfig -o /boot/grub/grub.cfg
sudo reboot

For AMU CPUs with SEV feature, you might receive this warning:

WARN (AMD Secure Encrypted Virtualization appears to be disabled in kernel. Add kvm_amd.sev=1 to the kernel cmdline arguments)

If you are in Intel you may ignore the warning below, as this only affects AMD CPUs.

WARN (Unknown if this platform has Secure Guest support).

You may refer to this bug report:

Or this libvirt documentation:

Terminal window
echo "options kvm_amd sev=1" | sudo tee /etc/modprobe.d/amd-sev.conf
sudo reboot
  1. Open your GRUB config
Terminal window
sudo vim /etc/default/grub
  1. Add the following kernel module entries
/etc/default/grub
GRUB_CMDLINE_LINUX="... mem_encrypt=on kvm_amd.sev=1"
  1. Regenerate your grub.cfg file
Terminal window
sudo grub-mkconfig -o /boot/grub/grub.cfg
sudo reboot
  1. Enable TuneD daemon
Terminal window
sudo systemctl enable --now tuned.service
  1. Check active TuneD profile
Terminal window
tuned-adm active

Current active profile: balanced

  • balanced - generic profile not specialised for KVM, we will change this.
  1. List all TuneD profiles
Terminal window
tuned-adm list
  1. Set profile to virtual-host
Terminal window
sudo tuned-adm profile virtual-host
  1. Verify that TuneD profile
Terminal window
tuned-adm active

Current active profile: virtual-host

Terminal window
sudo tuned-adm verify

Verification succeeded, current system settings match the preset profile. See TuneD log file (‘/var/log/tuned/tuned/log’) for details.

  • By default all virtual machines will connect to the built-in default NAT network.
  • To make VMs accessible via the LAN you must create a network bridge.
  • Keep in mind that network bridges won’t work with hosts running on Wireless NICs.
  • All configuration steps below is done using NetworkManager. If you use a different program to manage networking use that instead.

Default NAT network XML dump:

<network>
<uuid>...</uuid>
<forward mode='nat'>
<nat>
<port start='1024' end='65535'/>
</nat>
</forward>
<bridge name='virbr0' stp='on' delay='0'/>
<mac address='AB:CD:EF:AB:CD:EF'/>
<ip address='10.1.1.1' netmask='255.255.255.0'>
<dhcp>
<range start="10.1.1.2" end="10.1.1.254"/>
</dhcp>
</ip>
</network>

Sample Netfilter (nftables) rules for default NAT

Section titled “Sample Netfilter (nftables) rules for default NAT”

The rules below is my personal config for my laptop machine. Which works nicely with the autogenerated libvirt network rules.

#!/usr/bin/nft -f
flush ruleset;
define qemu_iface = "virbr0";
table inet filter {
chain input {
type filter hook input priority filter; policy drop;
ct state established,related accept;
iifname "lo" accept comment "allow loopback";
iifname $qemu_iface accept comment "allow qemu";
tcp dport http accept comment "allow sending http";
tcp dport https accept comment "allow sending https";
udp dport 67 udp sport 68 accept comment "allow sending dhcp";
tcp dport ssh accept comment "allow ssh";
counter drop;
}
chain forward {
type filter hook forward priority filter; policy drop;
ct state established,related accept;
iifname $qemu_iface accept comment "forward qemu input";
oifname $qemu_iface accept comment "forward qemu output";
counter drop;
}
}
table ip nat {
chain postrouting {
type nat hook postrouting priority srcnat; policy accept;
ip saddr 10.1.1.0/24 masquerade;
}
}
  1. find the interface name of your ethernet connection.
Terminal window
sudo nmcli device status
DEVICETYPESTATECONNECTION
enp2s0ethernetconnectedWired connection 1
loloopbackconnected (externally)lo
virbr0bridgeconnected (externally)virbr0
  1. create a bridge interface using nmcli
Terminal window
sudo nmcli connection add type bridge con-name bridge0 ifname bridge0
  1. connect the ethernet interface to the bridge
Terminal window
sudo nmcli connection add type ethernet slave-type bridge con-name 'Bridge connection 1' \
ifname enp2s0 master bridge0
  1. activate the newly created connection
Terminal window
sudo nmcli connection up bridge0
  1. enable connection.autoconnect-slaves parameter.
Terminal window
sudo nmcli connection modify bridge0 connection.autoconnect-slaves 1
  1. reactivate the bridge and verify connection.
Terminal window
sudo nmcli connection up bridge0
sudo nmcli device status
DEVICETYPESTATECONNECTION
bridge0bridgeconnectedbridge0
loloopbackconnected (externally)lo
virbr0bridgeconnected (externally)virbr0
enp2s0ethernetconnectedBridge connection 1
  1. create an XML file called nwbridge.xml.
Terminal window
vim nwbridge.xml
  1. post the following XML
<network>
<name>nwbridge</name>
<forward mode="bridge" />
<bridge name="bridge0" />
</network>
  1. define the bridge network
Terminal window
sudo virsh net-define nwbridge.xml

Network nwbridge defined from nwbridge.xml

  1. start the bridge network
Terminal window
sudo virsh net-start nwbridge
  1. auto-start bridge network on boot
Terminal window
sudo virsh net-autostart nwbridge
  1. delete nwbridge.xml file
Terminal window
rm nwbridge.xml
  1. verify that nwbridge network exists.
Terminal window
sudo virsh net-list --all
NameStateAutostartPersistent
defaultactiveyesyes
nwbridgeactiveyesyes

If you want to revert the changes to your network, do the following:

Terminal window
sudo virsh net-destroy nwbridge
sudo virsh net-undefine nwbridge
sudo nmcli connection up 'Wired connection 1'
sudo nmcli connection del bridge0
sudo nmcli connection del 'Bridge connection 1'

Libvirt has two methods for connecting to the KVM Hypervisor, Session and System.

In session mode, a regular user is connected to a per-user instance. Allowing each user to manage their own pool of virtual machines. This is also the default mode.

The advantage of this mode is, permissions are not an issue. As no root access is required.

The disadvantage is this mode uses QEMU User Networking (SLIRP). This is a user-space IP stack, which yields overhead resulting in poor networking performance.

And if you want to implement an option that requires root privileges. You will be unable to do so.

In the system mode you are granted access to all system resources.

Granting system-wide access to regular user.

Section titled “Granting system-wide access to regular user.”
  1. check current mode
Terminal window
sudo virsh uri

qemu:///session

  1. add the current user to the libvirt group
Terminal window
sudo usermod -aG libvirt $USER
  1. set env variable with the default uri and check
Terminal window
echo 'export LIBVIRT_DEFAULT_URI="qemu:///system"' >> ~/.bashrc
sudo virsh uri
  1. check permissions on the images directory
Terminal window
sudo getfacl /var/lib/libvirt/images
var/lib/libvirt/images/
getfacl: Removing leading '/' from absolute path names
# owner: root
# group: root
user::rwx
group::--x
other::--x
  1. recursively remove existing ACL permissions
Terminal window
sudo setfacl -R -b /var/lib/libvirt/images/
  1. recursively grant permission to the current user
Terminal window
sudo setfacl -R -m "u:${USER}:rwX" /var/lib/libvirt/images/
  • uppercase X states that execution permission only applied to child folders and not child files.
  1. enable special permissions default ACL
Terminal window
sudo setfacl -m "d:u:${USER}:rwx" /var/lib/libvirt/images/
  • if this step is omitted, new dirs or files created within the images directory will not have this ACL set.
  1. verify your ACL permissions within the images directory.
Terminal window
sudo getfacl /var/lib/libvirt/images/
var/lib/libvirt/images/
getfacl: Removing leading '/' from absolute path names
# owner: root
# group: root
user::rwx
user:tatum:rwx
group::--x
mask::rwx
other::--x
default:user::rwx
default:user:tatum:rwx
default:group::--x
default:mask::rwx
default:other::--x