qemu-img create -f qcow2 -o preallocation=off test-vm.qcow2 10G
virt-install \ --ram 4096 \ --vcpu 4 \ --os-variant rhel7 \ --disk path=test-vm.qcow2,device=disk,bus=virtio,format=qcow2 \ --noautoconsole --vnc \ --network network:provision \ --network network:NAT \ --name test-vm \ --cpu host-passthrough \ --dry-run \ --print-xml > test-vm.xml
virsh define --file test-vm.xml # VM 정의(생성) virsh undefine <vm-name> # VM 삭제 virsh start <vm-name> # VM 시작