快照
创建快照
virsh snapshot-create-as 虚拟机名字 快照名字
查看快照
virsh snapshot-list 虚拟机名字
Name Creation Time State
------------------------------------------------------------
kuaizhao 2021-05-17 10:58:00 +0800 shutoff
恢复快照
virsh snapshot-revert 虚拟机名字 kuaizhao
删除快照
virsh snapshot-delete 虚拟机名字 kuaizhao
克隆
克隆
查看要克隆的虚拟机磁盘位置
#virsh domblklist jimV-C
Target Source
------------------------------------------------
vda /var/lib/libvirt/images/jimV-C.qcow2
hda -
克隆
# virt-clone -o jimV-C -n centos-1 -f /var/lib/libvirt/images/centos-1.qcow2
Allocating 'centos-1.qcow2' | 50 GB 00:00:02
-o :指定虚拟机
-n :新虚拟机名字
-f :新虚拟机磁盘地址
查看 配置文件和磁盘文件
ls /etc/libvirt/qemu
jimV-C.xml centos-1.xml
ls /var/lib/libvirt/images
jimV-C.qcow2 centos-1.qcow2
导出
导出操作
导出配置文件
ll /etc/libvirt/qemu
centos.xml
virsh dumpxml centos > /etc/libvirt/qemu/centos-1.xml
ll /etc/libvirt/qemu
centos.xml centos-1.xml
复制磁盘文件
cd /var/lib/libvirt/images
cp centos.qcow2 centos-1.qcow2
修改导出文件 ,以防冲突
vim /etc/libvirt/qemu/cnetos-1.xml
指定域,用来生效配置
virsh define /etc/libvirt/qemu/centos-1.xml