The original member who posted this should do the responsible thing and edit the original first post and warn people of the increasing risk of using this unsupported, unstable feature.
I wrote a small app to help mounting ntfs volume read/write : http://ntfsmounter.com
This is experimental, and known to be unstable, use at your own risk.
I am sure many of you heard that Snow Leopard was supposed to have native read/write for NTFS partitions. Apple supported NTFS R/W in older SL builds but I guess decided to not to go with it for some reason, however support is still present.
For this, you need to modify your /etc/fstab file to mount NTFS partitions for read and write.
First, uninstall NTFS-3G/Paragon if installed.
Open Terminal.app (/Applications/Utilities/Terminal)
Type "diskutil info /Volumes/volume_name" and copy the Volume UUID (bunch of numbers).
Backup /etc/fstab if you have it, shouldn't be there in a default install.
Type "sudo nano /etc/fstab".
Type in "UUID=paste_the_uuid_here none ntfs rw" or "LABEL=volume_name none ntfs rw" (if you don't have UUID for the disk).
Repeat for other NTFS partitions.
Save the file (ctrl-x then y) and restart your system.
After reboot, NTFS partitions should natively have read and write support. This works in both 32 and 64-bit kernels. Support is quite good and fast, it even recognizes file attributes such as hidden files.
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.
Thanks for the heads up. It works for me. however, I encountered 2 problems.
1. When I tried to delete a certain folder, it became 0 byte but was still shown in the trash with an error msg (file corrupted or something). It happened before (mainly with folders). But previously, I could go to disk utility - first aid - repair disk to correct this. However, now the 'repaire disc' button is disabled for these NTFS disks.
2. When I tried to save a pdf file in its original place (i.e., replacing the original one) using Acrobat, I suddenly got an error msg, then I found the folder the file was in was empty! (I had over 2GB of files in that folder!)
-------------------
Update: I was able to solve these problems. I used the chkdsk command line utility (in particular, run cmd, then type 'chkdsk K: /X' where K is the drive letter, /X means to unmount it first) to repair the disk under windows. The contents in the folder were intact.
Also, I was able to find and delete the /etc/fstab file eventually, by going to finder-go to folder- '/etc'. After I reinstalled paragon, the repair disk button is clickable again.
Hi everybody!
I build a script to enable native writing to NTFS in Mac OSX.
Run the first time to enable writing to NTFS.
Rerun to disable writing to NTFS and return to its original configurations.
download:
http://www.4shared.com/file/qgVo_aAj/macosx_ntfs_read_write.html
in the terminal:
sh macosx_ntfs_read_write.sh
Its use the native writing NTFS Mac OSX.
I hope to be useful.
Hi,
I have an external ntfs HDD (1To) and I'v tried the Chrysaor 's two solutions to copy data from my iMac (snow leopard).
None of it works (NTFS Mounter 0.4 either) and now I can't see my HDD anymore. It appears only in the disk utility as you can see in the picture below and it works also well when I connect it to my Macbook.
Is anybody have an idea of the problem and more specifically know what to do to mount my HDD without converting it (it doesn't seem to be the problem) and loosing my data.
In fact I'd like to delete what I wrote and wrong my computer.
Thanks
![]()
I'm trying this: http://www.tuxera.com/products/tuxera-ntfs-for-mac/
Will report later since I haven't restarted (required) and stiill have 15 days left on the trial![]()
I don't know why you have a trial period.. ntfs-3g is gnu licensed. http://en.wikipedia.org/wiki/NTFS-3G (but I think i'm using the tuxera solution too!)![]()
Hi everybody!
I build a script to enable native writing to NTFS in Mac OSX.
Run the first time to enable writing to NTFS.
Rerun to disable writing to NTFS and return to its original configurations.
download:
http://www.4shared.com/file/qgVo_aAj/macosx_ntfs_read_write.html
in the terminal:
sh macosx_ntfs_read_write.sh
Its use the native writing NTFS Mac OSX.
I hope to be useful.