home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / sys / next / sysadmin / 7138 < prev    next >
Encoding:
Text File  |  1992-12-21  |  2.3 KB  |  55 lines

  1. Newsgroups: comp.sys.next.sysadmin
  2. Path: sparky!uunet!spool.mu.edu!umn.edu!csus.edu!news
  3. From: eps@futon.SFSU.EDU (Eric P. Scott)
  4. Subject: Re: autonfsmount
  5. Message-ID: <1992Dec19.125624.20509@csus.edu>
  6. Sender: news@csus.edu
  7. Reply-To: eps@cs.sfsu.edu
  8. Organization: San Francisco State University
  9. References: <BzD4pF.FxA@csulb.edu>
  10. Date: Sat, 19 Dec 1992 12:56:24 GMT
  11. Lines: 42
  12.  
  13. In article <BzD4pF.FxA@csulb.edu> werts@csulb.edu (Michael Werts)
  14.     writes:
  15. >Has anyone else experienced trouble with hierarchical
  16. >mounts using autonfsmount? Did you find a way to make
  17. >it work?
  18.  
  19. 1) List the desired mounts in *reverse* order, e.g.:
  20.  
  21. wuarchive.wustl.edu:/archive/mirrors4 /Net nfs ro,soft,net,intr,timeo=4,nosuid,noquota,retry=2 0 0
  22. wuarchive.wustl.edu:/archive/mirrors3 /Net nfs ro,soft,net,intr,timeo=4,nosuid,noquota,retry=2 0 0
  23. wuarchive.wustl.edu:/archive/mirrors2 /Net nfs ro,soft,net,intr,timeo=4,nosuid,noquota,retry=2 0 0
  24. wuarchive.wustl.edu:/archive/mirrors /Net nfs ro,soft,net,intr,timeo=4,nosuid,noquota,retry=2 0 0
  25. wuarchive.wustl.edu:/archive/systems /Net nfs ro,soft,net,intr,timeo=4,nosuid,noquota,retry=2 0 0
  26. wuarchive.wustl.edu:/archive/usenet /Net nfs ro,soft,net,intr,timeo=4,nosuid,noquota,retry=2 0 0
  27. wuarchive.wustl.edu:/archive /Net nfs ro,soft,net,intr,timeo=4,nosuid,noquota,retry=2 0 0
  28.  
  29. 1a) wuarchive provides erratic service; sometimes the mountd will
  30.     get hosed, and autonfsmount doesn't like this.  It's happened
  31.     to me enough times that I just keep a little shell script
  32.     lying around:
  33.  
  34.     #!/bin/csh -f
  35.     set verbose
  36.     /usr/etc/ping wuarchive.wustl.edu 56 1
  37.     /usr/etc/rpcinfo -u wuarchive.wustl.edu 100003 2
  38.     /usr/etc/rpcinfo -u wuarchive.wustl.edu 100005 1
  39.  
  40.     If it gets all the way through without errors, autonfsmount
  41.     should be happy.  If not, I stay out of /Net/wuarchive...
  42.  
  43. 1b) NFS access to wuarchive.wustl.edu can be slow when it's
  44.     heavily loaded.  FTP is usually faster for getting directory
  45.     listings.
  46.  
  47. 2) Don't chdir "all the way down" if the filesystems aren't
  48.    mounted; just go to the uppermost mount point and wait.
  49.    (Walking through the Browser (starting at /Net) is fine, but I
  50.    wouldn't recommend putting a submount on the shelf.)
  51.    Otherwise you tickle a race condition where the interior mount
  52.    fails (presumably from EBUSY on /private/Net/whatever).
  53.  
  54.                     -=EPS=-
  55.