Hey --
I need to mount a full hard drive image as if it's an actual hard drive. Is this possible?
Essentially I direct copied a full hard drive (such as /dev/hda) and want to mount its main /dev/hda1 partition, which is NTFS.
Is it possible?
I don't quite understand you. If you want to mount /dev/hda1, then what Joe said.
If you have a "dd" (.iso) image, you can mount it like this:
iago@Slayer:~$ sudo mount -o loop /mnt/vmware/iso/BroodWar.iso /mnt/tmp
iago@Slayer:~$ ls /mnt/tmp
autorun.inf* bw.ico* install.exe* isp/ setup.exe* smackw32.dll* support/
If it's ntfs, you might have to specify "-t ntfs" to the mount command. I don't have an iso of a NTFS drive, so I'm not sure if that works, but I don't see why not.