==============fedora 系统=========================
yum install nfs-utils.i686 #安装软件包
systemctl enable nfs-server.service #设置开机启动
systemctl start nfs-server.service #启动服务
============= debian系统=========================
apt-get install nfs-common nfs-kernel-server #安装软件包
/etc/init.d/nfs-kernel-server restart #重启服务
===============配置文件=====================
vi /etc/exports添加如下语句
/develop 192.168.0.4(rw,sync,no_root_squash) #允许192.168.0.4访问,并具有root权限
注:建议不要用/目录,我就遇到了权限不够的问题。后来改成/develop就好了。
===============目标板挂载=====================
mount -t nfs -o nolock 192.168.0.2:/develop /mnt
阅读(2220) | 评论(0) | 转发(0) |