home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / unix / bsd / 3190 < prev    next >
Encoding:
Text File  |  1992-07-30  |  1.6 KB  |  41 lines

  1. Newsgroups: comp.unix.bsd
  2. Path: sparky!uunet!mcsun!sun4nl!eur.nl!pk
  3. From: pk@cs.few.eur.nl (Paul Kranenburg)
  4. Subject: Re: NFS mount of /usr
  5. Message-ID: <1992Jul30.114552.15049@cs.few.eur.nl>
  6. Sender: news@cs.few.eur.nl
  7. Reply-To: pk@cs.few.eur.nl
  8. Organization: Erasmus University Rotterdam
  9. References: <sxjcb-290792093009@sxjcb.uacn.alaska.edu>
  10. Date: Thu, 30 Jul 1992 11:45:52 GMT
  11. Lines: 28
  12.  
  13. In <sxjcb-290792093009@sxjcb.uacn.alaska.edu> sxjcb@orca.alaska.edu (Jay C. Beavers) writes:
  14.  
  15. >I've been playing around with NFS and such and it's working just fine, so
  16. >I've
  17. >tried to take NFS to it's next logical step on my 39 MB system -- NFS
  18. >mounting
  19. >/usr.  However, 386BSD seems to think that this is just a horrible idea and
  20. >I've had no end of trouble.
  21.  
  22. >If I leave the rc file intact, I get a system hang after 'starting system
  23. >logger'.
  24.  
  25. >If I edit the rc file to hardcode my old usr directory (/oldusr) to every
  26. >file located in /usr I get a hang after the rc file ends.  
  27.  
  28. I have used a NFS mounted /usr from day 1 (never had a /usr partition on
  29. the local HD). You need to set the correct parameters to enable your network
  30. device to handle the traffic generated by the server. I am currently using a
  31. WD8003 card which has an 8K buffer, so the default NFS read/write packet size
  32. of 8K will most likely generate to many back-to-back ethernet packets when
  33. mounting from a fast server. I use this entry in /etc/fstab:
  34.  
  35. bridei:/export/exec/i386    /usr    nfs rw,rsize=4096,wsize=4096 0 0
  36.  
  37. Reading from the NFS mounted filesystem is actually faster than from the local
  38. hard disk (not much, but it was above expectations).
  39.  
  40. -pk
  41.