sudo apt-get install nfs-kernel-server
安装nfs。/etc/exports中加入:
/home/topeet/minipcie_driver/nfs_share *(rw,sync,no_root_squash)
前面是要共享的路径,*表示所有ip都可以访问。重启服务:
sudo /etc/init.d/portmap restart
sudo /etc/init.d/nfs-kernel server restart
4.本地实验:
sudo mount -t nfs localhost:/home/topeet/minipcie_driver/nfs_share /mnt
成功后在/mnt可以看到共享目录下的内容。