This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
mac-ntfs [2019-09-27 18:57:15] mi |
mac-ntfs [2019-09-27 19:20:13] (current) mi |
||
|---|---|---|---|
| Line 2: | Line 2: | ||
| csrutil disable | csrutil disable | ||
| - | | + | |
| brew install ntfs-3g | brew install ntfs-3g | ||
| - | | + | |
| - | + | ||
| volname=Toshiba_1tb | volname=Toshiba_1tb | ||
| diskutil list | grep $volname | diskutil list | grep $volname | ||
| Line 14: | Line 15: | ||
| sudo mkdir /Volumes/$volname | sudo mkdir /Volumes/$volname | ||
| | | ||
| - | | + | |
| From https://github.com/osxfuse/osxfuse/wiki/NTFS-3G : | From https://github.com/osxfuse/osxfuse/wiki/NTFS-3G : | ||
| Line 34: | Line 36: | ||
| Maybe simplify with unmount/mount? See https://apple.stackexchange.com/a/338692/14586 | Maybe simplify with unmount/mount? See https://apple.stackexchange.com/a/338692/14586 | ||
| + | |||
| + | |||
| + | mount | ... get disk and volname | ||
| + | | ||
| + | disk=... | ||
| + | volname=... | ||
| + | sudo umount /Volumes/$volname | ||
| + | sudo mkdir /Volumes/$volname | ||
| + | sudo /usr/local/bin/ntfs-3g $disk /Volumes/$volname -olocal -oallow_other -ovolname=$volname | ||
| + | |||
| + | |||