https://gist.github.com/six519/9f04837f119103d4ff45542a5b5d4222


Configuring your Mac!


Change security settings



Install macFUSE


Compiling/Installing ntfs-3g

brew install autoconf
brew install automake
brew install libtool
brew install libgcrypt
brew install pkg-config
git clone https://github.com/tuxera/ntfs-3g.git
cd ntfs-3g 
./autogen.sh
./configure --exec-prefix=/usr/local
make
sudo make install


Mounting NTFS drive for reading/writing data

sudo umount /Volumes/LABEL_NAME

LABEL_NAME

diskutil list

Example output

sudo ntfs-3g -o auto_xattr /dev/DISK_IDENTIFIER /Volumes/LABEL_NAME

Screenshot