自测成功!!!
这里,需要利用内核nfs功能,将文件系统从PC上挂载到开发板上,方便开发。
我的nfs根目录是/xgnfs,PC的IP地址是192.168.2.80,开发板的IP是192.168.2.199。
1).首先安装nfs服务,这里安装操作系统时已安装。
2).#vi /etc/exports,并输入以下内容之后,保存退出。
/xgnfs 192.168.2.199(rw,sync,no_root_squash)
/xgnfs 192.168.2.80(rw,sync,no_root_squash)
3).#exportfs -rv
4).修改目录(及其子目录)的权限
#chmod 777 -R /xgnfs
5).修改/etc/hosts,把目标板的IP和名称(也可不加名称)加到表中,添加后的文件内容为:
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
::1 localhost6.localdomain6 localhost6
192.168.2.199
127.0.0.1 localhost
6).重启 nfs
#service nfs restart
7).测试,挂载到自已的另一目录,挂载之后,两个目录的内容同时变化。
#mount 192.168.2.80:/xgnfs /mnt
复制一个文件到/xgnfs下,看mnt中是否也增加了这个文件。如有,则nfs配置成功。
记得,如有不通,可能是防火墙的问题,最好将它关掉
查看防火墙状态:
/etc/init.d/iptables status
暂时关闭防火墙:
/etc/init.d/iptables stop
禁止防火墙在系统启动时启动
/sbin/chkconfig --level 2345 iptables off
重启iptables:
/etc/init.d/iptables restart