There's an older version covering EL7 Since stable releases have been available for Rocky and Alma for quite some time, I've decided to write quick step-by-step guide to get a kvm-hypervisor set up on EL8. I'll start with a minimal install of AlmaLinux 8 with the latest updates applied. First, install the required packages to make the host a hypervisor: [archy@hyv01 ~]$ sudo dnf -d 2 -y --refresh module enable virt [archy@hyv01 ~]$ sudo dnf -d 2 -y --refresh install qemu-kvm libvirt libguestfs-tools virt-install tuned swtpm cockpit cockpit-machines [archy@hyv01 ~]$ sudo systemctl enable --now libvirtd.service tuned.service [archy@hyv01 ~]$ sudo tuned-adm profile virtual-host NOTE: Tuned is optional but might give you just a little bit more optimization for your workload. Next up, network configuration. I'll create a bond with 4 NICs which can then be used for vlans and bridges. [archy@hyv01 ~]$ sudo nmcli connection add type bond con-name bond0 ifname bond0 mod...