Created
January 20, 2025 05:00
-
-
Save samundra/ec97d4f751da36801e21b1faa688f7ce to your computer and use it in GitHub Desktop.
Mount NTFS on macOS
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
#!/bin/bash | |
set -x | |
sudo mkdir /Volumes/NTFS | |
sudo umount /dev/disk2s1 2>/dev/null | |
diskutil unmount /dev/disk2s1 2>/dev/null | |
sudo /usr/local/bin/ntfs-3g /dev/disk2s1 /Volumes/NTFS -olocal -oallow_other -oauto_xattr & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment