Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 1.01 KB

README.md

File metadata and controls

50 lines (31 loc) · 1.01 KB

Mount NTFS Drive to Mac With with Permissions!

image

Mac commands to mount any NTFS drive to enable write feature, you can follow the steps below or clone the repo on your Mac to run the automation.

To run the script on mac just go to the terminal and call

 ./mount.sh

Lets assume your drive name is TOSHIBA EXT

Step 1

 sudo umount /Volumes/TOSHIBA EXT

Step 2

*Now we will create mount volume with TOSHIBA EXT1

shell sudo mkdir "/Volumes/TOSHIBA EXT1"

Step 3

Find the disk identifier

   diskutil list | grep TOSH

*Now the the volume, make sure to replace disj2s1 with the disk identifer.

sudo mount -t ntfs -o rw,auto,nobrowse /dev/disk2s1 "/Volumes/TOSHIBA EXT1"

Step 4

*Open the drive

open "/Volumes/TOSHIBA EXT1"