목차

KVM CLI 예제

디스크 이미지 생성

qemu-img create -f qcow2 -o preallocation=off test-vm.qcow2 10G

VM 생성

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

VM 시작

virsh define --file test-vm.xml  # VM 정의(생성)

virsh undefine <vm-name> # VM 삭제

virsh start <vm-name> # VM 시작