[Mac] open native NTFS hard disk format support

First, before MacOS 10.13

  • Jump directly to the referenced address View, below the grass credited only to prevent loss of link

Reference address

  • Open the terminal switches to the root, as input, then the transport, if the input password is the password, the password is not displayed, the input completed directly enter.
sudo -s
  • Into the / sbin directory, enter the following
cd /sbin
  • The system comes with mounting program to rename, enter:mv mount_ntfs mount_ntfs_orig
  • If you encounter an error:mv: rename mount_ntfs to mount_ntfs_orig: Operation not permitted.
    • Can restart mac, hold down the command + R into recovery (Recovery) mode found the terminal (in the "Utilities" inside)
    • Close security restrictions:csrutil disable
    • Then reboot:reboot
  • After completion of the name change, scripting: vim mount_ntfsPress i start editing, as follows
#!/bin/sh
/sbin/mount_ntfs_orig -o rw,nobrowse "$@";
cd /Volumes/(你的盘符名字);
find . -exec xattr -c {} \;
  • Then save, press esc Enter: Enter wq

  • Mount modify file permissions: chmod a+x mount_ntfs

  • Exit root: exit

  • Since the new mount ntfs disk can not be displayed in the Finder, so open the Finder Go to Folder /Volumes, and then use cmmand+control+Tthe /Volumessaved to the sidebar, not the desktop appears after inserting a mobile device, can be viewed in Volumes Finder's sidebar.

  • Everything OK, open the mac computer's native NTFS file system read and write capabilities, read and write speed is still acceptable.

Two, MacOS 10.13 and after

  • Jump directly to the referenced address View, below the grass credited only to prevent loss of link

Reference address

sudo nano /etc/fstab 再输入密码回车进入配置

LABEL=系统 none ntfs rw,auto,nobrowse
LABEL=多媒体 none ntfs rw,auto,nobrowse
LABEL=综合 none ntfs rw,auto,nobrowse
LABEL=文档 none ntfs rw,auto,nobrowse

Guess you like

Origin www.cnblogs.com/haoworld/p/mac-kai-qi-yuan-sheng-de-ntfs-ying-pan-ge-shi-zhi.html