我从嵌入式 Linux 设备收到了此磁盘映像。我需要挂载该映像并检查其中的一些文件。这是我迄今为止尝试过的方法:
> hdiutil attach -nomount ~/Downloads/dskimg.img
/dev/disk3 FDisk_partition_scheme
/dev/disk3s1 Windows_FAT_32
/dev/disk3s2 Linux
然后尝试将其挂载到文件夹:
> diskutil mount -mountPoint ~/mount /dev/disk3s2
Volume on disk3s2 failed to mount
If you think the volume is supported but damaged, try the "readOnly" option
我将映像写入 SD 卡,但安装后看不到任何文件系统或任何东西。我已设置 macFUSE 以便能够查看 Linux 文件系统。
答案1
我刚刚才意识到我必须使用 ext4fuse具体来说安装。
ext4fuse /dev/disk3s2 ~/tmp/MY_DISK_PARTITION -o allow_other