본문 바로가기
Virtual

[Rocky linux 8] KVM 복사

by Yoon_estar 2024. 7. 22.
728x90
반응형

KVM Copy

복제를 위한 가상머신 준비

1. 가상 머신 설정

복제 또는 템플릿에 사용할 가상 머신을 빌드합니다. 복제본에 필요한 소프트웨어를 설치합니다. 운영 체제에 대해 고유하지 않은 설정을 구성합니다. 고유하지 않은 애플리케이션 설정을 구성합니다.

2. 네트워크 구성 제거

udev 규칙이 제거되지 않으면 첫 번째 NIC 이름이 eth0 대신 eth1일 수 있습니다.

 rm -f /etc/udev/rules.d/69-vdo-start-by-dev.rules

3. 가상머신 목록 확인

가상머신은 종료되어 있는 상태에서만 복사가 가능하다.

# virsh list --all
 Id   Name                  State
--------------------------------------
 15   windows10-test3       running
 -    windows-virtio-test   shut off
 -    windows10-test1       shut off
 -    windows11-test1       shut off

4. 가상 머신 복제

# virt-clone --original windows10-test1 --auto-clone
Allocating 'windows10-test1-clone.qco  1% [                           ]  63 MB/s | 4.1 GB  01:07:52 ETA

# virt-clone --connect qemu:///system --original windows11-test1 --name newdemo --file /var/lib/libvirt/images/newdemo.img
Allocating 'newdemo.img'               0% [                           ]  98 MB/s | 1.6 GB  00:44:19 ETA

5. 확인

# ls /var/lib/libvirt/images/
newdemo.img      windows10-test1-clone.qcow2  windows10-test3.qcow2
windows10.qcow2  windows10-test1.qcow2        windows-virtio-test.qcow2

반응형