Installing void on a VM using libvirtd/virt-manager

Void vm image requires uefi boot.

virt-install -n void \
    --description "Void Linux" \
    --boot uefi \
    --osinfo voidlinux \
    --cdrom=void-live-x86_64-20210930.iso \
    --ram 2048 \
    --vcpus 2 \
    --disk size=20 \
    --graphics vnc,listen=0.0.0.0 \
    --network bridge:virbr0

To start, stop or force-stop the vm,

virsh start void
virsh shutdown void
virsh destroy --domain void

To delete the vm,

virsh undefine --domain void --remove-all-storage

Then install as normal.