修改虚拟机镜像大小(qcow2/raw resize)

创建一个镜像文件,大小1G

taw

muxueqz@muxueqz /tmp $ qemu-img create -f raw t.raw 1G
Formatting 't.raw', fmt=raw size=
muxueqz@muxueqz /tmp $ qemu-img info t.raw
image: t.raw
file format: raw
virtual size: .0G ( bytes)
disk size: 1.0M

qcow2

muxueqz@muxueqz /tmp $ qemu-img create -f qcow2 t.qcow2 1G
Formatting 't.qcow2', fmt=qcow2 size= encryption=off cluster_size=

查看镜像文件实际占用空间

muxueqz@muxueqz /tmp $ ls -alh t.qcow2
-rw-r--r-- muxueqz muxueqz 193K 8月 : t.qcow2

查看qcow2信息

muxueqz@muxueqz /tmp $ qemu-img info t.qcow2
image: t.qcow2
file format: qcow2
virtual size: .0G ( bytes)
disk size: 136K
cluster_size:

加1G(resize +)

muxueqz@muxueqz /tmp $ qemu-img resize t.qcow2 +1G
Image resized.
05-11 22:17