VirtualBox Festplatte vdi zu VMWare Festplatte konvertieren

In einem vorherigen Post habe ich geschrieben, das ich jetzt zu VMWare Player wechsele, weil VirtualBox einfach nicht mit USB und Windows 7 x64 umgehen kann :(. Nun müssen natürlich die Festplatten, die ich in VirtualBox (*.vdi) angelegt habe, zu VMWare Festplatten (*.vmdk) konvertiert werde. Da habe ich hier eine genial einfache Möglichkeit gefunden.

Da stehen auch noch andere Methoden, die erste ist aber die Wahl, da alles bereits installiert ist 🙂

Man cloned die Festplatte gleich in das richtige Format (vdi => vmdk)

C:\Program Files\Oracle\VirtualBox\VBoxManage.exe clonehd "c:\Users\chuenniger\VirtualBox VMs\MyServer\VMDiskData.vdi" "c:\Users\chuenniger\Documents\Virtual Machines\Ubuntu\VMDiskData.vmdk" --format VMDK
VDI to VMDK
VDI to VMDK

Kurzfassung

VBoxManage.exe clonehd source.vdi destination.vmdk --format VMDK

Je nach Größe dauert es etwas, aber dann ist es in dem gewünschten Zielformat.

Und siehe da, die virtuelle Maschine fährt tatsächlich hoch 🙂

Converted image starts
Converted image starts

Related Posts:

7 thoughts on “VirtualBox Festplatte vdi zu VMWare Festplatte konvertieren”

  1. Muss mann die Konvertierung in der Eingabe Auforderung machen so wie es hier sehe.

  2. Hallo Patrick,

    ja, so wie es im Artikel beschrieben ist

    C:\Program Files\Oracle\VirtualBox\VBoxManage.exe clonehd “c:\Users\chuenniger\VirtualBox VMs\MyServer\VMDiskData.vdi” “c:\Users\chuenniger\Documents\Virtual Machines\Ubuntu\VMDiskData.vmdk” –format VMDK

  3. I get to step 2. But this fails. I tried copying the orgainil xp.vdi to OLDxp.vdi but the UUID is registered somewhere.ERROR: Cannot register the hard disk /Users/eamon/Desktop/Eamon/virtual box/OLDxp.vdi’ with UUID {447a6705-e94f-44da-8acb-2ab56e3096a9} because a hard disk /Users/eamon/Desktop/Eamon/virtual box/xp.vdi’ with UUID {447a6705-e94f-44da-8acb-2ab56e3096a9} already exists in the media registry ( /Users/eamon/Library/VirtualBox/VirtualBox.xml’)Details: code NS_ERROR_INVALID_ARG (0 80070057), component VirtualBox, interface IVirtualBox, callee nsISupportsContext: OpenHardDisk(Bstr(szFilenameAbs), AccessMode_ReadWrite, false, Bstr( ), false, Bstr( ), srcDisk.asOutParam()) at line 633 of file VBoxManageDisk.cppGD Star Ratingloading…

  4. Hi Yeisire,

    how did you copy the hard disk? I dont have a 2nd step in this post.

    I think, you cannot copy the hard disk. You must create an new one, with the following command:

    C:\Program Files\Oracle\VirtualBox\VBoxManage.exe clonehd “c:\Users\chuenniger\VirtualBox VMs\MyServer\VMDiskData.vdi” “c:\Users\chuenniger\Documents\Virtual Machines\Ubuntu\VMDiskData.vmdk” –format VMDK

    Search VBoxManage(.exe) on your MAC and replace the path with your path.

    Regards,
    Christian

Comments are closed.