QEMU
Converting An Image
You can convert an image to other formats using qemu-img convert.
Since I use QEMU as my main virtualization software, I’ll convert them to .qcow2 image.
.ova Image
Unpack the .ova image format.
That should give extract two files: .vmdk and .ovf.
.vmdk needs to be converted into .qcow2 image format.
| There are more necessary steps involved to make the images work like networking. |
Explanations for the parameters.
- -f
-
first image format
- -O
-
output image format
See man qemu-img for more info.