Had problem in writing files to my external harddisk with NTFS format through Snow Leopard.
In some forum, expert recommended to use free utility tools like: iNTFS and NTFS mounter
Write files to NTFS drive is actually supported by Snow Leopard but this functionality is not enabled by default. The above utility tools are useful for Leopard, as Leopard does not support write operation. To enable the write operation fro NTFS drive in Snow Leopard:
- In Terminal, type diskutil info /Volumes/volume_name, where volume_name is the name of the NTFS volume. From the output, copy the Volume UUID value to the clipboard.
diskutil info /Volumes/drive_name
- Back up /etc/fstab if you have it; it shouldn’t be there in a default install.
sudo cp /etc/fstab /etc/fstab.ori
- Type sudo nano /etc/fstab
sudo vi /etc/fstab
- In the editor, type UUID=, then paste the UUID number you copied from the clipboard. Type a Space, then type none ntfs rw. The final line should look like this:
UUID=123-456-789 none ntfs rw
where 123-456-789 is the UUID you copied in the first step.
- Repeat the above steps for any other NTFS drives/partitions you have.
- Save the file and quit nano (Control-X, Y, Enter), then restart your system.
- Restart the computer, the added NTFS drive should be able to be written.
NOTE:
If there is not UUID, use the volume label instead.
Useful link: