home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / unix / bsd / 10386 < prev    next >
Encoding:
Internet Message Format  |  1992-12-21  |  2.8 KB

  1. Path: sparky!uunet!olivea!charnel!rat!usc!cs.utexas.edu!uwm.edu!spool.mu.edu!caen!saimiri.primate.wisc.edu!usenet.coe.montana.edu!news.u.washington.edu!uw-beaver!newsfeed.rice.edu!rice!news.Rice.edu!rich
  2. From: rich@Rice.edu (& Murphey)
  3. Newsgroups: comp.unix.bsd
  4. Subject: Re: [XFree86 386BSD] can't xinit (help!)
  5. Message-ID: <RICH.92Dec18122434@superego.Rice.edu>
  6. Date: 18 Dec 92 18:24:34 GMT
  7. References: <1992Dec18.103352.20052@netcom.com>
  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: 52
  13. In-Reply-To: rimkus@netcom.com's message of Fri, 18 Dec 1992 10:33:52 GMT
  14.  
  15. >>>>> In article <1992Dec18.103352.20052@netcom.com>, rimkus@netcom.com (Mike Rimkus) writes:
  16.  
  17. Mike> When I run xinit, as root, I get two lines of version info then:
  18. Mike> -----------------
  19. Mike> Configured drivers:
  20. Mike>   VGA256 (256 colour SVGA):
  21. Mike>     et4000, et3000, pvga1, gvga, ati, tvga8900
  22. Mike> XIO:  fatal IO error 32 (Broken pipe) on X server ":0.0"
  23. Mike> -----------------
  24. Mike> etc. The server doesn't give me a clue as to why it's failing. I'm fairly new
  25. Mike> to X, so it may be something obvious.
  26.  
  27.  
  28.   First, redirect the error messages to a file:
  29.       xinit >& xinit.out
  30.   because otherwise those messages which are printed while the console
  31.   is in graphics mode are lost.  You get more information this way.
  32.  
  33. Mike> The XFree86 docs make much fuss about getting proper Xconfig values, else
  34. Mike> X won't work. I had placed a ModeDB line in Xconfig (Is there Xconfig
  35. Mike> documentation, BTW?) that I got as output from "xclk -h 45 704". (My ATI Ultra
  36. Mike> board has 45 & 33MHz crystals. My Gateway CrystalScan 1024NI accepts 48KHz
  37. Mike> horzontal.) clock.exe from the Linux distribution didn't give me clock rates,
  38. Mike> it just hung my machine. Do I need the clock.exe output to create some "Clocks"
  39. Mike> line in the vga256 section of Xconfig?
  40.  
  41.   
  42.   First, don't use the obsolete clock.exe program because it will
  43.   not work for many vga cards that XFree86 supports.  The XFree86 1.1 X
  44.   server has improved clock detection built in.  Let it detect the dot
  45.   clocks and save them in a file:
  46.   
  47.   xinit >& xinit.out
  48.   
  49.   If your card is supported, it will report your chipset (et4000 in this
  50.   example) as well as the video memory size and number of clocks:
  51.   
  52.       VGA256: et4000 (mem: 1024k numclocks: 16)
  53.   
  54.   It will then report the values of all the dot clocks it can measure:
  55.   
  56.       VGA256:   clocks: 25 28 33 37 40 45 80 65 13 15 17 19 20 23  0  0
  57.   
  58.   It is recommended that once you find these values you put them back in
  59.   your Xconfig.  The server will start up slightly faster if you do.
  60.   For example: 
  61.   
  62.       Chipset "et4000"
  63.       Videoram 1024
  64.       clocks 25 28 33 37 40 45 80 65 13 15 17 19 20 23  0  0
  65.   
  66. Rich
  67.