4
3
Introduction
Using dd, one can easily backup the MBR and partition table of a disk. It's as easy as: dd if=/dev/disk2 of=~/Desktop/disk2_mbr bs=512 count=1
One can also backup whole partitions: dd if=/dev/disk2s1 of=~/Desktop/disk2_partition1
The other way around works too: with dd if=~/Desktop/disk2_mbr of=/dev/disk3
, one can replace another disk MBR and partition table (beware, data loss on disk3).
Then, to restore the first partition, one does: dd if=~/Desktop/disk2_partition1 of=/dev/disk3s1
(The point of dd
ing separately the MBR and the partition is that you don't need to dd
the whole disk; if your partition is small it will be much faster.)
Fine, all this dd magic works great for me. It makes it so easy to backup and restore from whatever system whatever hard drive.
Loop devices
Virtual system image creation works great too.
To create a new, empty media-image (30 GB), one can do: dd if=/dev/zero of=/my-media-image bs=1k count=30240000
Then, to assign the media to a loopback device: losetup /dev/loop0 /my-media-image
To create a filesystem on the media-image, one does: sudo mkfs -t ext3 -L MYVIRTUALFS -M /media/MYVIRTUALFS -I 128 -m 0 -b 4096 -O sparse_super -T largefile4 /dev/loop0
The media can then be mounted: sudo mkdir /media/MYVIRTUALFS && mount /dev/loop0 /media/MYVIRTUALFS
Problem
What I don't understand is that, if I unmount the disk (sudo umount /media/MYVIRTUALFS
), then delete the loopback device (sudo losetup -d /dev/loop0
), I would have thought that the original media (/my-media-image
) would be the exact same thing as a dd clone of /dev/loop0
Apparently it's not, because if I do dd if=/my-media-image of=/dev/disk4
(beware, data loss on disk4), disk4 is corrupted, and unmountable.
Why?
It makes it possible to create a virtual filesystem from a Linux macine, complete with partition table, data, etc... then just copy the media-image (/my-media-image
in my example) to another system (Macintosh in my case), where it's ready to deploy to real hard drives. It should even work on Windows, which has GUIs for dd
.
What am I missing?
Well, one red flag I see is that you're creating (in the loop devices section) a filesystem on the raw device/file, instead of creating a partition table and then putting the filesystem on the partitions of device/file. So, writing the image to a disk would mean that the whole disk is ext3 instead of having a partition table with an ext3 partition on it. I don't recall how to address the "partitions" of a loopback device. – killermist – 2013-03-28T00:56:20.633
Of course ! I have forgotten the
parted --script /dev/diskX mktable msdos mkpart primary 0% 100%
that I do usually. Let me try it out. Your comment might be my answer. – MichaelC – 2013-03-28T05:40:48.163All right, kollermist, you were correct, your comment is my answer. If running
parted
beforemakefs
, everything works as expected, /my-media-image can be restored to a real disk. So... how shall we do ? Can I accept your comment as the answer ? I could edit the question( great editing by the way tapped-out, thanks), but then the question would contain the answer – MichaelC – 2013-03-28T07:54:20.737Well, I figured out why it was failing, but in doing some more research, I'm not sure how to fix it. Some of the solutions I'm finding are quite dated, not maintained, and thus no longer functional (like one is for a Linux 2.4.20 and 2.4.21 prepatch 4 kernel if I'm reading right) http://www.unix.com/filesystems-disks-memory/24366-can-loopback-filesystem-partitioned.html http://wiki.edseek.com/guide:mount_loopback
– killermist – 2013-03-28T14:20:32.353