系统要求:mac os x 10.6及以上

改动mount指令(可以在/sbin/mount/中找到,但需要打开mac隐藏文件)

打开终端:

    sudo  mv /sbin/mount_ntfs /sbin/mount_ntfs.orig
    touch mount_ntfs

之后在你的用户主目录下会生成一个mount_ntfs的空文件,用文本编辑器打开,输入以下内容后保存

    #!/bin/sh
    /sbin/mount_ntfs.orig -o rw “$@”

打开终端并执行:

    sudo mv mount_ntfs /sbin/mount_ntfs
    sudo chown root:wheel /sbin/mount_ntfs
    sudo chmod 755 /sbin/mount_ntfs

你的系统将默认以读写的方式加载NTFS分区。

如需恢复,在终端执行:

    sudo mv /sbin/mount_ntfs.orig /sbin/mount_ntfs

Copyright © 2014-2024 it689.com (京ICP备12032795号-2) 版权所有 Power by IT689