前言:
假设:
1.搭建服务端
1.1在服务器A上安装nfs(我这个服务器A是Ubuntu)
sudo apt-get install nfs-kernel-server # 安装 NFS服务器端
1.2启动服务
sudo systemctl enable nfs-server sudo systemctl start nfs-server # 启动服务
1.3查看服务
sudo systemctl status nfs-server
1.4创建文件夹
sudo mkdir /home/nfsfile # 创建一个共享文件夹 sudo chown -Rf 777 /home/nfsfile # 增加权限
1.5打开配置参数文件
sudo vim /etc/exports # 设置配置文件
1.6输入设置参数
/home/nfsfile 192.168.*.*(rw,no_root_squash,sync) # 允许192.168下所有网段都可以访问
1.7 常用参数解释
1.7再查看一下服务器状态,如果没起来就在启动一下
sudo systemctl status nfs-server
2.配置客户端
2.1Ubuntu系统
sudo apt-get install nfs-common
2.2 CentOS系统
yum install nfs-utils -y
2.3创建客户端目录,可以起一样的名字
mkdir ./nfsfile # 在当前目录下创建一个nfsfile
2.4 挂载
mount -t nfs 192.168.49.160:/home/nfsfile ./nfsfile #把远程的nfsfile挂载到自己的
2.5 查看一下
df -h
成功了!
扩展
1.如何取消挂载?
sudo umount ./nfsfile
参考资料
https://www.linuxprobe.com/basic-learning-12.html
https://developer.aliyun.com/article/517837
https://www.pimspeak.com/ubuntu20-04-nfs.html
https://blog.csdn.net/baidu_33032485/article/details/114496376