我曾经dd
备份80GB的驱动器
dd if=/dev/sdb of=~/sdb.img
现在,我需要访问该驱动器上的一些文件,但是我不想将“ .img”复制回该驱动器上。
mount ~/sdb.img /mnt/sdb
也不起作用。它返回:
mount: you must specify the filesystem type
我试图用找到文件系统类型 file -s
fox@shoebox $ file -s sdb.img
sdb.img: x86 boot sector; partition 1: ID=0x12, starthead 1, startsector 63, 10233342 sectors; partition 2: ID=0xc, active, starthead 0, startsector 10233405, 72517410 sectors; partition 3: ID=0xc, starthead 0, startsector 82750815, 73545570 sectors, code offset 0xc0
可以挂载sdb.img
,还是必须使用它dd
来还原驱动器?
file -l sdb.img
是在问题的答案中张贴:unix.stackexchange.com/questions/2668/…–