![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Modify FileSystems on AIX | panchpan | AIX | 3 | 04-18-2008 03:10 AM |
| Solaris - unknown hostname - how can I change hostname? | XNOR | UNIX for Dummies Questions & Answers | 1 | 03-29-2007 07:52 PM |
| Vdump of two filesystems | geraldwilson | Filesystems, Disks and Memory | 4 | 03-21-2005 07:03 AM |
| Filesystems GT 95% | YS2002 | Shell Programming and Scripting | 3 | 09-30-2002 10:19 AM |
| Filesystems | marun | UNIX for Advanced & Expert Users | 9 | 09-04-2001 03:49 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Mounting nfs filesystems with /net/hostname
Ok ive inherited a number of unix boxes who have drives mounted in different ways. Mostly the nfs filesystems are named in vfstab but some mount points for remote servers are not mentioned in vfs tab and are in fact links to /net/hostname/directory
Does anyone know how this is setup? |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
automount is cool
Do a man on automount. "man automount"
This is what utilizes the /net mountpoint. The reason they don't show up in the vfstab is that they are not always available to be mounted and your system would hang on boot waiting for these mount points to be visible. Also, they are only available while the are being used. If they are not accessed for a period of time they are unmounted. Automount allows you to mount these filesystems when they are available and/or needed. You should have a config file somewhere with "auto" in the name under the /etc directory. On HPUX, it is under /etc/rc.config.d From the manpage: automount is a command that installs autofs mount points and associates an automount map with each mount point. The autofs filesystem monitors attempts to access directories within it and notifies the automountd daemon (See automountd(1M)). The daemon uses the map to locate a filesystem, which it then mounts at the point of reference within the autofs filesystem. You can assign a map to an autofs mount using an entry in the /etc/auto_master map or a direct map. If the file system is not accessed within an appropriate interval (five minutes by default), the automountd daemon unmounts the file system. Hope this gives you some ideas.
__________________
My brain is your brain |
||||
| Google The UNIX and Linux Forums |