Ik heb dus 2 nvidia kaartjes in mijn comp zitten waarvan ik dus beide de tv-out naar een aparte tv wil hebben maar het wil maar niet lukken met de pci kaart.
AGP= nvidia mx kaart
PCI= tnt kaart
zowel lspci als scanpci zien beide kaarten goed. echter in mijn alternatieve config verwijs ik dmz busid expliciet naar de PCI kaart maar weigert daar iets voor te doen?
Ook heb ik diverse resoluties geprobeerd zowel 640x480 als 800x600 op 16 en 24 bit.
Er is geen monitor aangesloten alleen een tv.
Ik heb 2 documenten bijgevoegd
1 XF86CONFIG
2 /var/log/xfree86.1.log
AGP= nvidia mx kaart
PCI= tnt kaart
zowel lspci als scanpci zien beide kaarten goed. echter in mijn alternatieve config verwijs ik dmz busid expliciet naar de PCI kaart maar weigert daar iets voor te doen?
Ook heb ik diverse resoluties geprobeerd zowel 640x480 als 800x600 op 16 en 24 bit.
Er is geen monitor aangesloten alleen een tv.
Ik heb 2 documenten bijgevoegd
1 XF86CONFIG
2 /var/log/xfree86.1.log
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
| ### BEGIN DEBCONF SECTION
# XF86Config-4 (XFree86 server configuration file) generated by dexconf, the
# Debian X Configuration tool, using values from the debconf database.
#
# Edit this file with caution, and see the XF86Config-4 manual page.
# (Type "man XF86Config-4" at the shell prompt.)
#
# If you want your changes to this file preserved by dexconf, only make changes
# before the "### BEGIN DEBCONF SECTION" line above, and/or after the
# "### END DEBCONF SECTION" line below.
#
# To change things within the debconf section, run the command:
# dpkg-reconfigure xserver-xfree86
# as root. Also see "How do I add custom sections to a dexconf-generated
# XF86Config or XF86Config-4 file?" in /usr/share/doc/xfree86-common/FAQ.gz.
Section "ServerFlags"
Option "AllowMouseOpenFail" "True"
Option "BlankTime" "0"
Option "StandbyTime" "0"
Option "SuspendTime" "0"
Option "OffTime" "0"
Option "NoPM" "true"
EndSection
Section "Files"
# FontPath "unix/:7100" # local font server
# if the local font server has problems, we can fall back on these
FontPath "/usr/lib/X11/fonts/misc"
FontPath "/usr/lib/X11/fonts/cyrillic"
FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/Type1"
FontPath "/usr/lib/X11/fonts/Speedo"
FontPath "/usr/lib/X11/fonts/100dpi"
FontPath "/usr/lib/X11/fonts/75dpi"
EndSection
Section "Module"
# Load "GLcore"
# Load "bitmap"
Load "dbe"
# Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
# Load "int10"
# Load "pex5"
# Load "record"
# Load "speedo"
Load "type1"
# Load "vbe"
# Load "xie"
# Load "v4l"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "keyboard"
Option "CoreKeyboard"
Option "XkbRules" "xfree86"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/ttyS0"
Option "Protocol" "auto"
# Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
Option "AllowMouseOpenFail" "true"
EndSection
#Section "InputDevice"
# Identifier "Generic Mouse"
# Driver "mouse"
# Option "SendCoreEvents" "true"
# Option "Device" "/dev/psaux"
# Option "Protocol" "ImPS/2"
# Option "Emulate3Buttons" "true"
# Option "ZAxisMapping" "4 5"
#EndSection
Section "Device"
Identifier "tnt"
Driver "nvidia"
BusID "PCI:0:8:0"
Option "NvAGP" "0"
EndSection
Section "Monitor"
Identifier "Generic Monitor"
HorizSync 28-38
VertRefresh 43-72
Option "DPMS"
EndSection
Section "Monitor"
Identifier "TV"
HorizSync 30-50
VertRefresh 60
EndSection
Section "Screen"
Identifier "Screen_tvout640"
Device "tnt"
Monitor "TV"
DefaultDepth 16
# PAL-G for Finland; PAL-D for China and North Korea, see TVOUT_README
Option "TVStandard" "PAL-G"
Option "ConnectedMonitor" "TV"
Option "TVOutFormat" "SVIDEO"
Subsection "Display"
Depth 16
Modes "640x480"
ViewPort 0 0
EndSubsection
EndSection
Section "Screen"
Identifier "Screen_tvout800"
Device "tnt"
Monitor "TV"
DefaultDepth 24
Option "TVStandard" "PAL-G"
Option "ConnectedMonitor" "TV"
Option "TVOutFormat" "SVIDEO"
Subsection "Display"
Depth 24
Modes "800x600"
ViewPort 0 0
EndSubsection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Screen_tvout800"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
# InputDevice "Generic Mouse"
EndSection
Section "DRI"
Mode 0666
EndSection
### END DEBCONF SECTION |
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
| This is a pre-release version of XFree86, and is not supported in any
way. Bugs may be reported to XFree86@XFree86.Org and patches submitted
to fixes@XFree86.Org. Before reporting bugs in pre-release versions,
please check the latest version in the XFree86 CVS repository
(http://www.XFree86.Org/cvs)
XFree86 Version 4.1.0.1 / X Window System
(protocol Version 11, revision 0, vendor release 6510)
Release Date: 21 December 2001
If the server is older than 6-12 months, or if your card is
newer than the above date, look for a newer version before
reporting problems. (See http://www.XFree86.Org/FAQ)
Build Operating System: Linux 2.6.9-ac6 i686 [ELF]
Module Loader present
(==) Log file: "/var/log/XFree86.1.log", Time: Sun Dec 26 21:20:54 2004
(--) using VT number 8
(WW) Open APM failed
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.1
XFree86 Video Driver: 0.4
XFree86 XInput driver : 0.2
XFree86 Server Extension : 0.1
XFree86 Font Renderer : 0.2
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.2
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.4
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,0305 card 0000,0000 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,8305 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:07:0: chip 1106,0686 card 1106,0000 rev 40 class 06,01,00 hdr 80
(II) PCI: 00:07:1: chip 1106,0571 card 1106,0571 rev 06 class 01,01,8a hdr 00
(II) PCI: 00:07:2: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:07:3: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:07:4: chip 1106,3057 card 1106,3057 rev 40 class 06,80,00 hdr 00
(II) PCI: 00:08:0: chip 10de,0020 card 1092,4820 rev 04 class 03,00,00 hdr 00
(II) PCI: 00:09:0: chip 9005,0010 card 9005,a180 rev 00 class 01,00,00 hdr 00
(II) PCI: 00:0a:0: chip 8086,1229 card 0e11,b01e rev 05 class 02,00,00 hdr 00
(II) PCI: 00:0b:0: chip 1102,0002 card 1102,0020 rev 05 class 04,01,00 hdr 80
(II) PCI: 00:0b:1: chip 1102,7002 card 1102,0020 rev 05 class 09,80,00 hdr 80
(II) PCI: 00:0c:0: chip 109e,036e card 153b,1135 rev 02 class 04,00,00 hdr 80
(II) PCI: 00:0c:1: chip 109e,0878 card 153b,1135 rev 02 class 04,80,00 hdr 80
(II) PCI: 01:00:0: chip 10de,002d card 17f2,4010 rev 15 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) LoadModule: "scanpci"
(II) Loading /usr/X11R6/lib/modules/libscanpci.a
(II) Module scanpci: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.4
(II) UnloadModule: "scanpci"
(II) Unloading /usr/X11R6/lib/modules/libscanpci.a
(II) Host-to-PCI bridge:
(II) PCI-to-ISA bridge:
(II) PCI-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0c (VGA_EN is set)
(II) Bus 1 I/O range:
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xda000000 - 0xdbffffff (0x2000000) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1 0 0xd8000000 - 0xd9ffffff (0x2000000) MX[B]
(II) Bus -1: bridge is at (0:7:0), (0,-1,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus -1 I/O range:
(II) Bus -1 non-prefetchable memory range:
(II) Bus -1 prefetchable memory range:
(--) PCI: (0:8:0) NVidia Riva TNT rev 4, Mem @ 0xdc000000/24, 0xdd000000/24
(--) PCI: (0:12:0) BrookTree unknown chipset (0x036e) rev 2, Mem @ 0xdf102000/12
(--) PCI:*(1:0:0) NVidia Riva Ultra 64 rev 21, Mem @ 0xda000000/24, 0xd8000000/25
List of video drivers:
atimisc
r128
radeon
nvidia
mga
glint
nv
tga
s3virge
sis
rendition
neomagic
i740
tdfx
savage
cirrus
vmware
tseng
trident
chips
apm
glide
fbdev
i128
ati
i810
imstt
ark
cyrix
siliconmotion
vesa
vga
v4l
(II) LoadModule: "atimisc"
(II) Loading /usr/X11R6/lib/modules/drivers/atimisc_drv.o
(II) Module atimisc: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 6.3.6
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "r128"
(II) Loading /usr/X11R6/lib/modules/drivers/r128_drv.o
(II) Module r128: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 4.0.1
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "radeon"
(II) Loading /usr/X11R6/lib/modules/drivers/radeon_drv.o
(II) Module radeon: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 4.0.1
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "nvidia"
(II) Loading /usr/X11R6/lib/modules/drivers/nvidia_drv.o
(II) Module nvidia: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.6111
Module class: XFree86 Video Driver
(II) LoadModule: "mga"
(II) Loading /usr/X11R6/lib/modules/drivers/mga_drv.o
(II) Module mga: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.1
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "glint"
(II) Loading /usr/X11R6/lib/modules/drivers/glint_drv.o
(II) Module glint: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.1
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "nv"
(II) Loading /usr/X11R6/lib/modules/drivers/nv_drv.o
(II) Module nv: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.1
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "tga"
(II) Loading /usr/X11R6/lib/modules/drivers/tga_drv.o
(II) Module tga: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.1
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "s3virge"
(II) Loading /usr/X11R6/lib/modules/drivers/s3virge_drv.o
(II) Module s3virge: vendor="Kevin Brosius"
compiled for 4.1.0.1, module version = 1.6.13
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "sis"
(II) Loading /usr/X11R6/lib/modules/drivers/sis_drv.o
(II) Module sis: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 0.6.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "rendition"
(II) Loading /usr/X11R6/lib/modules/drivers/rendition_drv.o
(II) Module rendition: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 4.0.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "neomagic"
(II) Loading /usr/X11R6/lib/modules/drivers/neomagic_drv.o
(II) Module neomagic: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "i740"
(II) Loading /usr/X11R6/lib/modules/drivers/i740_drv.o
(II) Module i740: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "tdfx"
(II) Loading /usr/X11R6/lib/modules/drivers/tdfx_drv.o
(II) Module tdfx: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.1
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "savage"
(II) Loading /usr/X11R6/lib/modules/drivers/savage_drv.o
(II) Module savage: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.1.16
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "cirrus"
(II) Loading /usr/X11R6/lib/modules/drivers/cirrus_drv.o
(II) Module cirrus: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "vmware"
(II) Loading /usr/X11R6/lib/modules/drivers/vmware_drv.o
(II) Module vmware: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 10.4.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "tseng"
(II) Loading /usr/X11R6/lib/modules/drivers/tseng_drv.o
(II) Module tseng: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "trident"
(II) Loading /usr/X11R6/lib/modules/drivers/trident_drv.o
(II) Module trident: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "chips"
(II) Loading /usr/X11R6/lib/modules/drivers/chips_drv.o
(II) Module chips: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "apm"
(II) Loading /usr/X11R6/lib/modules/drivers/apm_drv.o
(II) Module apm: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "glide"
(II) Loading /usr/X11R6/lib/modules/drivers/glide_drv.o
(II) Module glide: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.1
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) Loading sub module "glide2x"
(II) LoadModule: "glide2x"
(WW) Warning, couldn't open module glide2x
(II) UnloadModule: "glide2x"
(EE) Glide driver:
Could not load the shared library file for Glide: "libglide2x.so"!
You need to have Glide installed to run the glide driver for XFree86.
Also, you need to tell XFree86 where the libglide2x.so file is placed
by making a soft link in the /usr/X11R6/lib/modules directory that points
to the libglide2x.so file. For example (if your libglide2x.so file is in
/usr/lib):
# ln -s /usr/lib/libglide2x.so /usr/X11R6/lib/modules
(II) UnloadModule: "glide"
(II) Unloading /usr/X11R6/lib/modules/drivers/glide_drv.o
(EE) Failed to load module "glide" (submodule could not be loaded, 2)
(II) LoadModule: "fbdev"
(II) Loading /usr/X11R6/lib/modules/drivers/fbdev_drv.o
(II) Module fbdev: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "i128"
(II) Loading /usr/X11R6/lib/modules/drivers/i128_drv.o
(II) Module i128: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "ati"
(II) Loading /usr/X11R6/lib/modules/drivers/ati_drv.o
(II) Module ati: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 6.3.6
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "i810"
(II) Loading /usr/X11R6/lib/modules/drivers/i810_drv.o
(II) Module i810: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "imstt"
(II) Loading /usr/X11R6/lib/modules/drivers/imstt_drv.o
(II) Module imstt: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "ark"
(II) Loading /usr/X11R6/lib/modules/drivers/ark_drv.o
(II) Module ark: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 0.5.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "cyrix"
(II) Loading /usr/X11R6/lib/modules/drivers/cyrix_drv.o
(II) Module cyrix: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "siliconmotion"
(II) Loading /usr/X11R6/lib/modules/drivers/siliconmotion_drv.o
(II) Module siliconmotion: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.2.2
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "vesa"
(II) Loading /usr/X11R6/lib/modules/drivers/vesa_drv.o
(II) Module vesa: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "vga"
(II) Loading /usr/X11R6/lib/modules/drivers/vga_drv.o
(II) Module vga: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 4.0.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.4
(II) LoadModule: "v4l"
(II) Loading /usr/X11R6/lib/modules/drivers/linux/v4l_drv.o
(II) Module v4l: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 0.0.1
ABI class: XFree86 Video Driver, version 0.4
(II) Addressable bus resource ranges are
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
[1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) Active PCI resource ranges:
[0] -1 0 0xdf103000 - 0xdf103fff (0x1000) MX[B]
[1] -1 0 0xdf000000 - 0xdf0fffff (0x100000) MX[B]
[2] -1 0 0xdf100000 - 0xdf100fff (0x1000) MX[B]
[3] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
[4] -1 0 0xd8000000 - 0xd9ffffff (0x2000000) MX[B](B)
[5] -1 0 0xda000000 - 0xdaffffff (0x1000000) MX[B](B)
[6] -1 0 0xdf102000 - 0xdf102fff (0x1000) MX[B](B)
[7] -1 0 0xdd000000 - 0xddffffff (0x1000000) MX[B](B)
[8] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[9] -1 0 0x0000e800 - 0x0000e807 (0x8) IX[B]
[10] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
[11] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[12] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]
[13] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[14] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
[15] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xdf103000 - 0xdf103fff (0x1000) MX[B]
[1] -1 0 0xdf000000 - 0xdf0fffff (0x100000) MX[B]
[2] -1 0 0xdf100000 - 0xdf100fff (0x1000) MX[B]
[3] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
[4] -1 0 0xd8000000 - 0xd9ffffff (0x2000000) MX[B](B)
[5] -1 0 0xda000000 - 0xdaffffff (0x1000000) MX[B](B)
[6] -1 0 0xdf102000 - 0xdf102fff (0x1000) MX[B](B)
[7] -1 0 0xdd000000 - 0xddffffff (0x1000000) MX[B](B)
[8] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[9] -1 0 0x0000e800 - 0x0000e807 (0x8) IX[B]
[10] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
[11] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[12] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]
[13] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[14] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
[15] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xdf103000 - 0xdf103fff (0x1000) MX[B]
[6] -1 0 0xdf000000 - 0xdf0fffff (0x100000) MX[B]
[7] -1 0 0xdf100000 - 0xdf100fff (0x1000) MX[B]
[8] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
[9] -1 0 0xd8000000 - 0xd9ffffff (0x2000000) MX[B](B)
[10] -1 0 0xda000000 - 0xdaffffff (0x1000000) MX[B](B)
[11] -1 0 0xdf102000 - 0xdf102fff (0x1000) MX[B](B)
[12] -1 0 0xdd000000 - 0xddffffff (0x1000000) MX[B](B)
[13] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[15] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[16] -1 0 0x0000e800 - 0x0000e807 (0x8) IX[B]
[17] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
[18] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[19] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]
[20] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[21] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
[22] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
(II) Primary Device is: PCI 01:00:0
(II) NVIDIA X Driver 1.0-6111 Tue Jul 27 07:56:22 PDT 2004
(II) NVIDIA Unified Driver for all NVIDIA GPUs
(II) NV: driver for NVIDIA chipsets: RIVA128, RIVATNT, RIVATNT2,
RIVATNT2 (A), RIVATNT2 (B), RIVATNT2 (Ultra), RIVATNT2 (Vanta),
RIVATNT2 M64, RIVATNT2 (Integrated), GeForce 256, GeForce DDR,
Quadro, GeForce2 GTS, GeForce2 GTS (rev 1), GeForce2 ultra,
Quadro 2 Pro, GeForce2 MX, GeForce2 MX DDR, Quadro 2 MXR,
GeForce 2 Go, GeForce3, GeForce3 (rev 1), GeForce3 (rev 2),
GeForce3 (rev 3)
S3VProbe begin
(II) Loading sub module "cirrus_laguna"
(II) LoadModule: "cirrus_laguna"
(II) Loading /usr/X11R6/lib/modules/drivers/cirrus_laguna.o
(II) Module cirrus_laguna: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.4
(II) Loading sub module "cirrus_alpine"
(II) LoadModule: "cirrus_alpine"
(II) Loading /usr/X11R6/lib/modules/drivers/cirrus_alpine.o
(II) Module cirrus_alpine: vendor="The XFree86 Project"
compiled for 4.1.0.1, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.4
(--) VMware Guest X Server 10.4.0 - build=
(II) ATI: Shared non-ATI VGA in PCI/AGP slot 1:0:0 detected.
CYRIX: Device Sections found: 1
(II) VESA: driver for VESA chipsets: vesa
(II) VGA: Generic VGA driver (version 4.0) for chipsets: generic
(II) v4l driver for Video4Linux
(++) Using config file: "/root/XF86Config.new"
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) ServerLayout "XFree86 Configured"
(**) |-->Screen "Screen0" (0)
(**) | |-->Monitor "Monitor0"
(**) | |-->Device "Card0"
(**) |-->Screen "Screen1" (1)
(**) | |-->Monitor "Monitor1"
(**) | |-->Device "Card1"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(==) Keyboard: CustomKeycode disabled
(WW) The directory "/usr/X11R6/lib/X11/fonts/Speedo/" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/Type1/" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/CID/" does not exist.
Entry deleted from font path.
(**) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(**) ModulePath set to "/usr/X11R6/lib/modules"
(--) Chipset NVIDIA GPU found
(--) Chipset NVIDIA GPU found
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xdf103000 - 0xdf103fff (0x1000) MX[B]
[6] -1 0 0xdf000000 - 0xdf0fffff (0x100000) MX[B]
[7] -1 0 0xdf100000 - 0xdf100fff (0x1000) MX[B]
[8] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
[9] -1 0 0xd8000000 - 0xd9ffffff (0x2000000) MX[B](B)
[10] -1 0 0xda000000 - 0xdaffffff (0x1000000) MX[B](B)
[11] -1 0 0xdf102000 - 0xdf102fff (0x1000) MX[B](B)
[12] -1 0 0xdd000000 - 0xddffffff (0x1000000) MX[B](B)
[13] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[15] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[16] -1 0 0x0000e800 - 0x0000e807 (0x8) IX[B]
[17] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
[18] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[19] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]
[20] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[21] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
[22] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xdf103000 - 0xdf103fff (0x1000) MX[B]
[6] -1 0 0xdf000000 - 0xdf0fffff (0x100000) MX[B]
[7] -1 0 0xdf100000 - 0xdf100fff (0x1000) MX[B]
[8] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
[9] -1 0 0xd8000000 - 0xd9ffffff (0x2000000) MX[B](B)
[10] -1 0 0xda000000 - 0xdaffffff (0x1000000) MX[B](B)
[11] -1 0 0xdf102000 - 0xdf102fff (0x1000) MX[B](B)
[12] -1 0 0xdd000000 - 0xddffffff (0x1000000) MX[B](B)
[13] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[15] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[16] -1 0 0x0000e800 - 0x0000e807 (0x8) IX[B]
[17] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
[18] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[19] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]
[20] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[21] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
[22] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
(II) resource ranges after probing:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xdf103000 - 0xdf103fff (0x1000) MX[B]
[6] -1 0 0xdf000000 - 0xdf0fffff (0x100000) MX[B]
[7] -1 0 0xdf100000 - 0xdf100fff (0x1000) MX[B]
[8] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
[9] -1 0 0xd8000000 - 0xd9ffffff (0x2000000) MX[B](B)
[10] -1 0 0xda000000 - 0xdaffffff (0x1000000) MX[B](B)
[11] -1 0 0xdf102000 - 0xdf102fff (0x1000) MX[B](B)
[12] -1 0 0xdd000000 - 0xddffffff (0x1000000) MX[B](B)
[13] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[14] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[15] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[16] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[17] 1 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[18] 1 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[19] 1 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[21] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[22] -1 0 0x0000e800 - 0x0000e807 (0x8) IX[B]
[23] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
[24] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[25] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]
[26] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[27] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
[28] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
[29] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[30] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
[31] 1 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[32] 1 0 0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) Setting vga for screen 1.
XFree86 is not able to detect your mouse.
Edit the file and correct the Device.
XFree86 has configured a multihead system, please check your config.
Your XF86Config file is /root/XF86Config.new
To test the server, run 'XFree86 -xf86config /root/XF86Config.new' |