On the server, the nfs kernel daemon is the one running. I can’t check it in the same way on the client, as it runs Ubuntu, but I would have to assume that the case is the same there. Also, I’m using Samba as well as NFS (and ssh) mainly because I wanted them all to be set up, and I was curious to see which ones worked, when ssh was first being problematic. There’s no reason that I can see not to use Samba between Linux machines, and if anything, it’s there so when I use Windows XP on my laptop I can still connect.
Here is cat /etc/exports:
dan@linux-8amt:~> cat /etc/exports
%H/ 192.168.0.0/255.255.255.0(rw,async)
/home/ 192.168.0.0/255.255.255.0(rw,async)
/home/groups/ 192.168.0.0/255.255.255.0(rw,async)
/media/BRANDESKY20/ 192.168.0.0/255.255.255.0(rw,async)
/home/dan/ *(rw,async,all_squash)
And exportfs -v:
linux-8amt:/home/dan # exportfs -v
/media/BRANDESKY20
192.168.0.0/255.255.255.0(rw,async,wdelay,root_squash,no_subtree_check)
/home/groups 192.168.0.0/255.255.255.0(rw,async,wdelay,root_squash,no_subtree_check)
/home/dan/%H 192.168.0.0/255.255.255.0(rw,async,wdelay,root_squash,no_subtree_check)
/home 192.168.0.0/255.255.255.0(rw,async,wdelay,root_squash,no_subtree_check)
/home/dan <world>(rw,async,wdelay,root_squash,all_squash,no_subtree_check)
-Dan