Install VM

Libvirt VM Template erstellen

Neues ZFS Dataset anlegen

zfs create tank/vms/template_ubuntu_2004

QCOW2-Disk-Image für die VM anlegen

qemu-img create -f qcow2 /srv/vms/template_ubuntu_2004/template_ubuntu_2004_disk01.qcow2 50G

VM anlegen mit SCSI-Disk an VirtIO-SCSI Controller

virt-install --virt-type kvm \
    --name template_ubuntu_2004 \
    --ram 2048 \
    --disk /srv/vms/template_ubuntu_2004/template_ubuntu_2004_disk01.qcow2,bus=scsi,discard='unmap',format=qcow2 \
    --controller type=scsi,model=virtio-scsi \
    --cpu host \
    --network bridge=vbr100 \
    --graphics vnc,listen=0.0.0.0 \
    --noautoconsole \
    --os-type=linux \
    --os-variant=ubuntu20.04 \
    --cdrom=/srv/images/iso/ubuntu-20.04.1-live-server-amd64.iso