home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / unix / bsd / 9124 < prev    next >
Encoding:
Internet Message Format  |  1992-11-20  |  3.1 KB

  1. Path: sparky!uunet!news.claremont.edu!bridge2!sgiblab!darwin.sura.net!wupost!newsfeed.rice.edu!rice!news.Rice.edu!rich
  2. From: rich@Rice.edu (Richard Murphey)
  3. Newsgroups: comp.unix.bsd
  4. Subject: Re: [XFree86]  Help needed badly
  5. Message-ID: <RICH.92Nov20095328@omicron.Rice.edu>
  6. Date: 20 Nov 92 15:53:28 GMT
  7. References: <20NOV199220254593@v9001>
  8. Sender: news@rice.edu (News)
  9. Reply-To: Rich@rice.edu
  10. Organization: Department of Electrical and Computer Engineering, Rice
  11.     University
  12. Lines: 61
  13. In-Reply-To: az7141633@v9001's message of Fri, 20 Nov 1992 12:25:00 GMT
  14.  
  15. In article <20NOV199220254593@v9001> az7141633@v9001 (AZ7141633) writes:
  16.    I am facing the same problem as what both Thanh Luu and S.X. Xue faced;  but I
  17.    could not find any replies to their queries in comp.unix.bsd.
  18.    I would appreciate if anyone could help us get started with XFree86 and 386BSD.
  19.    Thanks in advance.
  20.  
  21.    Sok
  22.    Internet addr:  az7141633@ntuvax.ntu.ac.sg
  23.    With Love from Nanyang Technological Univ of Singapore
  24.  
  25.  
  26.    >X-NEWS: ntuvax.ntu.ac.sg comp.unix.bsd: 7901
  27.    >From: tpl20@pswd.amdahl.com (Thanh Luu)
  28.    >Subject: Problem starting up X
  29.    >Date: 13 Nov 92 17:46:56 GMT
  30.    >
  31.    >I installed XFree86 and the kernel patch.  When I tried to bring up X, using
  32.    >xinit, I got the following message:
  33.    >
  34.    >   XIO: fatal IO error 32 (broken pipe) on X server ":0.0"
  35.    >   after 0 requests (0 known processed) with 0 events remaining
  36.    >   The connection was probably broken by a server shutdown or KillClient
  37.    >
  38.    >What did I miss to do?  Thanks in advance.
  39.  
  40. First try redirecting the output to a file so that you get all the
  41. error messages:
  42.     xinit >errs 2>&1
  43. if you are using sh, or
  44.     xinit >&errs
  45. if you are using csh.
  46.  
  47. Then start looking at your Xconfig file.
  48. From /usr/X386/lib/X11/etc/README.386BSD:
  49.  
  50.  
  51. ---------------- EDITING /usr/X386/lib/X11/Xconfig ----------------
  52.  
  53. You must edit /usr/X386/lib/X11/Xconfig to suit your hardware.  It
  54. tells the X server what kind of monitor and adapter are present.  Read
  55. the X386 man page and /usr/X386/lib/X11/Xconfig.sample first.
  56.  
  57. Once you understand the structure of Xconfig, try to find your
  58. specific monitor and vga card in /usr/X386/lib/X11/etc/modeDB.txt.  If
  59. your Clocks and ModeDB lines are there, grab the values there and put
  60. them in your Xconfig.  If modeDB.txt does not have your hardware, read
  61. /usr/X386/lib/X11/etc/XConfig.Notes for instructions on how to create
  62. the video timing values given your vga card and monitor specs.  The
  63. manual for your monitor and adapter should have these values.  To find
  64. your clocks,  leave the Clocks line out of your Xconfig and run
  65. 'xinit >& xinit.out'.  If X386 can find your clocks, it will print
  66. them out to xinit.out.  Given your clock frequency and horizontal
  67. frequency of your monitor, the program xclk (on agate.berkeley.edu in
  68. /pub/386BSD/0.1-ports/XFree86) can calculate a ModeDB line for you.
  69.  
  70. Unless you add more fonts, your Xconfig's FontPath line should be:
  71.     FontPath "/usr/X386/lib/X11/fonts/misc/,/usr/X386/lib/X11/fonts/75dpi/"
  72. If the FontPath includes non existant directories the server will exit
  73. without any error messages which would give a clue to the cause.
  74.  
  75. Hope that helps!  Rich
  76.