Ubuntu安装nfs
2023年8月13日...小于 1 分钟
Ubuntu安装nfs
# 安装nfs服务端
apt-get install nfs-kernel-server -y
vim /etc/exports
# 添加数据
# 路径为挂载路径
/data/nfs/sshw *(async,insecure,no_root_squash,no_subtree_check,rw)
# 重启
/etc/init.d/nfs-kernel-server restart
# 校验配置
showmount -e
# 安装连接客户端
apt install nfs-common -y
mount 10.24.1.235:/data/nfs/sshw /home/ubuntu/yyl2/sshw
sudo mount -t nfs -o nolock,nfsvers=3,vers=3 10.24.1.235:/data/nfs/sshw /Users/yyl/sshw
你认为这篇文章怎么样?
- 0
- 0
- 0
- 0
- 0
- 0
Powered by Waline v3.3.2