Network drive does not connect at boot

I have an NFS share included in my /etc/fstab and when I login and run mount I see

192.168.1.18:/ on /net (nfs)

ls -al /net does not show any files, but when I run umount /net, then ls -al /netshows all the files.

Can someone explain what I need to do to avoid this?
 
Do you also have automountd(8) enabled? Because /net is a default autofs(5) mount point. Your fstab and autofs(5) might be conflicting right now.

Comment out this line in /etc/auto_master:
Code:
/net            -hosts          -nobrowse,nosuid,intr
 
Back
Top