Knowledge Base
How do I convert a .vmdk file to a .iso file?
How to convert a VM into ISO file via QEMU-IMG command
1. Install and put both dd and qemu-img program in the system path. Open a Command Prompt window in the folder where the source VMDK file is, and run the following commands to convert the source VMDK file to raw image.
qemu-img convert -f vmdk filename.vmdk filename.raw
2. And then run the following command to convert the raw image to ISO file.
dd if=filename.raw of=filename.iso