一般用在交叉编译环境中,host和target之间的文件共享。
sudo apt-get install nfs-kernel-server portmap
sudo vim /etc/exports
添加
/home/shuaige/nfs 192.168.9.*(rw,sync,no_root_squash)
第一个表示把host上的这个目录作为共享目录
第二个表示允许这些ip地址申请共享目录
第三个表示设置权限
sudo /etc/init.d/nfs-kernel-server restart
showmount -e
登录target,运行命令:
sudo mount -o nolock -t nfs 192.168.0.10:/home/shuaige/nfs /mnt
192.168.0.10是host的ip地址
192.168.0.10:/home/shuaige/nfs 表示nfs服务器允许的共享文件夹
/mnt 表示target上挂载路径,在target上可以通过/mnt这个文件夹,和host进行文件共享。