kvm 克隆虚拟机


一、在宿主机上用virt-clone直接克隆

1、查看源虚拟机配置文件

[root@ddd-s-8 qemu]# more /etc/libvirt/qemu/test01.xml 
<!--
WARNING: THIS IS AN AUTO-GENERATED FILE. CHANGES TO IT ARE LIKELY TO BE 
OVERWRITTEN AND LOST. Changes to this xml configuration should be made using:
  virsh edit test01
or other application using the libvirt API.
-->

<domain type='kvm'>
  <name>test01</name>
  <uuid>f6dd7b47-eefa-90ac-ebd5-a4e1de3bf14f</uuid>
  <memory unit='KiB'>1048576</memory>
  <currentMemory unit='KiB'>1048576</currentMemory>
  <vcpu placement='static'>2</vcpu>
  <os>
    <type arch='x86_64' machine='rhel6.5.0'>hvm</type>
    <boot dev='network'/>
    <boot dev='cdrom'/>
    <bootmenu enable='yes'/>
  </os>
  <features>
    <acpi/>
    <apic/>
    <pae/>
  </features>
  <clock offset='utc'/>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>restart</on_reboot>
  <on_crash>restart</on_crash>
  <devices>
    <emulator>/usr/libexec/qemu-kvm</emulator>
    <disk type='file' device='disk'>
      <driver name='qemu' type='qcow2' cache='none'/>
      <source file='/data/kvmimg/test01.qcow2'/>
      <target dev='vda' bus='virtio'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/>
    </disk>
    <disk type='block' device='cdrom'>
      <driver name='qemu' type='raw'/>
      <target dev='hdc' bus='ide'/>
      <readonly/>
      <address type='drive' controller='0' bus='1' target='0' unit='0'/>
    </disk>
    <controller type='usb' index='0'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x2'/>
    </controller>
    <controller type='ide' index='0'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
    </controller>
    <interface type='direct'>
      <mac address='52:54:00:1e:03:10'/>
      <source dev='em2' mode='bridge'/>
      <model type='virtio'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
    </interface>
    <serial type='pty'>
      <target port='0'/>
    </serial>
    <console type='pty'>
      <target type='serial' port='0'/>
    </console>
    <input type='mouse' bus='ps2'/>
    <graphics type='vnc' port='5903' autoport='no' listen='0.0.0.0'>
      <listen type='address' address='0.0.0.0'/>
    </graphics>
    <video>
      <model type='cirrus' vram='9216' heads='1'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
    </video>
    <memballoon model='virtio'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/>
    </memballoon>
  </devices>
</domain>

2.查看虚拟机状态

[root@ddd-s-8 qemu]# virsh list --all
 Id    Name                           State
----------------------------------------------------
 -     test01                         shut off
 -     test02                         shut off
 -     test03                         shut off


3. 开始克隆

[root@ddd-s-8 qemu]# virt-clone -o test01  -n test04 -f /data/kvmimg/test04.qcow2         
Cloning test01.qcow2                                                                                                                            |  17 GB     00:36     

Clone 'test04' created successfully.

说明:以test01为源 创建名为test04,test04使用磁盘文件为/data/kvmimg/test04.qcow2

[root@ddd-s-8 qemu]# virsh edit test04   #修改vnc端口,就可以启动了


二、通过导入配置文件,复制磁盘文件克隆

[root@ddd-s-8 qemu]# virsh list --all
 Id    Name                           State
----------------------------------------------------
 -     test01                         shut off
 -     test02                         shut off
 -     test03                         shut off
 -     test04                         shut off
 
 [root@ddd-s-8 qemu]# virsh dumpxml test01 > /etc/libvirt/qemu/test05.xml
[root@ddd-s-8 qemu]# ls
networks  test01.xml  test02.xml  test03.xml  test04.xml  test05.xml
[root@ddd-s-8 kvmimg]# cp test01.qcow2 test05.qcow2  
[root@ddd-s-8 kvmimg]# ls
test01.qcow2  test02.qcow2  test03.qcow2  test04.qcow2  test05.qcow2
[root@ddd-s-8 qemu]# vim /etc/libvirt/qemu/test05.xml  #修改name,uid,vnc 端口,磁盘文件路径

2.定义新虚拟机配置文件

[root@ddd-s-8 kvmimg]# virsh define /etc/libvirt/qemu/test05.xml
[root@ddd-s-8 kvmimg]# virsh start test05


你可能感兴趣的:(虚拟机,配置文件)