My laptop's hard drive has failed. Luckily, before it did, I created a bit-for-bit copy of it using the following command:
dd if=/dev/hda conv=sync,noerror of=/mnt/sda1/rescue.raw
Unfortunately, I can't mount the image since I can't define the filesystem type. The disc has four partitions, and I need to get to the 2nd and 3rd. The first is a recovery partition that shipped with the computer, and the 4th is swap space. The 2nd (ntfs) and 3rd (ext3) contain important data that I'd rather not lose. All of them are primary.
I've already tried reading the manual, Googleing and searching the forums. I'm not sure if this is even possible at this point without copying it back to a physical disc, but I need to make sure that the copy went through properly before I swap out the hard drive. Could anyone tell me how I'd be able to mount the image?
dd if=/dev/hda conv=sync,noerror of=/mnt/sda1/rescue.raw
Unfortunately, I can't mount the image since I can't define the filesystem type. The disc has four partitions, and I need to get to the 2nd and 3rd. The first is a recovery partition that shipped with the computer, and the 4th is swap space. The 2nd (ntfs) and 3rd (ext3) contain important data that I'd rather not lose. All of them are primary.
I've already tried reading the manual, Googleing and searching the forums. I'm not sure if this is even possible at this point without copying it back to a physical disc, but I need to make sure that the copy went through properly before I swap out the hard drive. Could anyone tell me how I'd be able to mount the image?