|
|
发表于 2008-4-15 17:34:37
|
显示全部楼层
fatab 里加 user 参数就可以让普通用户可读写删除了
想要改 user/group 的话参见这个帖子:http://www.linuxsir.cn/bbs/thread326914.html
用 ntfs-3g 可以支持 NTFS 的写入
apt-get install ntfs-3g
然后 fstab 里面的 Type 用 ntfs-3g
后面的参数里加上 locale=zh_CN.utf8(假如你用的是 UTF-8 locale) 或者 locale=zh_CN.gbk(假如你用的是 GBK locale)
例如:- # /etc/fstab: static file system information.
- #
- # <file system> <mount point> <type> <options> <dump> <pass>
- /dev/hda1 /mnt/c ntfs-3g rw,user,noexec,locale=zh_CN.utf8 0 0
复制代码
不过这个不是自动挂载的 |
|