服务端
- 安装 nfs
sudo apt-get install nfs-kernel-server netstat
- 修改配置文件
sudo vim /etc/exports
/home/xxx ×(ro,sync,no_subtree_check)
- 重启服务
sudo /etc/init.d/nfs-kernel-server restart
- 查看服务
netstat -tl | grep nfs
客户端
- 安装 nfs
sudo apt-get install nfs-kernel-server netstat
showmount -e 192.168.xxx.xxx
查看服务端的 nfs 目录- 本机创建目录并挂载
mkdir /mnt/nfs_dir
mount 192.168.xxx.xxx:/home/xxx /mnt/nfs_dir
- 查看本机已经挂载的目录
showmount -a
参考:
(实用)Ubuntu 开启NFS服务
https://www.cnblogs.com/Security-Darren/p/3945375.html