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![]()
How did it work for you? Did you purchase it?
Are you booted in 64-bit mode?This no longer works for me after the 10.6.7 update. The drive is visible in Disk Utility, but the NTFS partition is grayed out and does not mount in Finder. Reverting back to the original file allows it to mount.
iBlacky of the same forum posted a better method. Basically, it's running mount_ntfs with read/write option specified.
Here's how it's done in Terminal:
sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.orig
sudo nano /sbin/mount_ntfs
#!/bin/sh
/sbin/mount_ntfs.orig -o rw "$@"(press Enter, Ctrl-O, Enter, Ctrl-X in sequence)
sudo chown root:wheel /sbin/mount_ntfs
sudo chmod 755 /sbin/mount_ntfs
Make sure to check that mount_ntfs is listed as -rwxr-xr-x and root wheel when you type ls -al /sbin/mount_ntfs and you're good to go.
.
.
.
To Read/Write/Format NTFS from Mac OS X: Install NTFS-3G for Mac OS X (free)Anyone please can help me??
For this, you need to modify your /etc/fstab file to mount NTFS partitions for read and write.
I wrote a small app to help mounting ntfs volume read/write : http://ntfsmounter.com
iBlacky of the same forum posted a better method. Basically, it's running mount_ntfs with read/write option specified.
Here's how it's done in Terminal:
sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.orig
sudo nano /sbin/mount_ntfs
#!/bin/sh
/sbin/mount_ntfs.orig -o rw "$@"(press Enter, Ctrl-O, Enter, Ctrl-X in sequence)
sudo chown root:wheel /sbin/mount_ntfs
sudo chmod 755 /sbin/mount_ntfs
Make sure to check that mount_ntfs is listed as -rwxr-xr-x and root wheel when you type ls -al /sbin/mount_ntfs and you're good to go.
P.S.
If it isn't working for you, it may be that the NTFS partition wasn't cleanly unmounted previously (e.g. not using safe eject in Windows). To check if this is the case, open Console in Utilities, and go to 'All Messages' instead of 'Console Messages'. Search for 'ntfs' and you may come across an error that displays like this:
NTFS-fs error (device /dev/disk3s1, pid 435): ntfs_system_inodes_get(): $LogFile is not clean. Mounting read-only. Mount in Windows.
You need to plug the disk into Windows-running system, and do a safe eject. Then the NTFS partition will mount in read/write mode.
Good luck!
Again thanks iBlacky![]()
sudo mv /sbin/mount_ntfs.orig /sbin/mount_ntfs
Don't try enabling it. It's not stable.The /etc/fstab or mount_ntfs -o rw does not seems to work on my Lion 10.7.3
Anyone has try it on 10.7.3? Thanks
Don't try enabling it. It's not stable.
NTFS (Windows NT File System)
- Read/Write NTFS from native Windows.
- Read only NTFS from native Mac OS X
[*]To Read/Write/Format NTFS from Mac OS X, here are some alternatives:
- For Mac OS X 10.4 or later (32 or 64-bit), install Paragon (approx $20) (Best Choice for Lion)
- For 32-bit Mac OS X, install NTFS-3G for Mac OS X (free) (does not work in 64-bit mode)
- For 64-bit Snow Leopard, read this: MacFUSE for 64-bit Snow Leopard
- Some have reported problems using Tuxera (approx $36).
- Native NTFS support can be enabled in Snow Leopard and Lion, but is not advisable, due to instability.
- AirPort Extreme (802.11n) and Time Capsule do not support NTFS
- Maximum file size: 16 TB
- Maximum volume size: 256TB
- You can use this format if you routinely share a drive with multiple Windows systems.
Did you read the post you quoted? It did not recommend buying Tuxera.Thanks, it seems my only option is to buy tuxera![]()
Did you read the post you quoted? It did not recommend buying Tuxera.
iBlacky of the same forum posted a better method. Basically, it's running mount_ntfs with read/write option specified.
Here's how it's done in Terminal:
sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.orig
sudo nano /sbin/mount_ntfs
#!/bin/sh
/sbin/mount_ntfs.orig -o rw "$@"(press Enter, Ctrl-O, Enter, Ctrl-X in sequence)
sudo chown root:wheel /sbin/mount_ntfs
sudo chmod 755 /sbin/mount_ntfs
Make sure to check that mount_ntfs is listed as -rwxr-xr-x and root wheel when you type ls -al /sbin/mount_ntfs and you're good to go.
P.S.
If it isn't working for you, it may be that the NTFS partition wasn't cleanly unmounted previously (e.g. not using safe eject in Windows). To check if this is the case, open Console in Utilities, and go to 'All Messages' instead of 'Console Messages'. Search for 'ntfs' and you may come across an error that displays like this:
NTFS-fs error (device /dev/disk3s1, pid 435): ntfs_system_inodes_get(): $LogFile is not clean. Mounting read-only. Mount in Windows.
You need to plug the disk into Windows-running system, and do a safe eject. Then the NTFS partition will mount in read/write mode.
Good luck!
Again thanks iBlacky![]()