6.2与之前的5.X版本在软件安装上有一点小的区别
 
安装
5.X
yum install nfs-utils portmap
6.2
yun install rpcbind      #6.2系统上 rpcbind 包代替 portmap ,NFS 与RPC 如何工作请参照  http://blog.csdn.net/dianhuiren/article/details/7192668
 
配置NFS服务端(IP:192.168.10.142)
vi /etc/exports
/test 192.168.10.0/24(rw,sync,no_root_squash)
/test  共享目录
192.168.10.0/24  运行访问共享的来源
(rw,sync,no_root_squash)目录权限
启动NFS
/etc/init.d/rpcbind start
/etc/init.d/nfs start
 
客户端使用:
showmount -e 192.168.10.142  列出NFS服务端共享出来的目录
挂载
mount -t  nfs 192.168.10.142:/test  /mnt
 
本文仅对大概过程进行记录,没有进行细节描述