-
Notifications
You must be signed in to change notification settings - Fork 80
Convert OVA to KVM on Mac OS
jackyalbo edited this page Jun 25, 2017
·
4 revisions
- Virtual Box
- qemu - brew install qemu
- NooBaa release's OVA
- deploy the OVA to Virtual Box, don't start the machine
- Check the VMDK path in the Machine -> Settings -> Storage. Select the VMDK location.****
- run the following command qemu-img convert -O qcow2 "vmdk location/NooBaa-1.4.1-disk1.vmdk" "/NooBaa-1.4.1-disk1.qcow2"
another option (Jacky 25/6/2017)
- Don't deploy the OVA - just extract using tar -xvf NooBaa-build.ova
- do step 3 with the vmdk file:
- qemu-img convert -O qcow2 "vmdk location/NooBaa-build-disk1.vmdk" "target location/NooBaa-build-disk1.qcow2"
Done!