Operating System - HP-UX
1825724 Members
3297 Online
109687 Solutions
New Discussion

mount -v reports a "-hosts" entry ?

 
SOLVED
Go to solution
maxwell_smart
Frequent Advisor

mount -v reports a "-hosts" entry ?

Does anybody know the meaning of this entry in the "mount -v" command output?
3 REPLIES 3
Tim Nelson
Honored Contributor
Solution

Re: mount -v reports a "-hosts" entry ?

The -hosts entry is from automountd. The NFS automounter which I typically turn off as it never really worked that well.

A. Clay Stephenson
Acclaimed Contributor

Re: mount -v reports a "-hosts" entry ?

This is a special automounter map entry. -hosts mounts all exported filesystems under a directory in /net.

Suppose the you have the following entry in /etc/auto_master:

/net -hosts

When a user tries to access /net/mickey then the client will try to contact NFS server mickey and will try to mount all exported file systems so that, for example, you might see /net/mickey/u01, /net/mickey/u02, ...
If it ain't broke, I can fix that.
maxwell_smart
Frequent Advisor

Re: mount -v reports a "-hosts" entry ?

Thanks a lot for your help!