Skip to content

Instantly share code, notes, and snippets.

@dibyanshusinha
Last active April 28, 2021 06:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dibyanshusinha/7eae33f7f0162659c4744668799c3ee7 to your computer and use it in GitHub Desktop.
Save dibyanshusinha/7eae33f7f0162659c4744668799c3ee7 to your computer and use it in GitHub Desktop.
i. Mount NTFS external drive on your Mac and find it's name
diskutil list
ii. Launch Terminal and enter the following command
sudo nano /etc/fstab
iii. Now add new code to nano and replace NAME with the NTFS drive’s name
LABEL=NAME none ntfs rw, auto, nobrowse
iv. Save changes and restart terminal. Unmount the connected NTFS drive and again plug it into your Mac to access the files on the drive with write operations.
Note: If your DRIVE_NAME is made up of two words separated with a space, for example, “NO NAME”, you have to change the space to “\040”. For example, “NO\040NAME”
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment