Skip to content

Instantly share code, notes, and snippets.

@hanksudo
Created June 17, 2014 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hanksudo/73b116e8d9e4c8862444 to your computer and use it in GitHub Desktop.
Save hanksudo/73b116e8d9e4c8862444 to your computer and use it in GitHub Desktop.
Mount NTFS USB to read / write

Step 1

$ mount
/dev/disk0s2 on / (hfs, local, journaled)
devfs on /dev (devfs, local, nobrowse)
map -hosts on /net (autofs, nosuid, automounted, nobrowse)
map auto_home on /home (autofs, automounted, nobrowse)
localhost:/x7suibv3e_VVTtDMdR30qy on /Volumes/MobileBackups (mtmfs, nosuid, read-only, nobrowse)
/dev/disk1s1 on /Volumes/Untitled (ntfs, local, nodev, nosuid, read-only, noowners)

Step 2

$ sudo umount /Volumes/Untitled
$ mkdir ~/Desktop/USB
$ sudo mount -t ntfs -o rw,auto,nobrowse /dev/disk1s1 ~/Desktop/USB
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment