Sie sind nicht angemeldet.

Lieber Besucher, herzlich willkommen bei: GentooForum.de. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.

1

20.12.2007, 21:15

Problem mit 2nd View und 2 Grakas

Hi ihr,

Hab einmal eine Geforce 6600GT und nun noch ne 7650 GS im Rechner
plaziert, beides PCI-E Karten.

Leider bleibt der 2te Monitor dunkel, vermutlich kommt er mit der neuen Graka nicht zurecht.

Der erste TFT hat ne Auflösung von 1280x1024 und der 2te 1024x768
geplant war, den kleineren Monitor für die Shell, Messenger und MP3-Playeranzeige zu nutzen..

Ich habe das Howto http://wiki.unixboard.de/index.php/HowTo:DualHead#2nd_View verwendet.

Leider kenn ich mich mit dem Betreiben von mehreren Monitoren nicht aus..
Könnt ihr mir helfen oder habt ihr ein paar Ratschläge für mich?

Danke.

hier einmal die xorg.conf:

Quellcode

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
#EndSection# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 1.0 (buildmeister@builder26) Mon May 15 14:17:32 PDT 2006

#Section "dri"
# Mode 0666

Section "ServerLayout"
Identifier "2ndView Layout"
Screen 0 "Screen0" LeftOf "Screen1" 
Screen 1 "Screen1" 0 0
Option "Xinerama" "off" # on,off
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"

EndSection

Section "Files"

#ModulePath "/usr/lib64/modules"
RgbPath "/usr/lib64/X11/rgb"
FontPath "/usr/share/fonts/misc:unscaled/"
FontPath "/usr/share/fonts/CID/"
FontPath "/usr/share/fonts/Type1"
FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/corefonts"
FontPath "/usr/share/fonts/freefont"
FontPath "/usr/share/fonts/sharefonts"
FontPath "/usr/share/fonts/terminus"
FontPath "/usr/share/fonts/ttf-bitstream-vera"
FontPath "/usr/share/fonts/unifont"
FontPath "/usr/share/fonts/75dpi"
FontPath "/usr/share/fonts/100dpi"
FontPath "/usr/share/fonts/artwiz"
EndSection

Section "Module"
Load "glx"
Load "record"
Load "extmod"
Load "dbe"
Load "xtrap"
Load "freetype"
Load "type1"
# Load "dri"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbLayout" "de"
Option "XkbVariant" "nodeadkeys"
Option "XkbModel" "pc105"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "Buttons" "9"
Option "ZAxisMapping" "4 5"
EndSection


Section "ServerFlags"
Option "Xinerama" "true"
EndSection


Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
Option "DPMS"
EndSection

Section "Monitor"
Identifier "Monitor1"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
Option "DPMS"
EndSection

Section "Device"
Identifier "Card0"
Driver "nvidia"
BusID "PCI:5:0:0"
Option "RenderAccel" "True"
VendorName "nVidia Corporation"
BoardName "Unknown Board"
Screen 0
EndSection

Section "Device"
Identifier "Card1"
Driver "nvidia"
Option "ConnectedMonitor" "Monitor1"
#BusID "PCI:4:0:0"
Option "RenderAccel" "True"
VendorName "nVidia Corporation"
BoardName "Unknown Board"
Screen 1
EndSection


Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
Option "AllowGLXWithComposite" "true"
Option "NoLogo" "1"
Option "RenderAccel" "true"
Option "TripleBuffer" "true"
Option "AddARGBGLXVisuals"
Option "DisableGLXRootClipping" "True"
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1280x1024"
EndSubSection
EndSection


Section "Screen"
Identifier "Screen1"
Device "Card1"
Monitor "Monitor1"
DefaultDepth 24
Option "AllowGLXWithComposite" "true"
Option "NoLogo" "1"
Option "RenderAccel" "true"
Option "TripleBuffer" "true"
Option "AddARGBGLXVisuals"
Option "DisableGLXRootClipping" "True"
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768"
EndSubSection



EndSection



und hier die Xorg.log:

