Last active
March 30, 2025 14:42
-
-
Save exAspArk/ee0211e29f0593ed21f5612fad934580 to your computer and use it in GitHub Desktop.
Mount writable NTFS disk with osxfuse + ntfs-3g
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# brew install ntfs-3g | |
sudo mkdir /Volumes/NTFS | |
diskutil list | |
sudo ntfs-3g /dev/disk2s1 /Volumes/NTFS -olocal -oallow_other | |
rsync -v --progress ~/Downloads/something /Volumes/NTFS/ | |
sudo umount /Volumes/NTFS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment