qemu-img
Comandos:
# qemu-img info Ubuntu-Server.qcow2
# qemu-img create novo-disco1 22G (default: raw)
# qemu-img create -f qcow2 novo-disco2 22G
# qemu-img convert -f vdi -O raw ../Ubuntu-Server.vdk Novo-Ubuntu.raw -m5 -p
# qemu-img resize -f raw novo-disco1 30G
Snapshots
# qemu-img snapshot -l disco1
# qemu-img snapshot -c SNAP1 disco1 (criar)
# qemu-img snapshot -a 123456789 disco1 (aplicar)
# qemu-img snapshot -d SNAP1 disco1 (deletar)