Setting up nfs in debian stretch
On nfs server
#aptitude install nfs-kernel-server
Edit /etc/exports configuration file
/home/me/public 192.168.1.2(rw,no_root_squash,subtree_check)<br />
Restart nfs
#exportfs -a
#/etc/init.d/nfs-kernel-server start
On nfs client
#aptitude install nfs-common
#/etc/init.d/nfs-common start
To list available nfs
#showmount -e 192.168.1.2
To mount nfs
#mount -t nfs /home/me/public /mnt/public<br />