标签:kvm 快照
cat /proc/cpuinfo | egrep ‘vmx|svm‘
apt-get install qemu-kvm libvirt-bin virt-managerbridge-utils
lsmod | grep kvm
virsh -c qemu:///system list
这个是安装kvm
然后添加虚拟机
qemu-img info aa.img 查看虚拟机现在的事什么格式
qemu-img convert -f raw -O qcow2 aa.imgtest01.qcow2 转换为qcow2 格式
qemu-img snapshot -c centos_install_ftp/vhostdisk/centos.img
创建快照
qemu-img snapshot -l /vhostdisk/centos.img
查询快照
qemu-img snapshot -d centos_install_ftp/vhostdisk/centos.img
注意,其中centos_install_ftp为快照名称,/vhostdisk/centos.img为原虚拟机。
Qemu-img方式恢复快照没有实现
能正确恢复快照的方法
Virsh
List --all 查看 现有的所有虚拟机
aa
Snapshot-create-as aa(虚拟机名) snap1(要创建的快照名)
Snapshot-info aa(虚拟机名) 查看aa虚拟机有多少快照
Snapshot-revert aa (虚拟机名) snap1 (要恢复到哪个快照的名)
标签:kvm 快照
原文地址:http://527322.blog.51cto.com/517322/1773168