1、安装nfs-kernel
sudo apt install nfs-kernel-server
2、修改配文件
sudo vim /etc/exports
格式解析:
路径 访问IP(权限参数)
/home/katcoo/nfs_share:NFS共享的文件夹路径
*:所有IP均可连接
(rw,sync,no_root_squash,no_subtree_check):
rw:对该共享目录有读写权限
sync:资料同步写入到内存与硬盘中
no_root_squash:客户机用root访问该共享文件夹时,不映射root用户
no_subtree_check:不检查父目录权限
3、重启NFS服务
sudo service nfs-kernel-server restart
客户端挂载NFC目录:
mount -t nfs -o nolock ip:/home/katcoo/nfs_share