码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu kvm 部署安装   快照

时间:2016-05-14 01:15:35      阅读:476      评论:0      收藏:0      [点我收藏+]

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


ubuntu kvm 部署安装   快照

标签:kvm 快照

原文地址:http://527322.blog.51cto.com/517322/1773168

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!