kvm虚拟机扩充磁盘空间
时间:2020-04-02 17:46 来源:linux.it.net.cn 作者:IT
svn.qcow2为虚拟机镜像文件,大小为10G,现需要扩大磁盘空间为100G
it@ubuntu:/storage/libvirt/images$ sudo qemu-img resize SVN.qcow2 +90G
Image resized.
扩容完后查看svn.qcow2镜像大小为100G
it@ubuntu:/storage/libvirt/images$ sudo qemu-img info SVN.qcow2
image: SVN.qcow2
file format: qcow2
virtual size: 100G (107374182400 bytes)
disk size: 1.4G
cluster_size: 65536
Format specific information:
compat: 1.1
lazy refcounts: true
refcount bits: 16
corrupt: false
qcow2磁盘格式必须采用此方式进行扩展,不要采用dd方式,dd方式适用于raw格式。
(责任编辑:IT)
svn.qcow2为虚拟机镜像文件,大小为10G,现需要扩大磁盘空间为100G it@ubuntu:/storage/libvirt/images$ sudo qemu-img resize SVN.qcow2 +90G Image resized. 扩容完后查看svn.qcow2镜像大小为100G it@ubuntu:/storage/libvirt/images$ sudo qemu-img info SVN.qcow2 image: SVN.qcow2 file format: qcow2 virtual size: 100G (107374182400 bytes) disk size: 1.4G cluster_size: 65536 Format specific information: compat: 1.1 lazy refcounts: true refcount bits: 16 corrupt: false qcow2磁盘格式必须采用此方式进行扩展,不要采用dd方式,dd方式适用于raw格式。 (责任编辑:IT) |