Converting Virtualbox .vdi File To Parallels Workstation 9 For Mac

How to convert VirtualBox VDI to VMware VMDK disks

As user of a more recent version of Parallels Desktop, 12 at the time of writing, you might have heard about the famous “Parallels Image Tool”. This tool appears in various place on the web when it comes to the question on how to convert a Parallels virtual machine to something VirtualBox. Jan 17, 2017 First, we’ll create a clone of the virtual machine you want to convert to Parallels. To do this, open VirtualBox (on Windows, Linux, or Mac) and select the virtual machine to be cloned. Right-click on the virtual machine and select “Clone” from the popup menu. You can also press Ctrl+O. I can mount the VHD on my Mac using Parallels Mounter and see the contents, but I can't for the life of me see how to import the VHD to create a new Parallels VM from the VHD file. Parallels Transporter seems to want to create a VM from a live Windows box, which this isn't.

Feb 04, 2017 A quick how-to on converting VMs from Parallels on Mac, to VirtualBox on Windows. First stage in leaving Apple Mac and going back to Windows After an 18 month love/hate relationship with my Macbook Pro, I have decided its time to say goodbye to Apple and go. To migrate from VMware to VirtualBox, you first need to export the VM in an.ovf file. To do that open the VMware folder located inside the “Programs Files” folder in the C drive. Once you are there, open the “OVFTool” folder. Press “Shift + right-click,” and then select the “Open Command Prompt here” option. There are several ways to find your virtual machine on a Mac. In Parallels Desktop for Mac Standard and Pro Edition. A virtual machine can be located in Finder via Parallels Desktop Control Center. Click on the Parallels Desktop logo on Mac menu bar select Control Center.

Updated: December 8, 2010

And vice versa. This is definitely something you may want to do if you happen to be a virtualization fan and you're running both VirtualBox and one of VMware products. The reasons for conversion could be many, including the need to preserve a license or a machine state, run it in different software for compatibility testing and who knows what other reasons virtualization geeks may have.

Anyhow, today, I'm going to show you two definite and one maybe ways of how you can convert your virtual hard disks in .vdi format, used by VirtualBox to .vmdk, used by VMware, and the other way around. Furthermore, you will also learn how to convert to other formats, should you fancy them, including VHD, RAW, and others. We will use tools like the VBoxManage command line utility and QEMU, and take a look at VMware Converter, which we've seen in action before. All combined, this tutorial will significantly enhance the flexibility and portability of our setup.

Conversion method 1: VBoxManage

We have used VBoxManage to clone VirtualBox disks. The method here is identical, except that we will be converting to a different disk format. Let's see how this is done.

VBoxManage clonehd source.vdi target.vmdk --format VMDK

Where source is your VirtualBox disk, target is your VMware disk and --format VMDK is the desired output format. Similarly, you can go the other way around, using VMDK as your source and VDI as your target. Make sure to specify the right disk format. VBoxManage clonehd function supports other formats as well.

See example:

Again, using an external disk for storing virtual machines can reduce the performance penalty due to massive I/O. You can read more about optimizing virtual machine usage in my virtualization tips guide.

Let it run.

Once the procedure is successfully completed, create a new virtual machine in a VMware product and use the new disk as your storage.

You have quite a bit of leeway. I have converted a VirtualBox machine that was installed on a different machine, running a quad-core Intel processor, and deployed the VMware disk on a machine equipped with a dual-core Intel processor one generation behind. VirtualBox Guest Addons were installed in the guest operating system. Moreover, I let the VMware machine use PAE extension, whereas I disabled this feature in VirtualBox. Furthermore, I changed the disk controller from IDE to SCSI in the VMware machine settings and it still worked fairly well, with only a minor inconvenience of installing new hardware drivers on the machine startup. So you have a large margin for error and can be flexible about your conversions.

Converting virtualbox .vdi file to parallels workstation 9 for mac pro

Converting Virtualbox .vdi File To Parallels Workstation 9 For Mac 7

As to which machines and software I used ..

The so-called source host was my newest HP Pavilion dv6-2130ej laptop with the i5 processor, running Ubuntu 10.04. The target host was my somewhat older but still new and powerful LG RD510 laptop, with the Core 2 Duo P7450 processor, also running Ubuntu 10.04 and equipped with both VirtualBox and the spectacular VMware Workstation.

