当前位置: > 虚拟化 Virtualization > KVM >

ubuntu kvm 部署安装 快照

时间:2016-11-15 15:29来源:linux.it.net.cn 作者:IT


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 (要恢复到哪个快照的名)



(责任编辑:IT)
------分隔线----------------------------