Do you have an image backup of the disk, and want to access the partitions that were backed up. If so, and it is a bit-for-bit image copy, you can try mounting the partitions by attaching loop devices and mounting them.
Suppose the image is /mnt/disk/backup.img
The first partition probably starts on block 63. You might be able to verify this by examining the file with the "file" command. With the -fs option, the losetup command will find the first available loop device and print which one is used. I'll assume /dev/loop0 in this example:
sudo /sbin/losetup -fs /mnt/disk/backup.img -o $((63*512))
sudo mount -t ntfs /dev/loop0 /mnt/mountpoint
When the partition is mounted you can use `df' to determine its size. The next partition my start just above it.
Good Luck.
|