Chinaunix首页 | 论坛 | 博客
  • 博客访问: 317973
  • 博文数量: 68
  • 博客积分: 1501
  • 博客等级: 上尉
  • 技术积分: 1010
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-30 09:52
文章分类

全部博文(68)

文章存档

2010年(1)

2009年(67)

我的朋友

分类:

2009-01-07 14:07:09

一、Linux 服务器端NFS 服务器的配置
  以root 身份登陆Linux 服务器,编辑/etc 目录下的共享目录配置文件exports,指定共享目录及权限等。
  执行如下命令编辑文件/etc/exports:
# vi /etc/exports
  在该文件里添加如下内容:
/share/rootfs  192.168.0.*(rw,sync,no_root_squash)
    rw:读/写权限,只读权限的参数为ro;
  sync:数据同步写入内存和硬盘,也可以使用async,此时数据会先暂存于内存中,而不立即写入硬盘。
  no_root_squash:NFS 服务器共享目录用户的属性,如果用户是 root,那么对于这个共享目录来说就具有 root 的权限。
 
#service portmap start
# service nfs start
 
我们首先在Linux 服务器上进行NFS 服务器的回环测试,验证共享目录是否能够被访问。在Linux 服务器上运行如下命令:
  # mount –t nfs 192.168.0.1:/share/rootfs /mnt
  # ls /mnt   命令将Linux 服务器的NFS 输出共享目录挂载到/mnt 目录下,因此,如果NFS 正常工作,应该能够在/mnt 目录看到/share/rootfs 共享目录中的内容
 
 
首先设定PC机的IP为192.168.0.1,网关:192.168.0.1,子网掩码:255.255.255.0

vivi>param set linux_cmd_line "console=ttyS0 root=/dev/nfs nfsroot=192.168.0.1:/share/rootfs ip=192.168.0.230:192.168.0.1:192.168.0.1:255.255.255.0::eth0:off init=linuxrc"
vivi>param save

192.168.0.230是开发板对本机的ip;
注意:千万别忘记连网线!!
阅读(1028) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~