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

  1. From: chris@tisdec.tis.tandy.com
  2. Date: 10 Nov 92 10:02 CST
  3. Newsgroups: comp.unix.admin
  4. Subject: Re: /etc/group BUG ultrix4.2A
  5. Message-ID: <27200001@tisdec.tis.tandy.com>
  6. Path: sparky!uunet!charon.amdahl.com!pacbell.com!iggy.GW.Vitalink.COM!cs.widener.edu!eff!news.oc.com!utacfd.uta.edu!trsvax!trsvax!tisdec.tis.tandy.com!chris
  7. Nf-ID: #R:alsvid.une.edu.au:9:tisdec.tis.tandy.com:27200001:000:2085
  8. Nf-From: tisdec.tis.tandy.com!chris    Nov 10 10:02:00 1992
  9. References: <9@alsvid.une.edu.au>
  10. Lines: 53
  11.  
  12.  
  13. /* Written  5:47 pm  Nov  9, 1992 by mark@alsvid.UUCP in comp.unix.admin */
  14. /* ---------- "/etc/group BUG ultrix4.2A" ---------- */
  15.  
  16. It seems that ultrix 4.2 has a nice little bug where the length of group entries
  17. is fixed at 1024 bytes. Any one entered against a group past this
  18. magic point does not belong to the group when they login.
  19.  
  20. .
  21. .
  22. .
  23.  
  24. -- 
  25. Mark Garrett    Internet:  mark@arvak.une.edu.au    Phone:     +61 66 20 3859
  26.    University of New England, Northern Rivers, Lismore NSW Australia.
  27. /* End of text from comp.unix.admin */
  28.  
  29. There is a limit to the number and length of a group entry, and is documented
  30. somewhere in the amdinistration notes along with a work-around (Possibly in
  31. the BSD 4.2/3 manuals).
  32.  
  33. There is a documented enhancement that will allow you to extend this
  34. capability.  Basicly you have to manually add any additional users to this
  35. group in the future.
  36.  
  37. First thing you need to do is duplicate the first 3 fields of the group
  38. entry on the following line so that you have two entries for that group.
  39. Second, at the point that people start to not belong to that group( or
  40. around 1000 characters) you need to insert a '\' followed immediatly by EOL.
  41. Move the remaining user ID's to the second line. Any NEW users will be added
  42. to the second entry for this group.
  43.  
  44. You should end up with something like:
  45.  
  46. group0:*:50:user1,user11,.....
  47. group1:*:51:user1,user2,........,user99,\
  48. group1:*:51:user100,user101,.....
  49. group2:*:52:user1,user11,.....
  50.  
  51.  
  52. The other alternative is to make the group, with all these users, their
  53. primary group, and just not list them on that group. (adduser(8) does this)
  54.  
  55. Hope this helps.  We currently use this on one of our systems running ULTRIX
  56. 4.2A.  Just wish I could find the reference that I remember reading at one
  57. time.
  58.  
  59. ==========================================================================
  60. Chris Riney                     Domain: chris@tisdec.tis.tandy.com
  61. Tandy Information Services        UUCP: ...!trsvax!tisdec!chris
  62. Tandy Technology Sqr, Suite 200
  63. Fort Worth, TX 76102             Phone: 817/878-0308; 8:00am-5:00pm CST,Mo-Fr
  64.  
  65.