Created
October 13, 2023 02:41
-
-
Save petergs/a0fa5b3cf75688579b914b1cf66f9813 to your computer and use it in GitHub Desktop.
Convert ova or vmdx to qcow2 using qemu-img
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| tar xvf example.ova | |
| qemu-img convert -O qcow2 example.vmdk example.qcow2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment