Chinaunix首页 | 论坛 | 博客
  • 博客访问: 535953
  • 博文数量: 55
  • 博客积分: 1520
  • 博客等级: 上尉
  • 技术积分: 661
  • 用 户 组: 普通用户
  • 注册时间: 2009-04-19 22:01
文章存档

2013年(1)

2012年(1)

2011年(7)

2010年(16)

2009年(30)

我的朋友

分类: LINUX

2009-05-22 09:38:59

         当我们双系统共存的时候,往往需要在LINUX下挂载WIN的FAT分区。默认情况下,挂载的分区只有root用户可以读写.
         而在LINUX平台下,一直使用root用户并不是一个好习惯.
         有没有办法让挂载的FAT分区能让普通用户也可以正常读写呢?
         man mount发现如下一段话:
         uid=value and gid=value
              Set  the owner and group of the root of the file system (default: uid=gid=0, but with option uid or gid without specified value, the uid and gid of the current process are taken).
         原来在挂载时加上这两个选项就可以了,如下:
         mount -t vfat -o iocharset=utf8,uid=500,gid=500 /dev/hda2 /mnt/D/
         (500是需要读写该分区的普通用户的UID和GID)
         再用UID为500的用户登录后测试发现在该FAT分区读写正常了.
         当然,如果你用/etc/fstab文件配置的话,直接在defaults后面加上,uid=500,gid=500就行了.
        
阅读(4352) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~