P.S., on a side note, the Workstation installed flawlessly on Lucid Lynx, even more smoothly than it did on openSUSE 11.2. Compared to the fairly complex and difficult VMware Server setup on Ubuntu, this is an extremely impressive result.

The Workstation (and possibly other products) may ask you to convert the virtual machine to the latest version of the VMware series. You can accept this, but you should not if you intend to use it with older products.

Let us see what gives.

Notice the same serial number. Likewise, pay attention to the PAE featured used in the converted copy of the virtual machine.

Please note that if your virtual machines are running Windows, you will need to make sure you have enough licenses to run the several instances of the operating system in parallel. You are probably good for the few seconds of testing, but each virtual machine requires its own license. You may also need to reactive your installation.

Vice versa

Oh, yes, the other direction is fairly simple.

VBoxManage clonehd source.vmdk target.vdi --format VDI

And that's it.

Conversion method 2: QEMU

QEMU is an old friend, too. We've seen in my very first article on virtualization, when I was still young and naive. Strike that, I was never young. We have also used QEMU to convert VMDK disks to RAW format, so we could use them with Amazon EC2 machines. The concept is exactly the same here. And it works both ways.

VDI to VMDK

It's extremely simple.

qemu-img convert something.vdi -O vmdk something.vmdk

VMDK to VDI

You have two ways to do this. Use a one-step qemu-img-vdi tool or go about using classic qemu-img, which will require an intermediate conversion to raw format.

qemu-img-vdi

Pretty much like all other conversions we've seen before:

qemu-img-vdi convert something.vmdk -O vdi something.vdi

qemu-img

Now, using qemu-img, you have two steps, first convert to RAW format, then use VBoxManage to convert to VDI. Older versions of VirtualBox used the tool called vditool, so you may find online resources that reference this utility.

