Java教程

3-3镜像管理

本文主要是介绍3-3镜像管理,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

一、常用镜像类型
在这里插入图片描述
二、创建虚拟机磁盘镜像
这个方法只能创建出qcow2的镜像文件,没有系统和其他设置

[root@svr7 ~]# qemu-img create -f qcow2 /var/lib/libvirt/images/stu02.qcow2 10G #创建stu02.qcow2文件,大小为10G
[root@svr7 ~]# qemu-img info /var/lib/libvirt/images/stu02.qcow2 #查看stu02.qcow2文件的信息
image: /var/lib/libvirt/images/stu02.qcow2
file format: qcow2
virtual size: 10G (10737418240 bytes)  #虚拟磁盘大小
disk size: 196K  #实际数据大小
cluster_size: 65536
Format specific information:
    compat: 1.1
    lazy refcounts: false
这篇关于3-3镜像管理的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!