Is there any way to shrink qcow2 image without converting it raw?

Is there any way to shrink qcow2 image without converting it raw?

I cannot convert it to raw because I don't have disk space enough for raw image.


Noop conversion (qcow2-to-qcow2) removes sparse space:

qemu-img convert -O qcow2 source.qcow2 shrunk.qcow2

You can also try add compression (-c) to the output image:

qemu-img convert -c -O qcow2 source.qcow2 shrunk.qcow2

Before running above command be sure to shutdown the VM. After you are satisfied with the result, you can rename shrunk.qcow2 to original name your VM config wants.


Try virt-sparsify - it will zerofill the unused blocks in the image and then deduplicate the zeroes.


I use virt-sparsify:

virt-sparsify /path/to/source.qcow2 --compress /path/to/output.qcow2

I have been successfully using this procedure many times now. In short, first in the virtual guest fill all free space on all partitions with zeroes:

dd if=/dev/zero of=zerofile bs=1M

When done, empty the disk cache with sync, remove the zerofile(s) and shut down the guest. On the host side convert the image (raw to qcow2 in this example):

qemu-img convert -f raw -O qcow2 guest.img guest-copy.qcow2

This will automatically sparsify the image. Also remember to update the vm definition file if the image file suffix is changed.

A benefit of this method over virt-sparsify is that in this method the guest can be up while the zeros are written, and hence the downtime is shorter. If you can afford a longer downtime, then use virt-sparsify, as it takes care of the whole process with just one command, and also gives useful feedback during the process.