Quellcode

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
X Window System Version 7.1.1
Release Date: 12 May 2006
X Protocol Version 11, Revision 0, Release 7.1.1
Build Operating System: UNKNOWN 
Current Operating System: Linux Dany 2.6.19-beyond2 #9 SMP Thu Apr 12 03:27:30 CEST 2007 x86_64
Build Date: 09 December 2006
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Thu Dec 20 20:52:13 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "2ndView Layout"
(**) |-->Screen "Screen0" (0)
(**) | |-->Monitor "Monitor0"
(**) | |-->Device "Card0"
(**) |-->Screen "Screen1" (1)
(**) | |-->Monitor "Monitor1"
(**) | |-->Device "Card1"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(WW) The directory "/usr/share/fonts/CID/" does not exist.
Entry deleted from font path.
(**) FontPath set to:
/usr/share/fonts/misc:unscaled/,
/usr/share/fonts/Type1,
/usr/share/fonts/TTF,
/usr/share/fonts/corefonts,
/usr/share/fonts/freefont,
/usr/share/fonts/sharefonts,
/usr/share/fonts/terminus,
/usr/share/fonts/ttf-bitstream-vera,
/usr/share/fonts/unifont,
/usr/share/fonts/75dpi,
/usr/share/fonts/100dpi,
/usr/share/fonts/artwiz
(**) RgbPath set to "/usr/lib64/X11/rgb"
(==) ModulePath set to "/usr/lib64/xorg/modules"
(**) Option "Xinerama" "off"
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(II) No APM support in BIOS or kernel
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.3
X.Org Video Driver: 1.0
X.Org XInput driver : 0.6
X.Org Server Extension : 0.3
X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib64/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/lib64/xorg/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
ABI class: X.Org Video Driver, version 1.0
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 10de,005e card 1462,7185 rev a3 class 05,80,00 hdr 00
(II) PCI: 00:01:0: chip 10de,0050 card 1462,7185 rev a3 class 06,01,00 hdr 80
(II) PCI: 00:01:1: chip 10de,0052 card 1462,7185 rev a2 class 0c,05,00 hdr 80
(II) PCI: 00:02:0: chip 10de,005a card 1462,7185 rev a2 class 0c,03,10 hdr 80
(II) PCI: 00:02:1: chip 10de,005b card 1462,7185 rev a3 class 0c,03,20 hdr 80
(II) PCI: 00:04:0: chip 10de,0059 card 1462,7185 rev a2 class 04,01,00 hdr 00
(II) PCI: 00:06:0: chip 10de,0053 card 1462,7185 rev f2 class 01,01,8a hdr 00
(II) PCI: 00:07:0: chip 10de,0054 card 1462,7185 rev f3 class 01,01,85 hdr 00
(II) PCI: 00:09:0: chip 10de,005c card 0000,0000 rev a2 class 06,04,01 hdr 01
(II) PCI: 00:0b:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0c:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0d:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0e:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:18:0: chip 1022,1100 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:1: chip 1022,1101 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:2: chip 1022,1102 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:3: chip 1022,1103 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 01:07:0: chip 1102,0008 card 1102,1021 rev 00 class 04,01,00 hdr 00
(II) PCI: 01:09:0: chip 168c,0013 card 1385,4d00 rev 01 class 02,00,00 hdr 00
(II) PCI: 04:00:0: chip 10de,0390 card 1043,8226 rev a1 class 03,00,00 hdr 00
(II) PCI: 05:00:0: chip 10de,0140 card 107d,2009 rev a2 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:9:0), (0,1,1), BCTRL: 0x0200 (VGA_EN is cleared)
(II) Bus 1 I/O range:
[0] -1 0 0x0000e000 - 0x0000efff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xfea00000 - 0xfeafffff (0x100000) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1 0 0xfe900000 - 0xfe9fffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:11:0), (0,2,2), BCTRL: 0x0000 (VGA_EN is cleared)
(II) Bus 2 I/O range:
[0] -1 0 0x0000d000 - 0x0000dfff (0x1000) IX[B]
(II) Bus 2 non-prefetchable memory range:
[0] -1 0 0xfe800000 - 0xfe8fffff (0x100000) MX[B]
(II) Bus 2 prefetchable memory range:
[0] -1 0 0xfe700000 - 0xfe7fffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 3: bridge is at (0:12:0), (0,3,3), BCTRL: 0x0000 (VGA_EN is cleared)
(II) Bus 3 I/O range:
[0] -1 0 0x0000c000 - 0x0000cfff (0x1000) IX[B]
(II) Bus 3 non-prefetchable memory range:
[0] -1 0 0xfe600000 - 0xfe6fffff (0x100000) MX[B]
(II) Bus 3 prefetchable memory range:
[0] -1 0 0xfe500000 - 0xfe5fffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 4: bridge is at (0:13:0), (0,4,4), BCTRL: 0x0000 (VGA_EN is cleared)
(II) Bus 4 I/O range:
[0] -1 0 0x0000b000 - 0x0000bfff (0x1000) IX[B]
(II) Bus 4 non-prefetchable memory range:
[0] -1 0 0xfb000000 - 0xfdffffff (0x3000000) MX[B]
(II) Bus 4 prefetchable memory range:
[0] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 5: bridge is at (0:14:0), (0,5,5), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 5 I/O range:
[0] -1 0 0x0000a000 - 0x0000afff (0x1000) IX[B]
(II) Bus 5 non-prefetchable memory range:
[0] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[B]
(II) Bus 5 prefetchable memory range:
[0] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:24:0), (0,0,5), BCTRL: 0x0008 (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 (0x100000000) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
(--) PCI: (4:0:0) nVidia Corporation unknown chipset (0x0390) rev 161, Mem @ 0xfb000000/24, 0xc0000000/28, 0xfc000000/24, I/O @ 0xbf00/7
(--) PCI:*(5:0:0) nVidia Corporation NV43 [GeForce 6600 GT] rev 162, Mem @ 0xd8000000/26, 0xd0000000/27, 0xde000000/24
(II) Addressable bus resource ranges are
[0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
[1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
[0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) Active PCI resource ranges:
[0] -1 0 0xfeaf0000 - 0xfeafffff (0x10000) MX[B]
[1] -1 0 0xfebfb000 - 0xfebfbfff (0x1000) MX[B]
[2] -1 0 0xfebfd000 - 0xfebfdfff (0x1000) MX[B]
[3] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[B]
[4] -1 0 0xfebff000 - 0xfebfffff (0x1000) MX[B]
[5] -1 0 0xde000000 - 0xdeffffff (0x1000000) MX[B](B)
[6] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[7] -1 0 0xd8000000 - 0xdbffffff (0x4000000) MX[B](B)
[8] -1 0 0xfc000000 - 0xfcffffff (0x1000000) MX[B](B)
[9] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
[10] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
[11] -1 0 0x0000ef00 - 0x0000ef3f (0x40) IX[B]
[12] -1 0 0x0000f600 - 0x0000f60f (0x10) IX[B]
[13] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
[14] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
[15] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
[16] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
[17] -1 0 0x0000fb00 - 0x0000fb0f (0x10) IX[B]
[18] -1 0 0x0000f400 - 0x0000f4ff (0x100) IX[B]
[19] -1 0 0x0000f000 - 0x0000f0ff (0x100) IX[B]
[20] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[21] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[22] -1 0 0x0000ff00 - 0x0000ff1f (0x20) IX[B]
[23] -1 0 0x0000bf00 - 0x0000bf7f (0x80) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xfeaf0000 - 0xfeafffff (0x10000) MX[B]
[1] -1 0 0xfebfb000 - 0xfebfbfff (0x1000) MX[B]
[2] -1 0 0xfebfd000 - 0xfebfdfff (0x1000) MX[B]
[3] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[B]
[4] -1 0 0xfebff000 - 0xfebfffff (0x1000) MX[B]
[5] -1 0 0xde000000 - 0xdeffffff (0x1000000) MX[B](B)
[6] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[7] -1 0 0xd8000000 - 0xdbffffff (0x4000000) MX[B](B)
[8] -1 0 0xfc000000 - 0xfcffffff (0x1000000) MX[B](B)
[9] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
[10] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
[11] -1 0 0x0000ef00 - 0x0000ef3f (0x40) IX[B]
[12] -1 0 0x0000f600 - 0x0000f60f (0x10) IX[B]
[13] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
[14] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
[15] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
[16] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
[17] -1 0 0x0000fb00 - 0x0000fb0f (0x10) IX[B]
[18] -1 0 0x0000f400 - 0x0000f4ff (0x100) IX[B]
[19] -1 0 0x0000f000 - 0x0000f0ff (0x100) IX[B]
[20] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[21] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[22] -1 0 0x0000ff00 - 0x0000ff1f (0x20) IX[B]
[23] -1 0 0x0000bf00 - 0x0000bf7f (0x80) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
[0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0xfeaf0000 - 0xfeafffff (0x10000) MX[B]
[5] -1 0 0xfebfb000 - 0xfebfbfff (0x1000) MX[B]
[6] -1 0 0xfebfd000 - 0xfebfdfff (0x1000) MX[B]
[7] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[B]
[8] -1 0 0xfebff000 - 0xfebfffff (0x1000) MX[B]
[9] -1 0 0xde000000 - 0xdeffffff (0x1000000) MX[B](B)
[10] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[11] -1 0 0xd8000000 - 0xdbffffff (0x4000000) MX[B](B)
[12] -1 0 0xfc000000 - 0xfcffffff (0x1000000) MX[B](B)
[13] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
[14] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
[15] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[16] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[17] -1 0 0x0000ef00 - 0x0000ef3f (0x40) IX[B]
[18] -1 0 0x0000f600 - 0x0000f60f (0x10) IX[B]
[19] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
[20] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
[21] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
[22] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
[23] -1 0 0x0000fb00 - 0x0000fb0f (0x10) IX[B]
[24] -1 0 0x0000f400 - 0x0000f4ff (0x100) IX[B]
[25] -1 0 0x0000f000 - 0x0000f0ff (0x100) IX[B]
[26] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[27] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[28] -1 0 0x0000ff00 - 0x0000ff1f (0x20) IX[B]
[29] -1 0 0x0000bf00 - 0x0000bf7f (0x80) IX[B](B)
(II) LoadModule: "glx"
(II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.1
(II) NVIDIA GLX Module 100.14.23 Thu Oct 4 11:10:53 PDT 2007
(II) Loading extension GLX
(II) LoadModule: "record"
(II) Loading /usr/lib64/xorg/modules/extensions/librecord.so
(II) Module record: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.13.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.3
(II) Loading extension RECORD
(II) LoadModule: "extmod"
(II) Loading /usr/lib64/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.3
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "dbe"
(II) Loading /usr/lib64/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "xtrap"
(II) Loading /usr/lib64/xorg/modules/extensions/libxtrap.so
(II) Module xtrap: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DEC-XTRAP
(II) LoadModule: "freetype"
(II) Loading /usr/lib64/xorg/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
compiled for 7.1.1, module version = 2.1.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: "type1"
(II) Loading /usr/lib64/xorg/modules/fonts/libtype1.so
dlopen: /usr/lib64/xorg/modules/fonts/libtype1.so: undefined symbol: Type1RegisterFontFileFunctions
(EE) Failed to load /usr/lib64/xorg/modules/fonts/libtype1.so
(II) UnloadModule: "type1"
(EE) Failed to load module "type1" (loader failed, 7)
(II) LoadModule: "nvidia"
(II) Loading /usr/lib64/xorg/modules/drivers/nvidia_drv.so
(II) Module nvidia: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.0
Module class: X.Org Video Driver
(II) LoadModule: "mouse"
(II) Loading /usr/lib64/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.1.1
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.6
(II) LoadModule: "kbd"
(II) Loading /usr/lib64/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.1.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.6
(II) NVIDIA dlloader X Driver 100.14.23 Thu Oct 4 10:29:44 PDT 2007
(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
(II) Primary Device is: PCI 05:00:0
(WW) NVIDIA: No matching Device section for instance (BusID PCI:4:0:0) found
(--) Assigning device section with no busID to primary device
(WW) NVIDIA: More than one matching Device section found: Card1
(--) Chipset NVIDIA GPU found
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib64/xorg/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
ABI class: X.Org ANSI C Emulation, version 0.3
(II) Loading sub module "wfb"
(II) LoadModule: "wfb"
(II) Loading /usr/lib64/xorg/modules/extensions/libwfb.so
(II) Module wfb: vendor="NVIDIA Corporation"
compiled for 7.1.99.2, module version = 1.0.0
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib64/xorg/modules/libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 0.1.0
ABI class: X.Org Video Driver, version 1.0
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0xfeaf0000 - 0xfeafffff (0x10000) MX[B]
[5] -1 0 0xfebfb000 - 0xfebfbfff (0x1000) MX[B]
[6] -1 0 0xfebfd000 - 0xfebfdfff (0x1000) MX[B]
[7] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[B]
[8] -1 0 0xfebff000 - 0xfebfffff (0x1000) MX[B]
[9] -1 0 0xde000000 - 0xdeffffff (0x1000000) MX[B](B)
[10] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[11] -1 0 0xd8000000 - 0xdbffffff (0x4000000) MX[B](B)
[12] -1 0 0xfc000000 - 0xfcffffff (0x1000000) MX[B](B)
[13] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
[14] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
[15] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[16] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[17] -1 0 0x0000ef00 - 0x0000ef3f (0x40) IX[B]
[18] -1 0 0x0000f600 - 0x0000f60f (0x10) IX[B]
[19] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
[20] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
[21] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
[22] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
[23] -1 0 0x0000fb00 - 0x0000fb0f (0x10) IX[B]
[24] -1 0 0x0000f400 - 0x0000f4ff (0x100) IX[B]
[25] -1 0 0x0000f000 - 0x0000f0ff (0x100) IX[B]
[26] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[27] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[28] -1 0 0x0000ff00 - 0x0000ff1f (0x20) IX[B]
[29] -1 0 0x0000bf00 - 0x0000bf7f (0x80) IX[B](B)
(II) resource ranges after probing:
[0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0xfeaf0000 - 0xfeafffff (0x10000) MX[B]
[5] -1 0 0xfebfb000 - 0xfebfbfff (0x1000) MX[B]
[6] -1 0 0xfebfd000 - 0xfebfdfff (0x1000) MX[B]
[7] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[B]
[8] -1 0 0xfebff000 - 0xfebfffff (0x1000) MX[B]
[9] -1 0 0xde000000 - 0xdeffffff (0x1000000) MX[B](B)
[10] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[11] -1 0 0xd8000000 - 0xdbffffff (0x4000000) MX[B](B)
[12] -1 0 0xfc000000 - 0xfcffffff (0x1000000) MX[B](B)
[13] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
[14] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
[15] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[16] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[17] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[19] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[20] -1 0 0x0000ef00 - 0x0000ef3f (0x40) IX[B]
[21] -1 0 0x0000f600 - 0x0000f60f (0x10) IX[B]
[22] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
[23] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
[24] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
[25] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
[26] -1 0 0x0000fb00 - 0x0000fb0f (0x10) IX[B]
[27] -1 0 0x0000f400 - 0x0000f4ff (0x100) IX[B]
[28] -1 0 0x0000f000 - 0x0000f0ff (0x100) IX[B]
[29] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[30] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[31] -1 0 0x0000ff00 - 0x0000ff1f (0x20) IX[B]
[32] -1 0 0x0000bf00 - 0x0000bf7f (0x80) IX[B](B)
[33] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[34] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
(**) NVIDIA(0): Option "NoLogo" "1"
(**) NVIDIA(0): Option "RenderAccel" "true"
(**) NVIDIA(0): Option "AllowGLXWithComposite" "true"
(**) NVIDIA(0): Option "TripleBuffer" "true"
(**) NVIDIA(0): Option "AddARGBGLXVisuals"
(**) NVIDIA(0): Option "DisableGLXRootClipping" "True"
(**) NVIDIA(0): Enabling RENDER acceleration
(II) NVIDIA(0): NVIDIA GPU GeForce 6600 GT (NV43) at PCI:5:0:0 (GPU-0)
(--) NVIDIA(0): Memory: 131072 kBytes
(--) NVIDIA(0): VideoBIOS: 05.43.02.39.00
(II) NVIDIA(0): Detected PCI Express Link width: 16X
(--) NVIDIA(0): Interlaced video modes are supported on this GPU
(--) NVIDIA(0): Connected display device(s) on GeForce 6600 GT at PCI:5:0:0:
(--) NVIDIA(0): Philips 170S4 (CRT-0)
(--) NVIDIA(0): Philips 170S4 (CRT-0): 400.0 MHz maximum pixel clock
(II) NVIDIA(0): Assigned Display Device: CRT-0
(II) NVIDIA(0): Validated modes:
(II) NVIDIA(0): "1280x1024"
(II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
(--) NVIDIA(0): DPI set to (95, 96); computed from "UseEdidDpi" X config
(--) NVIDIA(0): option
(WW) NVIDIA(0): 32-bit ARGB GLX visuals require the Composite extension.
(WW) NVIDIA(0): Disabling 32-bit ARGB GLX visuals.
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
[0] 0 0 0xde000000 - 0xdeffffff (0x1000000) MX[B]
[1] 0 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
[2] 0 0 0xd8000000 - 0xdbffffff (0x4000000) MX[B]
[3] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[4] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[5] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[6] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[7] -1 0 0xfeaf0000 - 0xfeafffff (0x10000) MX[B]
[8] -1 0 0xfebfb000 - 0xfebfbfff (0x1000) MX[B]
[9] -1 0 0xfebfd000 - 0xfebfdfff (0x1000) MX[B]
[10] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[B]
[11] -1 0 0xfebff000 - 0xfebfffff (0x1000) MX[B]
[12] -1 0 0xde000000 - 0xdeffffff (0x1000000) MX[B](B)
[13] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[14] -1 0 0xd8000000 - 0xdbffffff (0x4000000) MX[B](B)
[15] -1 0 0xfc000000 - 0xfcffffff (0x1000000) MX[B](B)
[16] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
[17] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
[18] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
[19] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
[20] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
[21] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[22] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[23] -1 0 0x0000ef00 - 0x0000ef3f (0x40) IX[B]
[24] -1 0 0x0000f600 - 0x0000f60f (0x10) IX[B]
[25] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
[26] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
[27] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
[28] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
[29] -1 0 0x0000fb00 - 0x0000fb0f (0x10) IX[B]
[30] -1 0 0x0000f400 - 0x0000f4ff (0x100) IX[B]
[31] -1 0 0x0000f000 - 0x0000f0ff (0x100) IX[B]
[32] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[33] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[34] -1 0 0x0000ff00 - 0x0000ff1f (0x20) IX[B]
[35] -1 0 0x0000bf00 - 0x0000bf7f (0x80) IX[B](B)
[36] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
[37] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(II) NVIDIA(GPU-1): NVIDIA GPU GeForce 7650 GS (Unknown) at PCI:4:0:0 (GPU-1)
(--) NVIDIA(GPU-1): Memory: 262144 kBytes
(--) NVIDIA(GPU-1): VideoBIOS: 05.73.22.41.04
(II) NVIDIA(GPU-1): Detected PCI Express Link width: 1X
(--) NVIDIA(GPU-1): Interlaced video modes are supported on this GPU
(--) NVIDIA(GPU-1): Connected display device(s) on GeForce 7650 GS at PCI:4:0:0:
(--) NVIDIA(GPU-1): MED MD9462AD (CRT-1)
(--) NVIDIA(GPU-1): MED MD9462AD (CRT-1): 400.0 MHz maximum pixel clock
(II) NVIDIA(0): Initialized GART.
(II) NVIDIA(0): Unable to connect to the ACPI daemon; the ACPI daemon may not
(II) NVIDIA(0): be running or the "AcpidSocketPath" X configuration option
(II) NVIDIA(0): may not be set correctly. When the ACPI daemon is
(II) NVIDIA(0): available, the NVIDIA X driver can use it to receive ACPI
(II) NVIDIA(0): events. For details, please see the "ConnectToAcpid" and
(II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
(II) NVIDIA(0): Config Options in the README.
(II) NVIDIA(0): Setting mode "1280x1024"
(II) Loading extension NV-GLX
(II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(0): Backing store disabled
(==) NVIDIA(0): Silken mouse enabled
(**) Option "dpms"
(**) NVIDIA(0): DPMS enabled
(II) Loading extension NV-CONTROL
(==) RandR enabled
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
(II) Initializing extension GLX
(**) Option "Protocol" "auto"
(**) Mouse0: Device: "/dev/input/mice"
(**) Mouse0: Protocol: "auto"
(**) Option "CorePointer"
(**) Mouse0: Core Pointer
(**) Option "Device" "/dev/input/mice"
(**) Option "Buttons" "9"
(==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Mouse0: ZAxisMapping: buttons 4 and 5
(**) Mouse0: Buttons: 13
(**) Option "CoreKeyboard"
(**) Keyboard0: Core Keyboard
(**) Option "Protocol" "standard"
(**) Keyboard0: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Keyboard0: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Keyboard0: XkbModel: "pc105"
(**) Option "XkbLayout" "de"
(**) Keyboard0: XkbLayout: "de"
(**) Option "XkbVariant" "nodeadkeys"
(**) Keyboard0: XkbVariant: "nodeadkeys"
(**) Option "CustomKeycodes" "off"
(**) Keyboard0: CustomKeycodes disabled
(II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
(II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
xkb_keycodes { include "xfree86+aliases(qwertz)" };
xkb_types { include "complete" };
xkb_compatibility { include "complete" };
xkb_symbols { include "pc+de(nodeadkeys)" };
xkb_geometry { include "pc(pc105)" };
(--) Mouse0: PnP-detected protocol: "ExplorerPS/2"
(II) Mouse0: ps2EnableDataReporting: succeeded
xkb_keycodes { include "xfree86+aliases(qwertz)" };
xkb_types { include "complete" };
xkb_compatibility { include "complete" };
xkb_symbols { include "pc+de" };
xkb_geometry { include "pc(pc104)" };
(II) 3rd Button detected: disabling emulate3Button


lspci...

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
00:00.0 Memory controller: nVidia Corporation CK804 Memory Controller (rev a3)
00:01.0 ISA bridge: nVidia Corporation CK804 ISA Bridge (rev a3)
00:01.1 SMBus: nVidia Corporation CK804 SMBus (rev a2)
00:02.0 USB Controller: nVidia Corporation CK804 USB Controller (rev a2)
00:02.1 USB Controller: nVidia Corporation CK804 USB Controller (rev a3)
00:04.0 Multimedia audio controller: nVidia Corporation CK804 AC'97 Audio Controller (rev a2)
00:06.0 IDE interface: nVidia Corporation CK804 IDE (rev f2)
00:07.0 IDE interface: nVidia Corporation CK804 Serial ATA Controller (rev f3)
00:09.0 PCI bridge: nVidia Corporation CK804 PCI Bridge (rev a2)
00:0b.0 PCI bridge: nVidia Corporation CK804 PCIE Bridge (rev a3)
00:0c.0 PCI bridge: nVidia Corporation CK804 PCIE Bridge (rev a3)
00:0d.0 PCI bridge: nVidia Corporation CK804 PCIE Bridge (rev a3)
00:0e.0 PCI bridge: nVidia Corporation CK804 PCIE Bridge (rev a3)
00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration
00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map
00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller
00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control
01:07.0 Multimedia audio controller: Creative Labs SB0400 Audigy2 Value
01:09.0 Ethernet controller: Atheros Communications, Inc. AR5212/AR5213 Multiprotocol MAC/baseband processor (rev 01)
04:00.0 VGA compatible controller: nVidia Corporation GeForce 7650 GS (rev a1)
05:00.0 VGA compatible controller: nVidia Corporation NV43 [GeForce 6600 GT] (rev a2)