转自:http://blog.chinaunix.net/uid-20680966-id-3810455.html
服务器用的是fedora 12
以前在helper2416开发板上挂载服务器上的nfs目录读写都没有问题
服务器上的 /etc/exports
/opt/target *(rw,async,no_root_squash)
今天虚拟机装了个ubuntu12.04 64bit版,不能mount,提示什么access denied ,在/etc/exports下 ()中加insecure可解决
然后就是挂载nfs目录后只读不可写问题了,折腾半天,
后面发现是要求UID,GID与服务器一致
于是在服务器上用id命令一查
$id
uid=501(jyx) gid=500(rdd) 组=500(rdd)
修改/etc/exports
/opt/target *(insecure,rw,sync,all_squash,anonuid=501,anongid=500)
服务器上
$sudo service nfs restart
ub上再挂载nfs,发现可写了。