Ho usato dd
per il backup di un disco da 80 GB
dd if=/dev/sdb of=~/sdb.img
Ora ho bisogno di accedere ad alcuni file su quell'unità, ma non voglio copiare ".img" nuovamente sull'unità.
mount ~/sdb.img /mnt/sdb
non funziona neanche. Restituisce:
mount: you must specify the filesystem type
Ho provato a trovare il tipo di filesystem con 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
È possibile montare sdb.img
o devo usare dd
per ripristinare l'unità?
file -l sdb.img
come pubblicato nella risposta alla tua domanda: unix.stackexchange.com/questions/2668/…