Click here to Skip to main content
15,888,322 members
Articles / NTFS
Tip/Trick

Enabling NTFS Write on OS X

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
5 Mar 2015CPOL3 min read 30.7K   5   1
Enabling write to NTFS drive on Mac OS X.

Introduction

For many people who are accustomed to working on Windows PCs, the process of starting a new affair with a Mac OS X machine could prove to be a daunting one. Among other things, you wish to be able to continue using the same NTFS drive that you have been using on Windows on Mac. The good and bad news are Mac does support reading on NTFS by default but not writing.

Before you scramble to look for some third party tools that can enable NTFS write on Mac, wait a second and hear me out. The truth is the latest OS X does support NTFS write function but for some strange reason, it has not been enabled.

Doing is believing. Follow this tip and you will get to keep the beloved NTFS drive with your new Mac.

Prerequisite

Prerequisite? Do not be overly alarmed. Just make sure your NTFS drive has a single-word name, i.e., a name without any white space. To do this, right-click the drive icon on the Windows explorer > choose Properties > type a name in the text box (Figure 1).

Image 1
Figure 1: Setting Drive Name

Let's Do It...

Turn on your Mac, launch the Finder, and plug in your favourite NTFS drive which should appear as an icon on the desktop as well as on the Finder sidebar (Figure 2). I have named my NTFS drive as "NTFS_Drive". As of now, you can only read contents from this drive.

Image 2
Image 3
Figure 2: Mac's Desktop

Follow these steps to enable NTFS write on your drive.

  • Click the magnifying glass icon Image 4 on the upper-right corner of the menu bar, or press the Command key together with the Space bar on the keyboard, to launch the Spotlight Search bar as shown in Figure 3.

    Image 5
    Figure 3: Spotlight Search
  • Type "terminal" into the Spotlight Search bar (Figure 4) and hit Enter to locate and launch the Terminal program (Figure 5).

    Image 6
    Figure 4: Launch the Terminal program
    Image 7
    Figure 5: The Terminal
  • On the command prompt of the Terminal window (Figure 5), type the following one-line command (Figure 6) to launch a text editor program called "nano" and open a file called "fstab" as shown in Figure 8. Enter your password when prompted.

    sudo nano /etc/fstab
    Image 8
    Figure 6: Launching nano Text Editor

    *nano is a simple text editor for use on UNIX-based operating systems. You have just found out that your Mac is actually a UNIX-compliant machine as shown in Figure 7.

    Image 9
    Figure 7: UNIX 03 Certified
  • On the nano editor (Figure 8), type the following one-line command, substitute the "NTFS_Drive" label with your drive name, followed by a series of key strokes: Control O, Enter, and Control X, to save the file and close the nano editor. You have just created a UNIX script to enable read and write on the NTFS drive. Leave the Terminal open for now.

    LABEL=NTFS_Drive none ntfs rw,auto,nobrowse
    Image 10
    Figure 8: nano Text Editor
  • Eject your NTFS drive momentarily and plug it back. This time, the drive is neither shown on the desktop nor on the Finder sidebar. Fret not. Go back to the Terminal, on the command prompt, type the following command and hit Enter to open all available drives on the Finder. There you are, you should see your drive on the Finder as shown in Figure 9.

    open /Volumes
    Image 11
    Figure 9: NTFS Drive shown on the Finder
  • Drag and drop the NTFS_Drive icon to the Favorites section of the Finder sidebar as shown in Figure 10.

    Image 12
    Figure 10: Set up Drive on Sidebar

Congratulations! From now on, whenever you plug in the NTFS drive, it will appear on the Finder sidebar and you can read and write to it. Make sure you eject it properly as you have always done on Windows.

Going the Extra Mile...

If your Mac comes with a BOOTCAMP, you can enable it to write too. Just repeat the preceding steps, add a new line of command to the /etc/fstab file using BOOTCAMP as the LABEL. This shall be your homework. ;P

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Instructor / Trainer
Singapore Singapore
“Live as if you were to die tomorrow. Learn as if you were to live forever.”
― Mahatma Gandhi

子曰:"三人行,必有我师焉;择其善者而从之,其不善者而改之."

Comments and Discussions

 
QuestionDisk Not Showing up in /Volumes post script Pin
Member 1151757111-Mar-15 12:35
Member 1151757111-Mar-15 12:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.