Wednesday 3 May 2017

How to Copy files from MAC to pen-drive- NTFS


Install NTFS-3G from Homebrew by opening a Terminal and entering the following command.
brew install ntfs-3g
After installing NTFS-3G you can manually mount NTFS volumes in read-write mode by executing the following commands in Terminal. Replace /dev/disk1s1 with the actual NTFS partition you want to mount. You can find the partition name using diskutil list.
sudo mkdir /Volumes/NTFS
sudo /usr/local/bin/ntfs-3g /dev/disk1s1 /Volumes/NTFS -olocal -oallow_other

if you face issue with mounting . please unmount the disk .


sudo umount /dev/disk2s1

then do the mount.

No comments:

Post a Comment