Step 1: Convert VMDK to RAW (you don't need any file extension, btw)

qemu-img convert something.vmdk something.raw

Step 2: Convert RAW to VDI

VBoxManage convertdd something.raw something.vdi

Note: If you're using sparse disks, as we've seen in other tutorials, the raw file will them inflated to their intended max. size. A 20GB disk, even though if only 2.4GB are used, will become a 20GB byte-by-byte file on your hard disk.

That would be all. Next, please!

Conversion method 3 (maybe): VMware Converter

To the best of my knowledge, and I've already stated in the past, it does not seem that VMware Converter supports VirtualBox. Therefore, using VMware Converter may or may not work.

Now, you can try a different method. Export your VirtualBox machine as an appliance, which will save it in the .ovf format, including a ready VMDK disk. Then, convert the appliance using VMware Converter. There's no guarantee, though. I have read a few forum threads here and there where various users claimed to have done it successfully, so it indeed may be possible.

I have not managed this yet, so keep this in mind!

Another options is to use other tools to convert to VMDK, then use VMware Converter for additional conversions, including ESXi disks. Therefore, even if you cannot use the Converter directly, you can later benefit by using it.

General tips

Although you can be pretty flexible with your conversions, you should take into account that VMware and VirtualBox support things a little differently. So it is possible that some conversion may fail if you have special stuff enabled, like multi-processors, video acceleration and other cool things.

Converting Virtualbox .vdi File To Parallels Workstation 9 For Mac

Therefore, if your conversions are not successful, consider doing the following:

  • If your disks are split into multiple files, merge them into one.
  • Disable any video acceleration or special features.
  • Delete snapshots.
  • Uninstall VMware Tools and/or Guest Additions.
  • Try to match the virtual machine settings between the source and destination.

This is more important for Windows than Linux. Once again, I must remind you that you could have licensing issues if you're using proprietary software. Make sure that you do not invalidate your products by the virtual machine migration.

More reading

For a whole library full of tutorials, guides, howtos, tips and tricks on virtualization, feel free to click on any of the links below, preferably all.

Conclusion

Converting Virtualbox .vdi File To Parallels Workstation 9 For Mac 64-bit

There you go, another fine, complete tutorial baked. Today, you have learned another useful lesson, which gives you yet more freedom and flexibility when working with virtualization products. You can now convert your virtual machines back and forth between products and migrate them between machines as you see fit. You have no less than two proven methods and maybe a third to let you do the conversions. Best yet, you are not limited to just VDI and VMDK formats. I hope you liked it, enjoy!

P.S. Teaser image at the top of the page taken from Wikipedia, in public domain.

Dedoimedo out.

Cheers.

Home > Search converters: vhd to vdi

Conversion of vhd file format to vdi file format beta

Search for vhd to vdi converter or software able to handle these file types.

Remove quick access from google drive. Bookmark & share this page with others:

Convert Virtual Hard Disk file to VirtualBox disk image.

Converting Virtualbox .vdi File To Parallels Workstation 9 For Mac Download

Converting Virtualbox .vdi File To Parallels Workstation 9 For Mac

We have found 6 software records in our database eligible for .vhd to .vdi file format conversion.

Generally speaking, various virtualization software can usually convert different virtual disk / machines between each other. So it should not be hard to convert VHD format to VDI with programs like VirtualBox or Parallels Desktop as these should support vhd to vdi conversion just fine.

Microsoft Windows software - convert vhd to vdi on Windows

Converting Virtualbox .vdi File To Parallels Workstation 9 For Mac X

VirtualBox

A multi-platform x86 virtualization software package

File extension

Convert

Open

Save

Edit

Create

Import

Export

Extract

Convert from vhd file

Yes, VirtualBox supports vhd file conversion as a source file type.YesNoNoYesNoNoNo

to vdi file

Yes, VirtualBox supports vdi file conversion as a target file type.YesNoNoYesNoNoNo

The tables with software actions are a good pointer for what a certain program does with various file types and often may give users a good hint how to perform certain file conversion, for example the above-mentioned vhd to vdi. However, it is not perfect and sometimes can show results which are not really usable because of how certain programs work with files and the possible conversion is thus actually not possible at all.

Parallels Workstation

A virtualizing solution for small businesses and professionals

File extension

Convert

Open

Save

Edit

Create

Import

Export

Extract

YesYesNoNoNoNoNoNo
YesYesNoNoNoNoNoNo

Apple macOS / Mac OS X software - convert vhd to vdi on OS X

VirtualBox for Mac

Free open-source x86 virtualization software package for Mac

File extension

Convert

Open

Save

Edit

Create

Import

Export

Extract

YesYesNoNoYesNoNoNo
YesYesNoNoYesNoNoNo
Parallels Desktop for Mac

Mac version of the popular virtualization software

File extension

Convert

Open

Save

Edit

Create

Import

Export

Extract

YesYesNoNoNoNoNoNo
YesYesNoNoNoNoNoNo

Linux/Unix software - convert vhd to vdi on Linux

VirtualBox for Linux

Free system virtualization platform for Linux operating system developed by Oracle

File extension

Convert

Open

Save

Edit

Create

Import

Export

Extract

YesYesNoNoYesNoNoNo
YesYesNoNoYesNoNoNo
Parallels Workstation for Linux

Virtualizing software for Linux operating system

File extension

Convert

Mac OS X Mavericks 10.9.5 is a powerful operating system with a variety of enhancements and a variety of new features that delivers more stability and ultimate level of performance. Quicken for mac os x 10.9.55 update. The users can completely utilize the system resources and process the information with ultimate performance.This powerful OS is a reliable UNIX platform with over 200 new features including maps, iBooks and many others. It provides a variety of settings and numerous levels of settings and customizations to fulfill all the user needs. Mac OS X Mavericks 10.9.5 ReviewA powerful operating system, Mac OS X Mavericks 10.9.5 provides a variety of new features and numerous customizations.

Open

Save

Edit

Create

Import

Export

Extract

YesYesNoNoNoNoNoNo
YesYesNoNoNoNoNoNo

Additional links: Open vhd file, Open vdi file

Converting Virtualbox .vdi File To Parallels Workstation 9 For Mac Free

VHD

A vhd file extension is commonly used for virtual hard drives for Microsoft Virtual Server. A vhd file contains disk image used in virtual machines. Several programs can work with .vhd files including Microsoft Virtual PC, or ISOBuster.

VDI

Files with vdi extension are disk images in VirtualBox Virtual Disk Image format. VirtualBox is free virtualization software for Windows, Mac and Unix based operating systems. Virtual Disk Image is proprietary VirtualBox container file format used to emulate physical disk that store virtualized operating system and virtualized data.

Back to conversion search