home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / unix / aix / 11485 < prev    next >
Encoding:
Internet Message Format  |  1992-11-11  |  2.6 KB

  1. Path: sparky!uunet!snorkelwacker.mit.edu!ira.uka.de!math.fu-berlin.de!unidui!unidui!hm292hu
  2. From: hm292hu@unidui.uni-duisburg.de (Fred Hucht)
  3. Newsgroups: comp.unix.aix
  4. Subject: Re: remote /usr info needed
  5. Date: 11 Nov 1992 19:52:44 +0100
  6. Organization: Universitaet Duisburg GH
  7. Lines: 59
  8. Message-ID: <hm292hu.721506392@unidui>
  9. References: <1992Nov9.183050.22598@selway.umt.edu>
  10. NNTP-Posting-Host: unidui.uni-duisburg.de
  11.  
  12. In <1992Nov9.183050.22598@selway.umt.edu> mcguire@selway.umt.edu (Charles J McGuire) writes:
  13.  
  14. >I'm looking for info on whether it may be possible to "regress" from
  15. >a diskfull machine to one that uses a remote /usr. I'm running AIX
  16. >3.2.2*. Basically, I have several 220's with fully configured 400M 
  17. >disks that I would now like to reconfigure for use with a remote /usr.
  18. >The only response I've been able to get from IBM support is to 
  19. >re-install the clients using "install for use with remote /usr".
  20. >This means I'll have to go back thru the painful 3.2.2 updates which 
  21. >is something I'd really rather avoid if possible.
  22.  
  23. You can switch from standalone to remote /usr in the following way:
  24.  
  25.  1) Create /sbin/net.info with the following contents:
  26.  
  27.     <client-IP> <server-IP> 0 69 0 0 <netmask> 0 ent0 1
  28.  
  29.     All IPs must be numeric. The last number specifies bnc, change to 0
  30.     for DIX. /sbin/rc.boot reads this file to configure the network 
  31.     interface. Here we have no gateway between client and server and use
  32.     standard ethernet.
  33.  
  34.  2) Edit /etc/filesystems: Comment out the complete /usr:-stanza and add
  35.     a new one with your server-IP:
  36. */usr:
  37. *       dev             = /dev/hd2
  38. *       vfs             = jfs
  39. *       log             = /dev/hd8
  40. *       mount           = automatic
  41. *       check           = false
  42. *       type            = bootfs
  43. *       vol             = /usr
  44. *       free            = false
  45.  
  46. /usr:
  47.         dev             = /usr
  48.         vfs             = nfs
  49.         nodename        = <server-IP>
  50.         mount           = automatic
  51.         check           = false
  52.         type            = boot
  53.         options         = ro,fg,hard,intr,retry=3
  54.  
  55.  3) Execute the command:
  56.  
  57.     bosboot -a -d <bootdisk> -p /usr/lib/boot/netdisk.proto
  58.  
  59.     with <bootdisk> being your bootdisk.
  60.  
  61. With this procedure we have successfully installed a 32H that runs both
  62. as /usr client and standalone (for demos). Note that you must export /usr
  63. with root access and read-only to the client.
  64.  
  65. Note that I don't take any responsibility for crashes and 888's :-)
  66.  
  67. Hope this helps...
  68.  
  69. Fred Hucht, Institute of Theoretical Physics, University of Duisburg, Germany
  70. EMail: fred@hal6000.Uni-Duisburg.DE
  71.