new public version of walrus utilities
[feisty_meow.git] / walrus / utilities / emulators / convert_vmware_to_virtualbox.txt
1
2 vmware's ovftool can turn vmware virtual machines into OVF format, which
3 with some massaging can be used to generate a virtualbox virtual machine.
4
5 this package is available from the vmware website and is named something
6 like:
7    VMware-ovftool-ver#-lin.x86_64.bundle
8 for the amd64 style linux installer.
9
10 ----
11
12 so far the technique for converting a vmware vm into a virtualbox vm using
13 the ovftool seems to be:
14
15 1) unpack the ovf file into a folder so we can edit the config for it.
16 2) throw away any manifest, since we're about to change things that it used
17 to know the signatures for (i.e., the ovf file).
18 3) remove all sections in the blah.ovf file that mention required:false.
19 these are not needed and will generally hose you up.
20 4) try to import the file as an appliance in virtualbox.  if it complains
21 about duplicate IDE devices, remove the cd drive.
22 if it still complains for devices on ide controllers, try moving the device
23 to the second ide controller.
24 if you have more than 2 disk devices, try to get just one per controller to
25 import, and then add the third and so forth devices after the fact.  go to
26 the virtualbox settings for the vm, and add them in the storage menu as hard
27 drives from existing vmdks or whatever.
28
29