I'm trying to mount an img file but I can't seem to do it successfully.
When I fun the file command on that .img it returns the following:
$ file file.img
file.img: data
When I try to use mount on it I get the following:
$ sudo mount file.img test/
mount: you must specify the filesystem type
When I try to tell to use "-t auto" I get the same output:
$ sudo mount -t auto file.img test
mount: you must specify the filesystem type
I don't really know how to extract the files from this img.
Edit 1:
Jofel the following is outputted
$ xxd -a N150R-V1.0.0.5_1.0.1.img | head
0000000: 6465 7669 6365 3a4e 3135 3052 0a76 6572 device:N150R.ver
0000010: 7369 6f6e 3a56 312e 302e 302e 355f 312e sion:V1.0.0.5_1.
0000020: 302e 310a 7265 6769 6f6e 3a0a 0000 0000 0.1.region:.....
0000030: 0000 0000 0000 0000 0000 0000 0000 0000 ................
*
0000070: 0000 0000 0000 0000 0000 0000 0000 1232 ...............2
0000080: 3036 3132 d9cf 3fc1 5297 2c87 0033 eed0 0612..?.R.,..3..
0000090: 9f05 0000 9f05 0000 9b63 9e62 0505 0700 .........c.b....
00000a0: 4e31 3530 522d 5631 2e30 2e30 2e35 5f31 N150R-V1.0.0.5_1
00000b0: 2e30 2e31 0000 0000 0000 0000 0000 0000 .0.1............
mount -o loop file.img test
do the job? – Arkadiusz Drabczyk Nov 25 '14 at 22:51xxd -a file.img | head
, please? – jofel Nov 25 '14 at 23:07Thanks :)
– RNikoopour Nov 26 '14 at 00:14