- 查看KVM磁盘格式
[[email protected]_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.转换磁盘格式
[[email protected]_05 ~]# qemu-img convert -f raw -O qcow2 /image-1/V-GIT-237.img /image-2/V-GIT-237.qcow2
-f 是源镜像的格式;
-O 是目标镜像的格式;
[[email protected]_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.修改虚拟机配置文件
[[email protected]_05 image-2]# virsh edit V-GIT-237 修改格式与文件路径
4.快照管理
virsh snapshot-create V-GIT-237
时间: 2024-10-14 17:08:30