感谢支持
我们一直在努力

Linux挂载FAT分区普通用户无写权限的解决办法

当我们双系统共存的时候,往往需要在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就行了.

赞(0) 打赏
转载请注明出处:服务器评测 » Linux挂载FAT分区普通用户无写权限的解决办法
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