This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 用 root 身份做如下操作 (高危! 请切记自己在干什么) | |
sudo -s | |
cd /sbin | |
# 将系统自带的挂载程序改名 | |
mv mount_ntfs mount_ntfs_orig | |
# 新建我们要的挂载脚本并编辑 | |
vim mount_ntfs | |
#!/bin/sh | |
/sbin/mount_ntfs_orig -o rw,nobrowse "$@" |
NewerOlder