As per the software description : "*qemu-img allows you to create, convert and modify images offline. It can handle all image formats supported by QEMU.*"
Expanding a new disk implies creating a new blank image of the desired size and "copy" the existing disk into this new bigger image using virt-resize.
## Usage
* Create the new disk phyllome_but_bigger.img of the desired size. In this case, it is 15 GiB
```
$ qemu-img create -f raw /var/lib/libvirt/images/phyllome_but_bigger.img 15G
```
* Expand the root partition on the disk.
> This command only works if the root partition is located on vda3 and if the disk image filesystem uses EXT4.