CentoOS 7 NFS support
CentOS is pretty new, and some default stuff is just missing. Like NFS suport out of the box.
We have to install package called nfs-utils
yum -y install nfs-utils
we can mount using standard mount 192.168.1.15:/c/share
mount -a
to make it parmament
edit /etc/fstab
192.168.1.15:/c/share /mnt/nfs nfs defaults 0 0