Skip to content

Instantly share code, notes, and snippets.

@rohan-molloy
Created September 17, 2020 10:15
Show Gist options
  • Save rohan-molloy/4c2e553b5c9943f02486344493680185 to your computer and use it in GitHub Desktop.
Save rohan-molloy/4c2e553b5c9943f02486344493680185 to your computer and use it in GitHub Desktop.
How to Convert Qemu images to VMWare

How to Convert Qemu images to VMWare

qemu-img convert \
         -f $INPUT_FORMAT \
         -O $OUTPUT_FORMAT \
          $INPUT_FILE $OUTPUT_FILE

For example qemu-img convert -f qcow2 -O vmdk esxi.qcow2 esxi.vmdk

`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment