Mount NTFS disk to Mac OS for Read and Write
Most of the removable hard disks are in NTFS format. When it is attached to Mac OS, it is automatically mounted as a read only file system. You can not copy files on to it. In order to write data, usually you have to find some software to support writable NTFS, for example, Mounty.
I do not suggest you download Mounty. Many users have found this software has a very serious bug. In some unknown cases, it damages the hard disk. It probably does not manage the indices of the NTFS well. If it unfortunately happens, you can not write any data. When you attache it back to Windows, the system warns that this disk is not usable. You have to use a tool named chkdsk to repair it. Sometimes, data is lost.
Apple does include NTFS module into Mac OS. That's why it support read-only NTFS. It does not naturally support writable NTS. Is it because NTFS is a Microsoft standard?
Anyway, we can manually mount a writable NTFS on to Mac OS.
First we should find the disk device name. Attache the hard disk to the USB socket. Run command:
$ df
....
/dev/disk5s1 1953520808 1457336616 496184192 75% 150877 248094691 0% /Volumes/TOSHIBA EXT
....
This entry /dev/disk5s1 is for my disk, which is mounted at point "/Volumes/TOSHIBA EXT"
First umount it from the system, and then mount it as a writable device:
$ sodu umount /dev/disk5s1
$ sodu mount_ntfs -o rw,sync,nobrowse /dev/disk5s1 /Users/trumpet/toshiba
The new mount point is /Users/trumpet/toshiba. It is a read-write device now.
Put these commands into a shell script to configure it easily.
However, I still find a case that it damages the file system. I think it is an issue in Mac OS implementation. When you copy files to it, keep the console awake, not sleeping.
Labels: chkdsk, damage, Mac OS, mount, NTFS, read-only, Removable Hard Disk, writable
