Gentoo Archives: gentoo-user

From: THUFIR HAWAT <hawat.thufir@×××××.com>
To: gentoo-user@l.g.o
Subject: [gentoo-user] Re: copy xorg.conf from knoppix
Date: Wed, 09 Aug 2006 19:34:04
Message-Id: bf6b6d5c0608091220m17f8b41dm87a3f7fc3634807a@mail.gmail.com
1 On 8/9/06, THUFIR HAWAT <hawat.thufir@×××××.com> wrote:
2 > I did notice that Knoppix recognized a specific monitor, wheras the
3 > Gentoo live CD only recognized a generic monitor. Why would Knoppix
4 > recognize a specific monitor where gentoo doesn't?
5 >
6 > I would've assumed things like that are (nearly) independant of the distro.
7 >
8 > -Thufir
9
10 It's just a matter of commenting out things which cause problems? I'm
11 assuming there's a rainbow at the end :)
12
13
14 Script started on Wed Aug 9 20:16:38 2006
15 localhost ~ # X -config /etc/X11/xorg.conf.knoppix
16
17 _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
18
19 _XSERVTransOpen: transport open failed for inet6/localhost:0
20
21 _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6
22
23
24
25 X Window System Version 6.8.2
26
27 Release Date: 9 February 2005
28
29 X Protocol Version 11, Revision 0, Release 6.8.2
30
31 Build Operating System: Linux 2.6.15-gentoo-r5 i686 [ELF]
32
33 Current Operating System: Linux localhost 2.6.15-gentoo-r5 #1 SMP Mon
34 Feb 13 20:23:47 UTC 2006 i686
35
36 Build Date: 20 March 2006
37
38 Before reporting problems, check http://wiki.X.Org
39
40 to make sure that you have the latest version.
41
42 Module Loader present
43
44 Markers: (--) probed, (**) from config file, (==) default setting,
45
46 (++) from command line, (!!) notice, (II) informational,
47
48 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
49
50 (==) Log file: "/var/log/Xorg.0.log", Time: Wed Aug 9 20:16:58 2006
51
52 (++) Using config file: "/etc/X11/xorg.conf.knoppix"
53
54 (EE) Failed to load module "bitmap" (module does not exist, 0)
55
56 (EE) Failed to load module "pcidata" (module does not exist, 0)
57
58
59
60 Fatal server error:
61
62 Unable to load required base modules, Exiting...
63
64
65
66
67
68 Please consult the The X.Org Foundation support
69
70 at http://wiki.X.Org
71
72 for help.
73
74 Please also check the log file at "/var/log/Xorg.0.log" for additional
75 information.
76
77
78
79 localhost ~ # cat /etc/X11/xorg.conf.knoppix -n
80
81 1 Section "ServerLayout"
82
83 2 Identifier "XFree86 Configured"
84
85 3 Screen 0 "Screen0" 0 0
86
87 4 InputDevice "Keyboard0" "CoreKeyboard"
88
89 5 # PS/2 Mouse not detected
90
91 6 # Serial Mouse not detected
92
93 7 InputDevice "USB Mouse" "CorePointer"
94
95 8 EndSection
96
97 9
98
99 10 Section "ServerFlags"
100
101 11 Option "AllowMouseOpenFail" "true"
102
103 12
104
105 13 EndSection
106
107 14
108
109 15 Section "Files"
110
111 16 # RgbPath "/usr/share/X11/rgb"
112
113 17 ModulePath "/usr/lib/xorg/modules"
114
115 18 FontPath "/usr/share/fonts/X11/misc:unscaled"
116
117 19 FontPath "/usr/share/fonts/X11/75dpi:unscaled"
118
119 20 FontPath "/usr/share/fonts/X11/100dpi:unscaled"
120
121 21 FontPath "/usr/share/fonts/X11/Type1"
122
123 22 FontPath "/usr/share/fonts/X11/Speedo"
124
125 23 FontPath "/usr/share/fonts/X11/PEX"
126
127 24 # Additional fonts: Locale, Gimp, TTF...
128
129 25 FontPath "/usr/share/fonts/X11/cyrillic"
130
131 26 # FontPath "/usr/share/fonts/X11/latin2/75dpi"
132
133 27 # FontPath "/usr/share/fonts/X11/latin2/100dpi"
134
135 28 # True type and type1 fonts are also handled via xftlib, see
136 /etc/X11/XftConfig!
137
138 29 FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
139
140 30 FontPath "/usr/share/fonts/truetype"
141
142 31 FontPath "/usr/share/fonts/latex-ttf-fonts"
143
144 32 EndSection
145
146 33
147
148 34 Section "Module"
149
150 35 # Comments: see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=346408
151
152 36 Load "dbe" # Double Buffering Extension, very important.
153
154 37 Load "dri" # This shouldn't be available choice if user has
155 selected driver vga, vesa or nv.
156
157 38 Load "glx" # GLX Extension.
158
159 39 Load "freetype" # Freetype fonts.
160
161 40 Load "type1" # Type 1 fonts
162
163 41 Load "record" # Developer extension, usually not needed
164
165 42 # Load "extmod" # This is okay, but if you look into "man
166 xorg.conf" you'll find option NOT to include DGA extension with
167 extmod, and for a good reason.. DGA causes instability as it access
168 videoram without consulting X about it.
169
170 43 SubSection "extmod"
171
172 44 Option "omit xfree86-dga"
173
174 45 EndSubSection
175
176 46 # Load "speedo" # Speedo fonts, this module doesn't exist in Xorg 7.0.17
177
178 47 # The following are deprecated/unstable/unneeded in Xorg 7.0
179
180 48 # Load "ddc" # ddc probing of monitor, this should be
181 never present, as it gets automatically loaded.
182
183 49 # Load "GLcore" # This should be never present, as it gets
184 automatically loaded.
185
186 50 # Load "bitmap" # Should be never present, as it gets
187 automatically loaded. This is a font module, and loading it in
188 xorg.conf makes X try to load it twice.
189
190 51 EndSection
191
192 52
193
194 53 Section "InputDevice"
195
196 54 Identifier "Keyboard0"
197
198 55 Driver "kbd"
199
200 56 Option "CoreKeyboard"
201
202 57 Option "XkbRules" "xorg"
203
204 58 Option "XkbModel" "pc105"
205
206 59 Option "XkbLayout" "us"
207
208 60
209
210 61 EndSection
211
212 62
213
214 63 Section "InputDevice"
215
216 64 Identifier "Serial Mouse"
217
218 65 Driver "mouse"
219
220 66 Option "Protocol" "Microsoft"
221
222 67 Option "Device" "/dev/ttyS0"
223
224 68 Option "Emulate3Buttons" "true"
225
226 69 Option "Emulate3Timeout" "70"
227
228 70 Option "SendCoreEvents" "true"
229
230 71 EndSection
231
232 72
233
234 73 Section "InputDevice"
235
236 74 Identifier "PS/2 Mouse"
237
238 75 Driver "mouse"
239
240 76 Option "Protocol" "auto"
241
242 77 Option "ZAxisMapping" "4 5"
243
244 78 Option "Device" "/dev/psaux"
245
246 79 Option "Emulate3Buttons" "true"
247
248 80 Option "Emulate3Timeout" "70"
249
250 81 Option "SendCoreEvents" "true"
251
252 82 EndSection
253
254 83
255
256 84 Section "InputDevice"
257
258 85 Identifier "USB Mouse"
259
260 86 Driver "mouse"
261
262 87 Option "Device" "/dev/input/mice"
263
264 88 Option "SendCoreEvents" "true"
265
266 89 Option "Protocol" "IMPS/2"
267
268 90 Option "ZAxisMapping" "4 5"
269
270 91 Option "Buttons" "5"
271
272 92 EndSection
273
274 93
275
276 94 # Auto-generated by KNOPPIX mkxf86config
277
278 95
279
280 96 Section "Monitor"
281
282 97 Identifier "Monitor0"
283
284 98 Option "DPMS" "true"
285
286 99 VendorName "SAM"
287
288 100 ModelName "SAM0022"
289
290 101 HorizSync 30 - 71 # DDC-probed
291
292 102 VertRefresh 50 - 160 # DDC-probed
293
294 103 # These are the DDC-probed settings reported by your monitor.
295
296 104 # 1024x768, 85.0Hz; hfreq=68.68, vfreq=85.00
297
298 105 ModeLine "1024x768" 94.50 1024 1072 1168 1376 768 769 772
299 808 +hsync +vsync
300
301 106 # 800x600, 85.0Hz; hfreq=53.67, vfreq=85.06
302
303 107 ModeLine "800x600" 56.25 800 832 896 1048 600 601 604
304 631 +hsync +vsync
305
306 108 # 800x600, 60.0Hz; hfreq=37.88, vfreq=60.32
307
308 109 ModeLine "800x600" 40.00 800 840 968 1056 600 601 605
309 628 +hsync +vsync
310
311 110 # 640x480, 85.0Hz; hfreq=43.27, vfreq=85.01
312
313 111 ModeLine "640x480" 36.00 640 696 752 832 480 481 484
314 509 -hsync -vsync
315
316 112 # 640x480, 75.0Hz; hfreq=37.50, vfreq=75.00
317
318 113 ModeLine "640x480" 31.50 640 656 720 840 480 481 484
319 500 -hsync -vsync
320
321 114 # 640x480, 60.0Hz; hfreq=31.47, vfreq=59.94
322
323 115 ModeLine "640x480" 25.17 640 648 744 784 480 482 484
324 509 -hsync -vsync
325
326 116 # Extended modelines with GTF timings
327
328 117 # 640x480 @ 100.00 Hz (GTF) hsync: 50.90 kHz; pclk: 43.16 MHz
329
330 118 ModeLine "640x480" 43.16 640 680 744 848 480 481 484 509
331 -HSync +Vsync
332
333 119 # 768x576 @ 60.00 Hz (GTF) hsync: 35.82 kHz; pclk: 34.96 MHz
334
335 120 ModeLine "768x576" 34.96 768 792 872 976 576 577 580 597
336 -HSync +Vsync
337
338 121 # 768x576 @ 72.00 Hz (GTF) hsync: 43.27 kHz; pclk: 42.93 MHz
339
340 122 ModeLine "768x576" 42.93 768 800 880 992 576 577 580 601
341 -HSync +Vsync
342
343 123 # 768x576 @ 75.00 Hz (GTF) hsync: 45.15 kHz; pclk: 45.51 MHz
344
345 124 ModeLine "768x576" 45.51 768 808 888 1008 576 577 580 602
346 -HSync +Vsync
347
348 125 # 768x576 @ 85.00 Hz (GTF) hsync: 51.42 kHz; pclk: 51.84 MHz
349
350 126 ModeLine "768x576" 51.84 768 808 888 1008 576 577 580 605
351 -HSync +Vsync
352
353 127 # 768x576 @ 100.00 Hz (GTF) hsync: 61.10 kHz; pclk: 62.57 MHz
354
355 128 ModeLine "768x576" 62.57 768 816 896 1024 576 577 580 611
356 -HSync +Vsync
357
358 129 # 800x600 @ 100.00 Hz (GTF) hsync: 63.60 kHz; pclk: 68.18 MHz
359
360 130 ModeLine "800x600" 68.18 800 848 936 1072 600 601 604 636
361 -HSync +Vsync
362
363 131 # 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz
364
365 132 ModeLine "1024x768" 113.31 1024 1096 1208 1392 768 769 772
366 814 -HSync +Vsync
367
368 133 # 1152x864 @ 60.00 Hz (GTF) hsync: 53.70 kHz; pclk: 81.62 MHz
369
370 134 ModeLine "1152x864" 81.62 1152 1216 1336 1520 864 865 868
371 895 -HSync +Vsync
372
373 135 # 1152x864 @ 85.00 Hz (GTF) hsync: 77.10 kHz; pclk: 119.65 MHz
374
375 136 ModeLine "1152x864" 119.65 1152 1224 1352 1552 864 865 868
376 907 -HSync +Vsync
377
378 137 # 1152x864 @ 100.00 Hz (GTF) hsync: 91.50 kHz; pclk: 143.47 MHz
379
380 138 ModeLine "1152x864" 143.47 1152 1232 1360 1568 864 865 868
381 915 -HSync +Vsync
382
383 139 # 1280x960 @ 72.00 Hz (GTF) hsync: 72.07 kHz; pclk: 124.54 MHz
384
385 140 ModeLine "1280x960" 124.54 1280 1368 1504 1728 960 961 964
386 1001 -HSync +Vsync
387
388 141 # 1280x960 @ 75.00 Hz (GTF) hsync: 75.15 kHz; pclk: 129.86 MHz
389
390 142 ModeLine "1280x960" 129.86 1280 1368 1504 1728 960 961 964
391 1002 -HSync +Vsync
392
393 143 # 1280x960 @ 100.00 Hz (GTF) hsync: 101.70 kHz; pclk: 178.99 MHz
394
395 144 ModeLine "1280x960" 178.99 1280 1376 1520 1760 960 961 964
396 1017 -HSync +Vsync
397
398 145 # 1280x1024 @ 100.00 Hz (GTF) hsync: 108.50 kHz; pclk: 190.96 MHz
399
400 146 ModeLine "1280x1024" 190.96 1280 1376 1520 1760 1024 1025
401 1028 1085 -HSync +Vsync
402
403 147 # 1400x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 122.61 MHz
404
405 148 ModeLine "1400x1050" 122.61 1400 1488 1640 1880 1050 1051
406 1054 1087 -HSync +Vsync
407
408 149 # 1400x1050 @ 72.00 Hz (GTF) hsync: 78.77 kHz; pclk: 149.34 MHz
409
410 150 ModeLine "1400x1050" 149.34 1400 1496 1648 1896 1050 1051
411 1054 1094 -HSync +Vsync
412
413 151 # 1400x1050 @ 75.00 Hz (GTF) hsync: 82.20 kHz; pclk: 155.85 MHz
414
415 152 ModeLine "1400x1050" 155.85 1400 1496 1648 1896 1050 1051
416 1054 1096 -HSync +Vsync
417
418 153 # 1400x1050 @ 85.00 Hz (GTF) hsync: 93.76 kHz; pclk: 179.26 MHz
419
420 154 ModeLine "1400x1050" 179.26 1400 1504 1656 1912 1050 1051
421 1054 1103 -HSync +Vsync
422
423 155 # 1400x1050 @ 100.00 Hz (GTF) hsync: 111.20 kHz; pclk: 214.39 MHz
424
425 156 ModeLine "1400x1050" 214.39 1400 1512 1664 1928 1050 1051
426 1054 1112 -HSync +Vsync
427
428 157 # 1600x1200 @ 100.00 Hz (GTF) hsync: 127.10 kHz; pclk: 280.64 MHz
429
430 158 ModeLine "1600x1200" 280.64 1600 1728 1904 2208 1200 1201
431 1204 1271 -HSync +Vsync
432
433 159 # 1920x1200 @ 60.00 Hz (GTF) hsync: 74.52; pclk: 193.16 MHz
434
435 160 Modeline "1920x1200" 193.16 1920 2048 2256 2592 1200 1201
436 1204 1242 -HSync +HSync
437
438 161 EndSection
439
440 162
441
442 163 Section "Device"
443
444 164 ### Available Driver options are:-
445
446 165 # sw_cursor is needed for some ati and radeon cards
447
448 166 #Option "sw_cursor"
449
450 167 #Option "hw_cursor"
451
452 168 #Option "NoAccel"
453
454 169 #Option "ShowCache"
455
456 170 #Option "ShadowFB"
457
458 171 #Option "UseFBDev"
459
460 172 #Option "Rotate"
461
462 173 Identifier "Card0"
463
464 174 # The following line is auto-generated by KNOPPIX mkxf86config
465
466 175 Driver "sis"
467
468 176 VendorName "All"
469
470 177 BoardName "All"
471
472 178 # BusID "PCI:1:0:0"
473
474 179 EndSection
475
476 180
477
478 181 Section "Screen"
479
480 182 Identifier "Screen0"
481
482 183 Device "Card0"
483
484 184 Monitor "Monitor0"
485
486 185 DefaultColorDepth 16
487
488 186 SubSection "Display"
489
490 187 Depth 1
491
492 188 Modes "1024x768" "800x600" "640x480"
493
494 189 EndSubSection
495
496 190 SubSection "Display"
497
498 191 Depth 4
499
500 192 Modes "1024x768" "800x600" "640x480"
501
502 193 EndSubSection
503
504 194 SubSection "Display"
505
506 195 Depth 8
507
508 196 Modes "1024x768" "800x600" "640x480"
509
510 197 EndSubSection
511
512 198 SubSection "Display"
513
514 199 Depth 15
515
516 200 Modes "1024x768" "800x600" "640x480"
517
518 201 EndSubSection
519
520 202 SubSection "Display"
521
522 203 Depth 16
523
524 204 Modes "1024x768" "800x600" "640x480"
525
526 205 EndSubSection
527
528 206 SubSection "Display"
529
530 207 Depth 24
531
532 208 Modes "1024x768" "800x600" "640x480"
533
534 209 EndSubSection
535
536 210 SubSection "Display"
537
538 211 Depth 32
539
540 212 Modes "1024x768" "800x600" "640x480"
541
542 213 EndSubSection
543
544 214 EndSection
545
546 215
547
548 216 Section "DRI"
549
550 217 Mode 0666
551
552 218 EndSection
553
554 219
555
556 220
557
558 localhost ~ # date
559
560 Wed Aug 9 20:17:24 IST 2006
561
562 localhost ~ # whoami
563
564 root
565
566 localhost ~ # exit
567
568
569 Script done on Wed Aug 9 20:17:29 2006
570
571
572 <http://hawat.thufir.googlepages.com/knoppix.1.txt>
573
574
575
576
577 thanks,
578
579 Thufir
580
581 --
582 gentoo-user@g.o mailing list