NTFS writing is not officially supported in Mac OS X
Problem
By default, Mac OS X can not write to NTFS formatted drives (see here for more information) without a third party driver.
Solution
- Open Terminal.
- Go to your Applications folder.
- Open the Utilities folder.
- Open the Terminal application.
- Enter the following code and press Enter:
sudo nano /etc/fstab
- You will need to enter your password and press Enter.
- It won’t show any characters when you type.
- If you do not have a password then set one first.
- A terminal text editor will appear. Take note of the name of your NTFS drive. For this example, we will assume the drive is labelled “Windows”.
- Type in the following, replacing “Windows” with the name of your drive:
LABEL=Windows none ntfs rw,auto,nobrowse
- Press Ctrl+O, then press Enter.
- Press Ctrl + X to exit the text editor.
- Open Disk Utility.
- Go to your Applications folder.
- Open the Utilities folder.
- Open the Disk Utility application.
- On the left, click on the NTFS drive.
- At the top, click on the Unmount button.
- This will change to a Mount button. Click it again and close Disk Utility.
- Unfortunately, this will stop the drive being shown in Finder. To workaround this, put the following line into Terminal and press Enter:
open /Volumes
- This will show all the currently connected drives. From here, you can drag your NTFS drive to the sidebar in Finder and have it kept there.