Fork me on GitHub

mac 挂在ntfs 移动硬盘

之前用Windows时买了个移动硬盘,换成MAC后插上硬盘发现只能读,不能写入。查了下都是说要购买软件来写入的,其实,不用花这个冤枉钱,用命令可以搞定。
首先在桌面新建 文件夹 Windows

1
mkdir Windows

使用 diskutil list 命令查看硬盘列表,可以看到 在/dev/disk2 就是移动硬盘,而 disk2s1 就是ntfs格式的数据硬盘成员。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 diskutil list
/dev/disk0 (internal, physical):
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *251.0 GB disk0
1: EFI EFI 209.7 MB disk0s1
2: Apple_APFS Container disk1 250.8 GB disk0s2

/dev/disk1 (synthesized):
#: TYPE NAME SIZE IDENTIFIER
0: APFS Container Scheme - +250.8 GB disk1
Physical Store disk0s2
1: APFS Volume Macintosh HD 89.5 GB disk1s1
2: APFS Volume Preboot 21.8 MB disk1s2
3: APFS Volume Recovery 509.8 MB disk1s3
4: APFS Volume VM 2.1 GB disk1s4

/dev/disk2 (external, physical):
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *1.0 TB disk2
1: Microsoft Basic Data Elements 1.0 TB disk2s1

使用 sudo umount /dev/disk2s1 推出部分硬盘

1
sudo umount /dev/disk2s1

然后再将硬盘挂载到桌面 Windows 文件夹
sudo mount_ntfs -o rw,nobrowse

1
sudo mount_ntfs -o rw,nobrowse /dev/disk2s1 ~/Desktop/Windows

nobrowse 表示在 Finder 中不显示这个分区,不带上这个选项是挂载不成功的。