Skip to content

Instantly share code, notes, and snippets.

@Tittoh
Last active December 10, 2023 14:48
Show Gist options
  • Select an option

  • Save Tittoh/a479ef4bef90fda8b78346b93a6d1dd4 to your computer and use it in GitHub Desktop.

Select an option

Save Tittoh/a479ef4bef90fda8b78346b93a6d1dd4 to your computer and use it in GitHub Desktop.
macFuse

MacFuse Setup

Write NTFS on Mac

Install

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

Unmount if necessary

sudo diskutil unmount /dev/disk1s1

Mount with ntfs-3g

sudo mkdir /Volumes/NTFS && sudo /usr/local/bin/ntfs-3g /dev/disk1s1 /Volumes/NTFS -o local -o allow_other -o auto_xattr -o auto_cache

Alternatively...

sudo /usr/local/sbin/mount_ntfs /dev/disk1s1 /Volumes/NTFS

Unmount

sudo umount -f /Volumes/NTFS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment