- 客户端和服务器的内核必须包含特定的选项(这些选项很容易在配置文件中找到。 参 Section 23.1, “速览内核配置” 以获取更多有关NFS的内核配置信息。
- 服务器必须启用 rpcbind, mountd lockd statd 以及在/etc/rc.conf里的nfs_server 进程 :
代码: 全选
rpcbind=yes
mountd=yes
nfs_server=yes
lockd=yes
statd=yes
- 客户端必须启用 rpcbind, lockd statd 以及/etc/rc.conf里的 nfs_client 进程 :
代码: 全选
rpcbind=yes
nfs_client=yes
lockd=yes
statd=yes
- 服务器必须在 /etc/exports 列出输出的目录, 然后运行命令 kill -HUP `cat /var/run/mountd.pid (hup mountd 也可以!).
- 服务器给客户端输出了目录。 可用showmount -e 命令检查一个NFS服务器提供的文件系统清单, 参 showmount(8):
代码: 全选
# showmount -e 192.168.1.2
Exports list on 192.168.1.2:
/home host1 host2 host3
- 客户端主机挂载远程目录用命令 mount 192.168.1.2:/home /home