免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1992 | 回复: 1
打印 上一主题 下一主题

Gentoo Linux下配置NFS(网络文件系统) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-01-14 19:40 |只看该作者 |倒序浏览

Gentoo Linux下配置NFS(网络文件系统)








主机:Gentoo Linux 11.2

内核:Linux 3.0.6

原创作品,转载请表明出处http://blog.csdn.net/yming0221/article/details/7200611

1、内核编译配置

编译内核配置如下,选中NFS服务器支持








2、用于空间软件准备

命令安装nfs-utils




[java] view plaincopyprint?
  1. 01.emerge -av nfs-utils  
复制代码
3、配置NFS用户目录及其权限在/etc/exports下

按自己的要求改写


/home/user/shared 192.168.0.3(async,rw,no_subtree_check)

/home/user/shared2 192.168.0.0/255.255.0.0(async,rw,no_subtree_check)

/mnt/portage 192.168.0.0/16(async,no_subtree_check,rw,no_root_squash)



而括号中的参数含义如下:

rw - Allow read and write access
ro - Allow read only access - no write access
async - Reply to requests before data has been committed to the file system. This improves performance, but increases the risk of data loss in the event of a server crash.
no_subtree_check - Disable subtree checking. The technical details are in the man page, but essentially it's recommended for read/write filesystems where files change frequently, such as /home. If you disable subtree checking and export something that's not the root of a filesystem, it's possible a client could access a file outside the exported directory, however.
root_squash - Prevent the client creating files owned by root - instead they will be owned by the anonymous uid/gid (user id / group id, see man page for details).
no_root_squash - Turn off root squashing. Mostly used on diskless clients.
all_squash - Map all uids/gids to the anonymous user. This means that all files written to this filesystem will be owned by the same user.
3、启动NFS服务




[cpp] view plaincopyprint?
01./etc/init.d/nfs start  

在开发板上挂载主机目录成功。


论坛徽章:
0
2 [报告]
发表于 2012-01-15 02:02 |只看该作者
还是debian方便,apt-get 可以安装 nfs
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP