NFSでhome directoryをマウント

NFSサーバ側設定

#vi /etc/exports

/home    client(rw)

#exportfs -ra

#vi /etc/sysconfig/nfs

MOUNTD_PORT=
STATD_PORT=
LOCKD_TCPPORT=
LOCKD_UDPPORT=

#chkconfig portmap on
#service portmap start
#chkconfig nfs on
#service nfs start

iptablesで111,2049,上記で指定した4つのポートを通す

NFSクライアント側

#chkconfig portmap on
#service portmap start

#vi /etc/fstab

server:/home            /home                   nfs     defaults        0 0


参考URL
http://www.brennan.id.au/19-Network_File_System.html
http://www.asahi-net.or.jp/~aa4t-nngk/nfs.html
http://www.troubleshooters.com/linux/nfs.htm#_Get_the_Daemons_Running