主的serverIP:192.168.216.188 客户端和服务端在一个网段 1.安装NFS Ubuntu上默认是没有安装NFS服务器的,首先要安装NFS服务程序: $ sudo apt-get install nfs-kernel-server
2.建立一个nfs服务的专有文件夹 $ mkdir -p /home/share
3.打开portmap服务 $ service portmap start
4.修改/etc/exports文件 在最后加上共享的文件夹路径 /home/share *(rw,sync,no_root_squash,no_subtree_check)
5.重启NFS服务: $ sudo /etc/init.d/nfs-kernel-server restart
6.更新nfs服务: $ sudo exportfs -a 7.查看共享的目录 $showmount -e
回到客户端上 1.安装客户端 $sudo apt-get install nfs-common
2.挂载 mount 192.168.216.188:/home/share /mnt
3、测试在/mnt/下创建文件夹 在server/home/share/下会看到
原文链接:https://www.f2er.com/ubuntu/350418.html