NFS 服务器配置(Ubuntu)
# NFS 服务器配置(Ubuntu 20.0) # 1.配置网络环境 # NFS 的客户端和服务端必须在同一局域网 # 2.在服务器上安装nfs sudo apt-get install nfs-common sudo apt-get install nfs-kernel-server # 3.创建共享目录并分配读写权限 sudo mkdir /opt/share sudo chmod 777 /opt/share # 4.共享目录(修改/etc/exports文件) # 共享/opt/share,*代表所有ip都可访问(192.168.0.0/24、192.168.0.*),rw代表可读可写(ro),no_root_squash以非root用户访问 /opt/share *(rw,sync,no_root_squash) # 5.启动服务 systemctl status nfs-server systemctl start nfs-server # 6.客户端挂载 sudo apt-get install nfs-common sudo mount -t nfs 127.0.0.1:/opt/share ~/nfs-share -o nolock # 7.解除挂载 sudo umount -t nfs 127.0.0.1:/opt/share