R/W to NTFS
Hi,
I played with NTFS-formatted disks under SL couple weeks ago. I was looking for R/W support and I found this solution (this is off MR forum, but I found it elsewhere as well.
Alternative Method by iBlacky:
Rename the original /sbin/mount_ntfs tool:
sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.orig
Create a script like this:
#!/bin/sh
/sbin/mount_ntfs.orig -o rw "$@
save the script to /sbin/mount_ntfs
sudo chown root:wheel /sbin/mount_ntfs
sudo chmod 755 /sbin/mount_ntfs
Enjoy R/W access to NTFS volumes...
In case you don't like it
sudo mv /sbin/mount_ntfs.orig /sbin/mount_ntfs
and everything is back to R/O.
I tried it and it worked for me (I just did couple tests with my NTFS USB flash drive). It seems that OS X already supports writing to NTFS, but Apple just disables it. There might be a catch, but I have not found one yet (after 5 minutes using it 🙂
Enjoy, R>