在板子测试过程中,NFS(2个虚拟机之间的共享,而VMware share是虚拟机与WINDOWS之间的共享)挂载必不可少,趁着好心情,共享一下。
一、PC机
1.安装NFS服务器(一般系统都会自带,不用安装)
apt-get install nfs-kernel-server
2.编辑/etc/exports
加入/work/nfs 192.168.2*(rw,insecure,sync)
3. /etc/init.d/portmap restart 复位
4. /etc/init.d/nfs-kernel-server restart 复位
5.showmount -e 查看共享目录
[root@localhost test]# showmount -e
Export list for localhost.localdomain:
/work/nfs 192.168.2*
附:以上操作都可以在桌面系统完成即系统/管理/服务器配置/NFS
二、开发板
6.NFS挂在目录(目标机与主机必须在同一ip段,即能ping通)
mount -t nfs -o nolock 192.168.2.211:/work/nfs /nfs
//将ip地址为192.168.2.211的主机目录/work/nfs通过NFS挂载到目标机的/nfs目录上
7.卸载目标板(开发板)目录/nfs
umount /nfs (不能再/nfs目录下运行,一般会显示忙的状态)
附:以上配置可写在一个脚本上运行