标签:命令 root 教程 客户端 使用 ble show 文件 odi
1 在服务器端 安装nfs 以及 rpcbind
yum install -y nfs-utils rpcbind
mkdir -p /data/nfs
chown -R nfsnobody:nfsnobody /data/nfs
2 配置权限
vim /etc/exports
文件写入
|
ro 只读
|
启动配置
service rpcbind start #启动服务
systemctl enable rpcbind #设置开机启动
查询nfs挂载,showmount -e 192.168.1.24 后面可以接ip来查看
3 客户端连接
mount
-t nfs 192.168.1.24:
/data/nfs
/nfs
#挂载nfs server的/data/nfs 到/nfs
标签:命令 root 教程 客户端 使用 ble show 文件 odi
原文地址:https://www.cnblogs.com/guokefa/p/12169033.html