How to convert RAW image to VDI and otherwise

VirtualBox command-line interface (VBoxManage) provides an easy way to convert raw disk image to the VDI/VMDK format and otherwise.

Let's assume that we have raw image of the sdb device:

$ sudo dd if=/dev/sdb of=./sdb.raw

To use it with VirtualBox we need to convert it to the VDI format:

$ VBoxManage convertdd sdb.raw sdb.vdi --format VDI

To use it with VMware we need to convert it to the VMDK format:

$ VBoxManage convertdd sdb.raw sdb.vmdk --format VMDK

Convert between VDI/VMDK formats:

$ VBoxManage clonehd sdb.vdi sdb.vmdk --format VMDK
$ VBoxManage clonehd sdb.vmdk sdb.vdi --format VDI

Convert to the RAW image:

$ VBoxManage clonehd sdb.vdi sdb.raw --format RAW

Alternative solution to get back raw image after applying modifications is to use qemu-img command from qemu package:

$ qemu-img convert -f vmdk sdb.vmdk -O raw sdb.raw

Now we can write image to the device:

$ sudo dd if=./sdb.raw of=/dev/sdb
0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
CONFIGURE FOR ASM Linux
Viewed 5613 times since Sat, Jun 2, 2018
OpenSSL – sprawdzanie czy klucz pasuje do certyfikatu
Viewed 2754 times since Thu, May 24, 2018
RHEL: Multipathing basics
Viewed 9280 times since Sat, Jun 2, 2018
Nagrywanie sesji SSH do pliku
Viewed 3012 times since Thu, May 24, 2018
Using Kerberos security with Server for NFS
Viewed 9821 times since Wed, Jun 27, 2018
HowTo: Retrieve Email from a POP3 Server using the Command Line
Viewed 11332 times since Mon, Feb 18, 2019
Script to Offline and Remove A Disk In Linux
Viewed 2015 times since Mon, Jan 28, 2019
RHEL: Enabling standard ftp/telnet
Viewed 3554 times since Sun, May 27, 2018
stunnel basics and pki standards
Viewed 9529 times since Fri, Sep 28, 2018
How to use yum-cron to automatically update RHEL/CentOS Linux
Viewed 2723 times since Wed, Oct 17, 2018