我已在硬碟上執行 ddrescue,並將所有資料(2 個分割區)轉移到另一個名為part1.img 和part2.img 的磁碟。如何繼續讀取(列出)part2.img 中的檔案?我使用的是 Fedora 14,32 位
答案1
掛載分割區映像
運行時root
:
mkdir $mount_path
mount -t $filesystem_type -o loop $image_file $mount_path
在你的情況下,這很可能是
mkdir /mnt/part1
mount -t ext4 -o loop part1.img /mnt/part1
正如 Anthon 建議的那樣,您可能需要添加ro
掛載選項以防止任何更改。