mount 的fat16分区不能修改,mount的NTFS分区不能访问,为什么?

mount 的fat16分区不能修改,mount的NTFS分区不能访问,为什么?

的fat16分区不能修改,mount的NTFS分区不能访问,为什么?
ROOT就可以,但我目前是ROOT组成员?
怎么办?如何做?      
Kernel 2.4.x do not support Windows 2000 NTFS file system.      
你需要编辑内核      
你们没有理解我的意思,
目前我用root登录,能写入mount的fat分区,能访问mount的NTFS分区
但是用其他用户登录就只能读fat分区,不能写,NTFS分区连读都不行。

谁说的kernel 2.4.x不支持NTFS,了解了再说。      
难道会有不同的fstab文件?      
我也遇到普通用户不能访问已经挂接的NTFS的问题,不知道为何,但FAT16应该不会吧,看权限设置好了吗      
不管权限如何设置,mount后,权限都会变回去,不知为什么?      
Linux还要很多不太完善的地方      
这个问题我觉得不是不完善的问题,肯定有解决办法,作者这么设置肯定是有原因的.      
ntfs 对任何用户可读(不推荐写ntfs):

mount -t nfts /dev/hda1 /mnt/dosc -o umask=000

vfat对任何用户可写:

mount -t vfat /dev/hda1 /mnt/dosc -o codepage=936,iocharset=gb2312,umask=000

vfat对某一用户(例如,uid=500)和root可写:

mount -t vfat /dev/hda1 /mnt/dosc -o codepage=936,iocharset=gb2312,uid=500

vfat对某一组用户(gid=500)可写,所有用户可读:

mount -t vfat /dev/hda1 /mnt/dosc -o codepage=936,iocharset=gb2312,gid=500,umask=002