美文网首页
mac os 挂载 读linux 文件系统 xfs ext4

mac os 挂载 读linux 文件系统 xfs ext4

作者: Joncc | 来源:发表于2020-04-11 17:18 被阅读0次

ext4

安装osxfuse

brew cask install osxfuse
  1. 安装fuse-ext2
    https://github.com/alperakcan/fuse-ext2

报这个错误的原因是xcode-select不在默认的路径
xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance
设置xcode-select到指定位置

More Downloads for Apple Developers
https://developer.apple.com/download/more/

Xcode 9.4.1
https://download.developer.apple.com/Developer_Tools/Xcode_9.4.1/Xcode_9.4.1.xip


————————————————
版权声明:本文为CSDN博主「Hanrovey」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/Hanrovey/java/article/details/82773011

sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer/
验证
xcode-select --print-path

即可以用macOS自带的mount命令来加载ext2格式的分区镜像文件。

xfs: fuse-xfs

下载dmg
https://sourceforge.net/projects/fusexfs/

image.png

挂载

 fuse-xfs /dev/<您的驱动器名称> --  /Volumes/<您的挂载目录>

sudo fuse-xfs /dev/disk3s1 -- /mnt/my_xfs_hd -o

相关文章

网友评论

      本文标题:mac os 挂载 读linux 文件系统 xfs ext4

      本文链接:https://www.haomeiwen.com/subject/dkkumhtx.html