Is it possible to convert virtual machines to physical environments?

Yes, and no.

You can convert a VDI into a disk image with the VBoxManage tool. This command clones a registered virtual disk image to another image file. If you want to convert your virtual disk to another format, this is the official VirtualBox tool to use[*].

VBoxManage clonehd file.vdi output.img --format RAW
  • If you're using a dynamic VDI, and you have an older version of VirtualBox, clonehd may not operate properly. VBoxManage's internalcommands tool includes converttoraw, which can convert a dynamic VDI into a raw disk image (source)[+].

VBoxManage internalcommands converttoraw file.vdi output.img

But... that output IMG file isn't an ISO image, and the OS that's installed will not be configured to run from a bootable CD/DVD. You can "burn" (write) the IMG onto a hard drive, and it might boot on bare hardware (eg not in a virtual machine). But it might not, because the OS installed on that IMG is expecting to see the virtual hardware that VirtualBox provides, and you're booting it on real hardware that it isn't expecting.

Some versions of Windows do not handle this situation well; some Linux distributions do. It is sometimes possible to configure an OS (beforehand or afterwards) to migrate it from one environment to the other like this, but specific steps depend completely on the OS being migrated.


On Windows, you may need to specify the full path to the program:

"C:\Program Files\Sun\VirtualBox\VBoxManage.exe" [...]

Add C:\Program Files\Sun\VirtualBox to your PATH to use the short version.


[*] I'm assuming the "--format RAW" option will convert to a standard disk image, as if you'd used the dd command on a physical harddrive. But frankly, I haven't found any documentation that backs this up, so be aware this may not be correct.

[+] I've just tested both commands under VirtualBox 3.1.2. Both output files are identical according to md5sum, but I haven't fully tested the output files.

See also the "All about VDIs" tutorial at the VirtualBox forums.


If your vdi file contains partitions and you want to extract only one of them use the following:

First, as quack quixote said before, convert the vdi file to a raw image file:

# VBoxManage clonehd file.vdi file.raw --format RAW

Then set up a loop device for the image:

# loopdev=$(losetup --show -r -f file.raw)

Use kpartx to create devices for each partition in the raw file:

# apt-get install kpartx
# kpartx -a $loopdev

See which devices we have now. In this example, there's only one device as there's only one partition in the raw image:

# ls /dev/mapper/loop*
/dev/mapper/loop0p1

Now mount it to verify that all works properly:

# mkdir /mnt/part1
# mount /dev/mapper/loop0p1 /mnt/part1
# ls /mnt/part1
# umount /mnt/part1

Use dd to copy the partition contents to a another target partition:

# dd if=/dev/mapper/loop0p1 of=/dev/sda2 bs=1M

After you're done remove the device mappings again:

# kpartx -d file.raw

The answer is a definite yes, in case your host and guest system is Linux. It's done with the packages qemu and TKLPatch. You can use both VDI or VMDK files.

Read more:

  • Converting a virtual disk image to an ISO you can distribute

I tried the VBoxManage clonehd file.vdi output.img --format RAW from the accepted answer but without much success.

What worked for me with a Windows 8.1 virtual machine on a Windows 7 host is this:

  1. Make a Windows 8.1 machine in VirtualBox, install and use is as you would normally do with a VM.
  2. Convert the Virtual Box .vdi hard disk to Windows VHD with VBoxManage clonehd source.vdi target.vhd --format vhd
  3. Mount the VHD in the host Windows machine as a drive (you can mount a VHD in the disk manager in Computer Management.
  4. Clone the VHD (mounted as a drive) to a another new hard disk (a USB attached laptop HD in my case) DriveImage XML or a similar disk cloning tool. You now basically have cloned the virtual hard disk .vdi to bare metal.
  5. Install the new hard disk in a machine. (in my case swap the laptop HDD)
  6. Insert a Windows 8.1 install USB/CD, boot from it, choose Advanced Options and Automatic Repair. The automatic repair will make the new hard disk bootable.
  7. Boot from the new hard disk with the cloned Windows 8.1 and run Windows Update. This will download drivers for your computer's hardware which were not know when you ran Windows in VirtualBox. You will have to install missing drivers manually if any.
  8. Uninstall VirtualBox Guest Additions. Optionally install VirtualBox so that your bare metal Windows 8.1 can be a VirtualBox host.