Mount
無法掛載鏡像文件
我正在嘗試將
image_file_name.img
具有多個分區的目錄掛載到一個目錄,但沒有成功。分區詳情:
sfdisk -l -uS image_file_name.img Disk image_file_name.img: cannot get geometry Disk image_file_name.img: 11 cylinders, 255 heads, 63 sectors/track Warning: The partition table looks like it was made for C/H/S=*/4/63 (instead of 11/255/63). For this listing I'll assume that geometry. Units = sectors of 512 bytes, counting from 0 Device Boot Start End #sectors Id System image_file_name.img1 252 503 252 83 Linux image_file_name.img2 504 177407 176904 83 Linux image_file_name.img3 0 - 0 0 Empty image_file_name.img4 0 - 0 0 Empty
我正在執行以下
mount
命令:mount -o offset=$((252*512)) image_file_name.img /tmp/abc/
錯誤資訊:
mount: mounting /dev/loop0 on /tmp/abc/ failed: Invalid argument
對應的錯誤
dmesg
是[106359.764567] NTFS-fs error (device loop0): parse_options(): Unrecognized mount option offset.
這是在沒有工具(例如
kpartx
.任何幫助表示讚賞。
鑑於您在 中看到的錯誤
dmesg
,我會跳過offset
作為選項並改為mount
依賴。losetup
使用
util-linux
’slosetup
,您可以使用分區處理:losetup -P -f --show image_file_name.img
這將顯示所使用的循環設備的名稱;使用它來安裝,使用
mount /dev/loop0p1 /tmp/abc
但酌情替換
loop0
( notp1
)。可以使用p2
etc訪問其他分區。使用
busybox
’slosetup
,您需要直接指定偏移量:losetup -o $((252*512)) -f image_file_name.img
然後直接掛載循環設備,例如
mount /dev/loop0 /tmp/abc
如果您解除安裝文件系統,您還應該使用
losetup -d
.