码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu 12.04不能mount nfs目录与挂载后只读不能写问题 (转载)

时间:2014-12-19 18:56:26      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

转自: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,发现可写了。

ubuntu 12.04不能mount nfs目录与挂载后只读不能写问题 (转载)

标签:

原文地址:http://www.cnblogs.com/lance-ehf/p/4174498.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!