![[NFS] Debian8 安装配置nfs服务](https://www.coderclan.cc/wp-content/themes/Ality/img/default.jpg)
操作环境:
1、Debian8.9
2、AM335x单板
具体步骤
1、安装 nfs-common nfs-kernel-server rpcbind。
apt-get install nfs-common nfs-kernel-server
2、按自己的需要,在相应位置创建共享目录。
mkdir /home/syh/nfsroot
3、修改配置文件。
sudo vim /etc/exports
在文件中添加下面这句配置信息:
/home/syh/nfsroot *(rw,no_root_squash,sync)
/home/syh/nfsroot修改成你自己创建的共享目录。
相...