码迷,mamicode.com
首页 > 其他好文 > 详细

KVM快照备份

时间:2016-10-20 15:49:58      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:kavm   快照   

  1. 查看KVM磁盘格式

[root@KVM_05 ~]# qemu-img info /image-1/V-GIT-237.img 
image: /image-1/V-GIT-237.img
file format: raw
virtual size: 50G (53687091200 bytes)
disk size: 45G

可以看到磁盘格式为raw,此格式下不能进行快照。需要转换成qcow2格式。


2.转换磁盘格式

[root@KVM_05 ~]# qemu-img convert -f raw -O qcow2 /image-1/V-GIT-237.img /image-2/V-GIT-237.qcow2

-f 是源镜像的格式;

-O 是目标镜像的格式;

[root@KVM_05 image-2]# qemu-img info V-GIT-237.qcow2 
image: V-GIT-237.qcow2
file format: qcow2
virtual size: 50G (53687091200 bytes)
disk size: 44G
cluster_size: 65536

转换后的格式是qcow2,过程只是将.img文件拷贝一份成.qcow2,并将其进行转换。不过,这只是开始,还需要修改其中的配置文件。


3.修改虚拟机配置文件

[root@KVM_05 image-2]# virsh edit V-GIT-237
修改格式与文件路径

技术分享
















4.快照管理

virsh snapshot-create V-GIT-237

本文出自 “echo xiayun” 博客,请务必保留此出处http://linuxerxy.blog.51cto.com/10707334/1863802

KVM快照备份

标签:kavm   快照   

原文地址:http://linuxerxy.blog.51cto.com/10707334/1863802

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