mounting file systems and autofs tips and samples
mounting nfs via fstab
server:/usr/local/pub /pub nfs rsize=8192,wsize=8192,timeo=14,intr
Can check the nfs sharing status by using “showmount -e server”
for nfs in autofs,
to mount the directory /hostdir on /misc/mountpoint on your machine, add the following line to auto.master:
/misc /etc/auto.misc –timeout 60
then in auto.misc
mountpoint -rw,soft,intr,rsize=8192,wsize=8192 nfshost.com:/hostdir
service [...]
