问一个比较弱的问题...权限相关

问一个比较弱的问题...权限相关

我有两个windows分区,一个ntfs,一个vfat
[code:1]
/dev/hda5               /windows        vfat            auto,user,rw,noatime,codepage=936,iocharset=cp936       0 0
/dev/hda1               /mnt/win2003    ntfs            auto,user,ro,noatime            0 0
[/code:1]

现在只有root能访问这两个分区里面的内容 ,但我现在想其它的用户能够访问它,请问我要怎么样做才行?
比如用户admin
[code:1]
Do root # groups admin
bin disk wheel mail cron console audio cdrom ftp video mysql cdrw usb slocate admin
Do root #
[/code:1]
设一下umask为0
人人都能访问
[code:1]/dev/hda1   /mnt/hda1   vfat iocharset=cp936,umask=0,exec 0 0[/code:1]
Magic Linux中挂载Fat32分区所用的参数
普通用户可以读写,中文也没有问题
兄弟可以参考一下 :-)

Good Luck ~
引用:
      umask=value
              Set the umask (the bitmask  of  the  permissions  that  are  not
              present).  The default is the umask of the current process.  The
              value is given in octal.
umask=0中的0是什么意思?
权限位为            rwxrwxrwx
对应的八二进制为111111111
umask可以理解为创建文件的mask,目录全权为八进制的777,文件默认为666
如果umask为000那么,可以简单的认为挂载的时候所有的目录权限为777-000,就是所有人都可以读写搜索,文件的权限为666-000,就是所有的人都可以读写。
最好不要挂载fat fat32格式的分区!