文件系统服务nfs
nfs
#安装服务nfs-utils 或nfs-*
#设置共享路径
vim /etc/exports
###################
/work/public 192.168.10.105/32(rw,sync)
#####################
#说明
#本地路径 允许挂载的服务器/网段(权限) #另一个服务器/网段(权限)
#网段用IP/255.255.255.0或IP/24
#指定IP用 IP/255.255.255.255或IP/32
#权限说明
#ro 只读
#rw 读写
#no_root_squash 登录nfs主机,使用共享目录的用户,如果是root,那么对于这个目录就具有root权限
#root_squash 登录nfs主机,使用共享目录的用户,如果是root,那么会贬为匿名用户(nobody,nfsnobody)
#all_squash 登录nfs主机,使用共享目录的用户,不管是谁,都会贬为匿名用户(nobody,nfsnobody)
#anonuid 指定被贬用户的uid
#anongid 指定被贬用户的gid
#sync 资料同步处理
#async 资料异步处理
#重启服务
systemctl restart nfs-server
systemctl enable nfs-server
#客户端需要安装nfs
#挂载命令
mount -t nfs 目标IP:/路径 本地绝对路径
#例:
mount -t nfs 192.168.10.102:/work/public /work/public/