home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / unix / bsd / 9230 < prev    next >
Encoding:
Text File  |  1992-11-23  |  2.3 KB  |  61 lines

  1. Newsgroups: comp.unix.bsd
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!sol.ctr.columbia.edu!destroyer!cs.ubc.ca!uw-beaver!newsfeed.rice.edu!rice!news.Rice.edu!rich
  3. From: rich@Rice.edu (Richard Murphey)
  4. Subject: Re: xdm and login 
  5. In-Reply-To: kuku@acds.physik.rwth-aachen.de's message of Mon, 23 Nov 92 15:49:21 GMT
  6. Message-ID: <RICH.92Nov23111959@omicron.Rice.edu>
  7. Sender: news@rice.edu (News)
  8. Reply-To: Rich@rice.edu
  9. Organization: Department of Electrical and Computer Engineering, Rice
  10.     University
  11. References: <1992Nov23.154921.29674@Urmel.Informatik.RWTH-Aachen.DE>
  12. Date: Mon, 23 Nov 1992 17:19:59 GMT
  13. Lines: 46
  14.  
  15. In article <1992Nov23.154921.29674@Urmel.Informatik.RWTH-Aachen.DE> kuku@acds.physik.rwth-aachen.de (Christoph Kukulies) writes:
  16.    I'm looking for a method to use xdm to come up on my system permanently
  17.    in a fashion similar to the way it's done on most systems, e.g. Ultrix:
  18.  
  19.    at the end of /etc/ttys:
  20.  
  21.    :0 "/usr/bin/login -P /usr/bin/Xprompter -C /usr/bin/dxsession" none on secure w
  22.    indow="/usr/bin/Xcfb"
  23.    :1 "/usr/bin/login -P /usr/local/xprompter-ncd -C /usr/local/start-ncd -e" none
  24.    on secure
  25.  
  26.    What would it require? A special login program? A special init?
  27.    Any clues?
  28.  
  29. just edit /etc/ttys and /etc/rc.local -- nothing special is needed.
  30.  
  31. From /usr/X386/lib/X11/etc/README.386BSD in the XFree86 distribution:
  32.  
  33. If you would rather run xdm on bootup, disable logins on the console
  34. by removing `vga' from /etc/ttys, and add code like the following to
  35. your /etc/rc.local script.
  36.  
  37.   if [ -x /usr/X386/bin/xdm ]; then
  38.     echo -n ' xdm'; /usr/X386/bin/xdm
  39.   fi
  40.  
  41. If you have replaced crypt on your system (see Chris Demetriou's
  42. /usr/386bsd.errata/crypt.instructions) and use encrypted passwords,
  43. you cannot use the supplied xdm binary.  The supplied xdm binary uses
  44. the 386BSD 0.1's dummy crypt routine that prints the message 'Crypt
  45. not present in system' in the xdm-errors file each time a user logs
  46. in.  You can ignore this.  It merely tells you that passwords are
  47. unencrypted.  US export restrictions prevent us from providing an xdm
  48. binary with a real crypt.  If you need it, get the xdm sources
  49. (mit/clients/xdm) and recompile it using `xmkmf -a' and `make'.
  50.  
  51. Rich Murphey 
  52.  
  53.    --
  54.    --Chris
  55.    Christoph P. U. Kukulies
  56.    kuku@acds.physik.rwth-aachen.de
  57.    *** Error code 1
  58.  
  59.    Stop.
  60.  
  61.