80GBドライブのdd
バックアップに使用しました
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