标签:
NFS即网络虚拟文件系统。对于内核开发来说可以挂在nfs来进行调试可以免去频繁烧写的麻烦。要使用nfs文件系统首先需要配置nfs服务。
先安装nfs:
sudo apt-get install nfs-kernel-server
nfs-common已经安装过就不需要重新安装了。
2.打开/etc/exports文件在末尾加入:
xxxxxxxx *(rw,sync,no_root_squash)
其中,xxxxxxx表示要挂载的目录
* 表示允许所有的网段访问
rw 表示读写权限
sync 表示资料同步写入内存和硬盘
no_root_squash 表示nfs客户端共享目录使用者权限
3.重启服务:
#sudo /etc/init.d/portmap restart <---重启portmap, #sudo /etc/init.d/nfs-kernel-server restart <---重启nfs服务
#showmount -e <---显示共享的目录
如果显示的文件夹是你刚才设置的文件夹则表示nfs服务设置成功。
标签:
原文地址:http://www.cnblogs.com/sumingyuan/p/4542950.html