Skip to content

Instantly share code, notes, and snippets.

@IlyaKisil
Last active October 22, 2023 11:52
Show Gist options
  • Save IlyaKisil/8c74cf3dc54f723470c53f89d955b77c to your computer and use it in GitHub Desktop.
Save IlyaKisil/8c74cf3dc54f723470c53f89d955b77c to your computer and use it in GitHub Desktop.
Free NTFS read and write solutions

Free NTFS read and write solutions

Mac OS does not support writing to NTFS disk by default. Here is a simple work around to enable NTFS Read/Write support.

  1. Identify either <NAME> or <Universal_Unique_Identifier> of your external device, e.g. use Disk Utility.

  2. Type in terminal

    sudo nano /etc/fstab
    
  3. Add the line that does a trick:

    LABEL=<NAME> none ntfs rw,auto,nobrowse
    

    Alternatively

    UUID=<Universal_Unique_Identifier> none ntfs rw
    

The above steps need to be repeated all the time a new NTFS Drive is plugged into the Mac.

Reference

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment