So, your friend lends you a hard drive with a collection of movies, music, pics etc.. you plug it into your mac and nothing happens... the diskutil GUI shows the disk but you can't see it in finder! Chances are you have been give a disk that has been formatted using the NTFS file system. Damn! you say, but fret not. Here is a quick and easy method to get access to that NTFS formatted drive.
1. Open up a terminal - command+space and type terminal
2. At the terminal, enter the following command: diskutil list
You will see output that looks similar to the following:
diskutil list
/dev/disk0
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *320.1 GB disk0
1: EFI EFI 209.7 MB disk0s1
2: Apple_HFS Macintosh HD 319.2 GB disk0s2
3: Apple_Boot Recovery HD 650.0 MB disk0s3
/dev/disk1
#: TYPE NAME SIZE IDENTIFIER
0: FDisk_partition_scheme *3.0 TB disk1
1: Windows_NTFS VIDEO2 3.0 TB disk1s1
The highlighted output is what is of interest i.e. the one with the NTFS. In particualr we are interested in the in the IDENTIFIER disk1s1
3. Create a directory which will serve as the mounting point for your NTFS drive e.g: mkdir /Volumes/my_ntfs_disk
4. Now using the identifier we discovered earlier, we can mount the NTFS drive like so: sudo mount -t ntfs /dev/disk1s1 /Volumes/my_ntfs_disk
5. Check finder and you will now see the NTFS drive visible and fully operational.
1. Open up a terminal - command+space and type terminal
2. At the terminal, enter the following command: diskutil list
You will see output that looks similar to the following:
diskutil list
/dev/disk0
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *320.1 GB disk0
1: EFI EFI 209.7 MB disk0s1
2: Apple_HFS Macintosh HD 319.2 GB disk0s2
3: Apple_Boot Recovery HD 650.0 MB disk0s3
/dev/disk1
#: TYPE NAME SIZE IDENTIFIER
0: FDisk_partition_scheme *3.0 TB disk1
1: Windows_NTFS VIDEO2 3.0 TB disk1s1
The highlighted output is what is of interest i.e. the one with the NTFS. In particualr we are interested in the in the IDENTIFIER disk1s1
3. Create a directory which will serve as the mounting point for your NTFS drive e.g: mkdir /Volumes/my_ntfs_disk
4. Now using the identifier we discovered earlier, we can mount the NTFS drive like so: sudo mount -t ntfs /dev/disk1s1 /Volumes/my_ntfs_disk
5. Check finder and you will now see the NTFS drive visible and fully operational.