1. 配置 nfs server
sudo apt-get install nfs-kernel-server
sudo vi /etc/exports 配置nfs。
添加:
/home/song/nfs *(rw,sync,no_root_squash,no_subtree_check)
/home/song/nfs 为要配置的目录
重启服务
sudo /etc/init.d/rpcbind restart # 重启rpcbind
sudo /etc/init.d/nfs-kernel-server restart # 重启nfs
查看本机共享文件
showmount -e 127.0.0.1
2. nfs client
安装
sudo apt-get install nfs-common
查看服务端共享文件
showmount -e 192.168.1.122
挂载
sudo mount -t nfs 192.168.1.122:/home/share/nfs /mnt