How to convert qcow / qcow2 (QEMU) server / disk image to RAW / img standard disk image?
How to convert qcow / qcow2 server / disk image to RAW / img standard disk image?
use this command
qemu-img convert -p -f qcow2 -O raw input.qcow2 output.img
Then use dd command for clone image to disk
Then do what you need ti partitions on your disk
Done!