Mount

Mount ntfs on Mac

When you set a portable hard disk(HD) on Mac, by defaul, it supports the only-read mode and you can’t move any file into it. But it’s easy to remount it by following steps.

1
2
3
4
5
6
7
8
~~open your terminal~~
$ mount | grep ntfs
/dev/disk2s1 on /Volumes/Elements (ntfs, local, nodev, nosuid, read-only, noowners)
$ sudo umount /dev/disk2s1
$ mkdir ~/Desktop/mnt
$ sudo mount_ntfs -o rw,nobrowse /dev/disk2s1 ~/Desktop/mnt
~~After using it~~
$ sudo umount /dev/disk2s1

Note: disk2s1 is the HD partition on my Mac and it may change on your PC.