Get the partition "BSD Name" from the System Profiler (About This Mac menu), it should be something like disk0s1.
Inside a terminal:
mkdir /Volumes/MyPartition sudo mount_ntfs -o rw /dev/disk0s1 /Volumes/MyPartition
To make it permanent, get the "Volume UUID" using:
diskutil info /Volumes/MyPartitionAnd then write to file /etc/fstab
sudo sh -c "echo UUID=FCA56B30-C9BF-44A3-81CC-A4BB5D2C1F4D none ntfs rw > /etc/fstab"At restart the NTFS partition will be read/write.

0 comments:
Post a Comment