home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / sys / sun / admin / 9543 < prev    next >
Encoding:
Text File  |  1992-12-17  |  2.3 KB  |  61 lines

  1. Newsgroups: comp.sys.sun.admin
  2. Path: sparky!uunet!utcsri!torn!mcshub!edge!johnb
  3. From: johnb@edge.cis.mcmaster.ca (John Benjamins)
  4. Subject: Re: help with xdm -- pleeeeeeease...
  5. Message-ID: <1992Dec17.160557.2525@mcshub.dcss.mcmaster.ca>
  6. Sender: usenet@mcshub.dcss.mcmaster.ca
  7. Nntp-Posting-Host: edge.cis.mcmaster.ca
  8. Organization: C.I.S., McMaster Univ., Hamilton, Ontario, CANADA
  9. References: <Bz09zw.AGn@news.cso.uiuc.edu> <1992Dec12.055443.8995@plx.com>
  10. Date: Thu, 17 Dec 1992 16:05:57 GMT
  11. Lines: 48
  12.  
  13. In article <1992Dec12.055443.8995@plx.com> thomas@plxsun (Thomas Leibold) writes:
  14. >Jeremy Payne (jrpg8255@uxa.cso.uiuc.edu) wrote:
  15. >:   I've been pulling my hair out for some time now trying to get
  16. >: xdm to work using SunOS 4.1.1 & openwindows 2.0.  I can get it
  17. >: installed etc., but logging in results in a gadget-less xterm
  18. >: in the upper corner and nothing else -- not what I had in mind.
  19. >
  20. >You are actually getting further than we did with Sun's xdm. On our system
  21. >it's replaced with the MIT X11R4 xdm.
  22. >It sounds as if you don't start a window manager for your session. Unless you
  23. >use a X-terminal with buildin window manager, you need to run a  window manager.
  24. >Your Xsession file should start a window manager for you, if you don't have
  25. >a .xsession file in your $HOME-directory. If you have a .xsession file put
  26. >the command to start the window manager there. For openwindows this is:
  27. >    olwm &
  28. >You may have other window managers available on your system too. 
  29. >
  30.  
  31. If you start the openwin version of xdm properly, there's no major
  32. problem.  In my /etc/rc.local I have (near the end):
  33.  
  34. if [ -f /etc/rc.xdm ]; then
  35.         echo "Starting X Display Manager, xdm"
  36.         sh /etc/rc.xdm
  37. fi
  38.  
  39. and then in /etc/rc.xdm I have:
  40.  
  41. #!/bin/sh
  42. #
  43. # @(#)rc.xdm 1.0 26/02/92 -- johnb CIS
  44. #
  45. OPENWINHOME=${OPENWINHOME:-/usr/openwin}
  46. LD_LIBRARY_PATH=$OPENWINHOME/lib:/usr/lib
  47. PATH=$OPENWINHOME/bin:$PATH
  48. export LD_LIBRARY_PATH PATH OPENWINHOME
  49.  
  50. $OPENWINHOME/bin/xdm -config $OPENWINHOME/lib/xdm/xdm-config
  51.  
  52. I have no problems with xdm at this point, works just like the X11R4
  53. one again:-)
  54.  
  55. Hope this helps.
  56. -- 
  57.  //  E. John Benjamins -- <johnb@edge.cis.mcmaster.ca>
  58. // "Facts are simple and facts are straight. Facts are lazy and facts are late.
  59. \\  Facts all come with points of view. Facts don't do what I want them to."
  60.  \\        - David Byrne (Talking Heads)
  61.