Skip to content

Instantly share code, notes, and snippets.

@samundra
Created January 20, 2025 05:00
Show Gist options
  • Save samundra/ec97d4f751da36801e21b1faa688f7ce to your computer and use it in GitHub Desktop.
Save samundra/ec97d4f751da36801e21b1faa688f7ce to your computer and use it in GitHub Desktop.
Mount NTFS on macOS
#!/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