How to convert dd partition image to virtualbox virtual disk?

1

I created a backup from /dev/sda1 and /dev/sda4 partitions using dd. but i did not create a backup from /dev/sda2 and /dev/sda3. How can I convert these 2 backup files from /dev/sda1 and /dev/sda4 namely sda1.img and sda4.img to virtualbox disk and boot the system?

Rembo

Posted 2020-02-09T11:43:30.430

Reputation: 82

If you still have the source disk it may be easier to just create an VDI image from the partitions as described here.

– Robert – 2020-02-09T12:09:23.107

@Robert No I only have these 2 files – Rembo – 2020-02-09T12:26:01.550

@MichaelHarvey I am missing /dev/sda2 and /dev/sda3 – Rembo – 2020-02-09T12:32:42.237

@MichaelHarvey I dont have access to original disk to make a dd images of them. I have only /dev/sda1 which contain grub boot loader and /dev/sda4 which has home folder. sda2 and sda3 had just some files in them and 200GB of free space so i didn't use dd on them. – Rembo – 2020-02-09T13:03:11.157

@MichaelHarvey create a virtualbox image that can boot the system without having sda2 and sda3 – Rembo – 2020-02-09T13:09:02.750

1Have you successfully managed to mount the files to a directory on your system? (sudo mount -oloop <FN> <mountpoint>) if you can do this, you can set the mountpoint up as a virtualbox disc location – Mark – 2020-02-09T13:21:42.083

I dont need sda2 and sda3. that is why i didn't create a dd image from them. – Rembo – 2020-02-09T13:22:11.557

@Mark Yes I can mount it and see the files. but I want to boot the OS. – Rembo – 2020-02-10T13:01:47.997

@Rembo you need to have a look at the VBoxManage CLI command to create the disk. Something like: VBoxManage internalcommands createrawvmdk -filename "</path/to/file>.vmdk" -rawdisk <diskimg.img> https://mobile.serverwatch.com/server-tutorials/using-a-physical-hard-drive-with-a-virtualbox-vm.html

– Mark – 2020-02-10T14:27:11.973

Answers

0

1. Test the disc image mounts sucessfully

mount -t loop <disc image.img> <mountpoint>
cd <mountpoint>
ls # should show disc image contents as expected

2. Create a VMDK image referencing your disc image

VBoxManage internalcommands  createrawvmdk -filename <vmdk filename>.vmdk -rawdisk <disc image.img>

3. Create a VirtualBox machine

Select the VMDK file, created in the previous step, as your disc image.

Alternatives

Other virtualisation technologies are available. For example, you could also use qemu for this task: https://unix.stackexchange.com/questions/276480/booting-a-raw-disk-image-in-qemu

Mark

Posted 2020-02-09T11:43:30.430

Reputation: 133

It is converting but the system is not booting. I got this message: no bootable medium found. system halted! – Rembo – 2020-02-15T09:36:01.153

Depending on how your disc was set up originally (GPT or MBR), it is likely you are missing the boot data from /dev/sda. Make sure you keep backups of the partition before attempting repair http://www.aboutlinux.info/2005/11/how-to-repair-corrupt-mbr-and-boot.html?m=1

– Mark – 2020-02-15T11:50:37.193