在主机上安装nfs服务器
apt-get install nfs-kernel-server
安装完成后启动nfs服务器
sudo /etc/init.d/nfs-kernel-server start
设置环境变量
gedit /etc/exports
添加如下一句话
/home/share 192.168.1.*(rw,sync,no_root_squash)
前面是你要共享的文件目录的绝对路径,后面是你要挂载的设备的网段,后面是一些参数,一般这么设置就可以
你也可以自己查查。
然后再开发板上打这样一条命令
mount -t nfs 192.168.1.108:/home/share /mnt/ -o nolock