Creating NFS Share on Ubuntu
on Nfs, Ubuntu, Linux
Install nfs-server
sudo apt-get install nfs-kernel-server
Edit /etc/exports to add share
/srv/homes hostname1(rw,sync,no_subtree_check) hostname2(ro,sync,no_subtree_check)
Export share
sudo exportfs -a