Linux如何自动挂载NTFS
从http://www.tuxera.com/community/ntfs-3g-download/下载ntfs-3g_ntfsprogs-2014.2.15.tgz源码包
解压(tar zxvf)
安装(./configure make make install)
编写一个脚本文件,文件名为 /sbin/mount.ntfs
内容如下:
#!/bin/sh
export.UTF-8
exec /sbin/mount.ntfs-3g "$@"
复制代码
执行如下命令
# chmod a+s /sbin/mount.ntfs
# chmod a+rx /sbin/mount.ntfs
即可实现linux下插入ntfs格式的U盘或移动硬盘实现自动挂载
转载于:https://blog.51cto.com/guestart/1621284