美文网首页
mac 挂载ntfs移动硬盘

mac 挂载ntfs移动硬盘

作者: 大诗兄_zl | 来源:发表于2022-04-05 00:54 被阅读0次

    安装macfuse
    https://osxfuse.github.io/下载安装包,安装

    其实Homebrew自带的资源中是事先包含有ntfs-3g的,但是如果查看这个包的详情会发现brew已经把这个包禁用了,即使你已经事先安装了FUSE,Homebrew也无法检测到导致不能正常安装。

    依据流程中的介绍,需要另外添加FUSE推荐的包含了可以正常的ntfs-3g的源。

    brew tap gromgit/homebrew-fuse
    brew install gromgit/fuse/ntfs-3g-mac
    //或者直接写ntfs-3g-mac,注意名称上与自带的ntfs-3g区分
    brew install ntfs-3g-mac 作者:天空巨鼠 https://www.bilibili.com/read/cv13273551/ 出处:bilibili

    挂载脚本

    diskutil list 查看移动硬盘

    !/bin/bash

    echo "现有硬盘状态"
    while ["1" ="1"]
    do
     diskutil list
     read -p "请输入您的硬盘路径查看挂载点:" disk
     diskutil info $disk
     read -p "请输入您硬盘需要的挂载点:" m_node

    sudo ntfs-3g diskm_node -o local -o allow_other -o auto_xattr
     echo "挂载完成"

    read "是否退出" result
     case result in   y|Y) echo "your choose isresult";;
      break
      *) echo "任意键继续";;
    esac

    参考链接:https://www.bilibili.com/read/cv13273551/

    相关文章

      网友评论

          本文标题:mac 挂载ntfs移动硬盘

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