나는 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/questions/2668/…