服务端:(192.168.1.2)
service rpcbind start (有些版本可能要portmap 或portreserve)
vi /etc/exports (特殊需求的配置,baidu一下就知道了)
/home/share 192.168.1.3(rw,sync,no_root_squash)
如果没有安装nfs(yum install nfs-utils)
service nfs restart
客户端:(192.168.1.3)
如果没有安装nfs(yum install nfs-utils)
mkdir /home/client
mount -t nfs 192.168.1.2:/home/share /home/client
搞定!