首页 > 代码库 > KVM快照备份

KVM快照备份

  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快照备份