While Trying to mount a disk image in Raw(dd) format using the following command
mount nps-2010-emails.dd /media/manu/
I get the following error message
mount: you must specify the filesystem type
I know that using -t we can specify the file system but what is the terminology for a RAW (dd) file, which can pe passed as an argument to the mount command. If my method to mount this file system is wrong please help me out in doing the same.
On typing the command file -s nps-2010-emails.dd
The output is as follows:
nps-2010-emails.dd: x86 boot sector; partition 1: ID=0xb, starthead 254, startsector 1, 20479 sectors, extended partition table (last)\011, code offset 0x0
mount: you must specify the filesystem type
,still could you please explain what it is that you have suggested me to do.
– spaceman_spiff Jun 14 '14 at 07:48x86 boot sector
. this indicates that he has a full disk image, which will requirelosetup
to access... which makes it a dupe. – strugee Jun 14 '14 at 09:01