kvm_cli_예제

KVM CLI 예제

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 시작
로그인하면 댓글을 남길 수 있습니다.
  • kvm_cli_예제.txt
  • 마지막으로 수정됨: 2019/09/06 14:18
  • 저자 koov