Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NTFS in macOS #206

Open
soapgu opened this issue Jun 27, 2023 · 0 comments
Open

NTFS in macOS #206

soapgu opened this issue Jun 27, 2023 · 0 comments
Labels
IDE Good for newcomers

Comments

@soapgu
Copy link
Owner

soapgu commented Jun 27, 2023

  • 起因

移动硬盘是存储资料的神器,现在普遍都可以扩大到了2T。MacBook的性能确实优秀,但是这硬盘容量却只有区区500G,实在是“小气”得过分了。一般有什么文件只要不是经常使用,就马上转移出去。
但是移动硬盘突然就只有“只读”模式了。
图片
这移动硬盘一下子就变成摆设一般,比“砖头”强一点点!
一定要想办法。

  • 无从考究的写入失败原因

我平时用的移动硬盘驱动是NTFS for Mac。用的是希捷网站上推荐的软件,是个免费版。以前用起来是正常的,突然某次macOS升级后不能用了,退回去是不太可能了。网上实验了多种方法也没有用,其他软件还是要收费了。
既想要用移动硬盘又不想花钱怎么破?
翻来覆去也只有开源软件了!

  • 解决之路

图片
  1. 安装macFuse

macFuse是NTFS-3G的基础组件。
这里我用的官网的安装包安装的,也可以用brew安装。看个人喜好。
图片

  1. 安装 NTFS-3G
    好像是要用brew安装,但是安装不上去。仔细一看是系统不支持,只支持Linux。

后来查了资料才知道,针对mac的ntfs-3g没有收录在官方库里面,需要加载私库才能安装。

brew tap gromgit/homebrew-fuse
brew install ntfs-3g-mac

这样就成功了

  1. 加载硬盘
    首先需要找到盘符
diskutil list

然后通过ntfs-3g命令行加载
主要是命令研究得不熟,所以加载出来只有文件夹!

好在我还有ChartGPT
图片

说得不全对,用nobrowse参数就是坑爹,没发图形化操作了。
运行下面命令,移动硬盘终于正常加载了!

sudo mount_ntfs -o rw /dev/disk4s1 /Volumes/NTFS
图片
  • 一些参考资料

有一定参考价值,但是不全对,需要筛选

https://toolbox.easeus.com/ntfs-mac-tips/ntfs-3g-macos.html

https://medium.com/macoclock/enabling-ntfs-write-in-macos-10-15-catalina-the-open-source-way-a5fd0d1cb32e

https://shivang-iitk.medium.com/ntfs-write-in-macos-bigsur-using-osxfuse-and-ntfs-3g-3f3253ba2365

@soapgu soapgu added the IDE Good for newcomers label Jun 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
IDE Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant