安装NFS服务
sudo apt-get install nfs-kernel-server
重启NFS
sudo /etc/init.d/nfs-kernel-server restart
1.在家目录下创建一个文件夹
cd ~/
mkdir nfs_rootfs
2.增加nfs服务的文件夹路径
sudo vi /etc/exports
添加
/home/自己的用户名/nfs_rootfs *(rw,nohide,insecure,no_subtree_check,async,no_root_squash)
2.让exports文件生效
sudo exportfs -arv
3.重启nfs:
sudo /etc/init.d/nfs-kernel-server restart
4.在Ubuntu上测试 ip是Ubuntu的ip
sudo mount -t nfs -o nolock,vers=3 linuxIP地址:/home/自己的用户名/nfs_rootfs/ /mnt/
5.在开发板上挂载
mount -t nfs -o nolock,vers=3 linux的IP地址:/home/linux的用户名/nfs_rootfs /mnt