Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Desktop Environments
  • Search

Howto 3 Monitors in Linux?

Problems with GUI applications? Questions about X, KDE, Gnome, Fluxbox, etc.? Come on in. NOTE: For multimedia, go up one forum
Post Reply
Advanced search
8 posts • Page 1 of 1
Author
Message
sydney
n00b
n00b
Posts: 44
Joined: Mon Sep 26, 2005 10:57 pm

Howto 3 Monitors in Linux?

  • Quote

Post by sydney » Wed Sep 06, 2006 1:46 pm

Hello,

how can i get 3 Monitors to work under KDE or Fluxbox.

Graficcards

PCI-E Nvidia Geforce 6800 ( dual head )
PCI Nvidia TNT 2

3x 19" LG 1950 Flatron Monitor

DualView Works Fine.

But i can get working the 3nd Monitor ( Right Display)

Here is my xorg.conf works perfectly with startx -- -layout TwinView
If i try startx -- -layout Xinerama , just the 2 same Monitor works like TwinView, the Right TFT doesent work (Black Screen)
I Hope someone can help me to get my 3nd Monitor work.

Code: Select all

Section "Files"
    RgbPath	"/usr/lib/X11/rgb"
    FontPath	"/usr/share/fonts/local/"
    FontPath	"/usr/share/fonts/misc/"
    FontPath	"/usr/share/fonts/75dpi/:unscaled"
    FontPath	"/usr/share/fonts/100dpi/:unscaled"
    FontPath	"/usr/share/fonts/Type1/"
    FontPath    "/usr/share/fonts/TTF/"
    FontPath	"/usr/share/fonts/CID/"
    FontPath	"/usr/share/fonts/75dpi/"
    FontPath	"/usr/share/fonts/100dpi/"
EndSection

Section "Module"
    Load	"dbe"
    Load        "v4l"
    Load        "extmod"
    SubSection	"extmod"
        Option  "omit xfree86-dga"
    EndSubSection
    Load	"type1"
    Load	"freetype"
    Load	"glx"
EndSection

Section "Extensions"
    Option "Composite" "Enable"
     Option "RENDER" "Enable"
EndSection

Section "ServerFlags"
    Option	"blank time"	"1"
    Option	"standby time"	"2"
    Option	"suspend time"	"3"
    Option	"off time"	"4"
EndSection


Section "InputDevice"
    Identifier   "Keyboard1"
    Driver   "kbd"
    Option "AutoRepeat" "500 30"
    Option "XkbRules"   "xorg"
    Option "XkbModel"   "microsoft"
#    Option  XkbModel"   "PC 105"
    Option "XkbLayout"   "de"
    Option "XkbOptions" "grp:shifts_toggle,grp_led:scroll,caps:shift,altwin=super_win"
    Option "XkbVariant" "nodeadkeys"

EndSection


Section "InputDevice"
    Identifier	"Mouse_Logitech"
    Driver	"mouse"
    Option	"Protocol"	"ExplorerPS/2"
    Option	"Device"	"/dev/input/mice"
    Option	"Resolution" "1600"
    Option	"Buttons" "8"
    Option	"ZAxisMapping" "4 5"
EndSection

Section "Monitor"
    Identifier	"SamsungTFT"
    Option	"dpms"
    HorizSync 31.5-81.0
    VertRefresh 60-60
    DisplaySize 376 301
EndSection

Section "Monitor"
    Identifier	"ProviewCRT"
    Option	"dpms"
    HorizSync 31.5-81.0
    VertRefresh 60-60
    DisplaySize 376 301
EndSection

Section "Monitor"
    Identifier	"LG1915SV"
    Option	"dpms"
    HorizSync 31.5-81.0
    VertRefresh 60-60
    DisplaySize 376 301
EndSection

Section "Monitor"
    Identifier  "TwinMoni"
    Option      "dpms"
    HorizSync   31.5-81.0
    VertRefresh 60-60
    DisplaySize 672 269   #SamsungTFT horizontal size *2 to get 86*86 dpi
#    DisplaySize 752 301   #SamsungTFT horizontal size *2 to get 86*86 dpi
EndSection

#----- Single BEGIN ------------------------------------------------------------------------------
Section "ServerLayout"
    Identifier	"single"
    Screen	0 "Screen0"
    InputDevice	"Mouse_Logitech" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
EndSection
#----- Single END --------------------------------------------------------------------------------

#----- Twinview BEGIN ----------------------------------------------------------------------------
Section "Device"
    Identifier "NvidiaTwin"
    VendorName "MSI"
    BoardName "GeForce 6800XT"
    Driver "nvidia"
#    BusID "PCI:1:0:0"
    Option "NoLogo" "0"
    Option "TwinView" "1"
#    Option "MetaModes"  "1280x1024,1280x1024; 1280x1024"
    Option "MetaModes"  "1280x1024,1280x1024; 1280x1024; 1024x768,1024x768; 1024x768; 800x600,800x600; 800x600"
  Option "TwinViewOrientation" "CRT-0  DFP-0"
    Option "HorizSync"   
    Option "VertRefresh" "60"
    Option "DPI" "96 x 96"
    Option "ConnectedMonitor" "DFP-0,CRT-0"
    Option "RenderAccel" "true"
    Option "AllowGLXWithComposite" "true"
    Option "UseEdidDpi" "true"
EndSection

Section "Screen"
    Identifier	"ScreenTwin"
    Device      "NvidiaTwin"
    Monitor	"TwinMoni"
    DefaultDepth 24
    Subsection "Display"
        Depth 24
    Modes "2560x1024_60"
    EndSubsection
EndSection

Section "ServerLayout"
    Identifier	"twinview"
    Screen	0 "ScreenTwin"
    InputDevice	"Mouse_Logitech" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    Option "Xinerama" "0"
EndSection
#----- Twinview END ------------------------------------------------------------------------------

#----- Xinerama BEGIN ----------------------------------------------------------------------------
Section "Device"
    Identifier  "Nvidia0"
    VendorName  "Gainward"
    BoardName   "Ultra/1960 Golden Sample"
    Driver      "nvidia"
    BusID       "PCI:1:0:0"
    Screen       0
    #SINCE NVIDIA VERSION 1.0-8756 YOU MUST USE UseDisplayDevice INSTEAD OF ConnectedMonitor TO GET XINERAMA WORK:
#    Option "ConnectedMonitor" "DFP"
    Option "UseDisplayDevice" "CRT"
    Option "HorizSync"
    Option "VertRefresh" "60"
    Option "DPI" "96 x 96"
    Option "NoLogo" "1"
    Option "RenderAccel" "true"
    Option "AllowGLXWithComposite" "true"
    Option "UseEdidDpi" "FALSE"
EndSection

Section "Device"
    Identifier  "Nvidia1"
    VendorName  "Gainward"
    BoardName   "Ultra/1960 Golden Sample"
    Driver      "nvidia"
    BusID       "PCI:1:0:0"
    Screen       1
    #SINCE NVIDIA VERSION 1.0-8756 YOU MUST USE UseDisplayDevice INSTEAD OF ConnectedMonitor TO GET XINERAMA WORK:
#    Option "ConnectedMonitor" "DFP"
    Option "HorizSync" 
    Option "VertRefresh" "60"
    Option "DPI" "96 x 96"
    Option "UseDisplayDevice" "DFP"
    Option "NoLogo" "1"
    Option "RenderAccel" "true"
    Option "AllowGLXWithComposite" "true"
    Option "UseEdidDpi" "FALSE"
EndSection

Section "Device"
    Identifier  "Nvidia2"
    VendorName  "Creative"
    BoardName   "Nvidia TNT2 "
    Driver      "nvidia"
    BusID       "PCI:2:0:0"
    Screen       2
    #SINCE NVIDIA VERSION 1.0-8756 YOU MUST USE UseDisplayDevice INSTEAD OF ConnectedMonitor TO GET XINERAMA WORK:
#    Option "ConnectedMonitor" "DFP"
    Option "HorizSync" 
    Option "VertRefresh" "60"
    Option "DPI" "96 x 96"
    Option "UseDisplayDevice" "DFP"
    Option "NoLogo" "1"
    Option "RenderAccel" "true"
    Option "AllowGLXWithComposite" "true"
    Option "UseEdidDpi" "FALSE"
EndSection

Section "Screen"
    Identifier	"Screen0"
    Device	"Nvidia0"
    Monitor	"SamsungTFT"
    DefaultDepth 24
    Subsection "Display"
        Depth 24
#        Modeline "1280x1024@60" 114.98 1280 1312 1744 1776 1024 1045 1055 1076
         Modes "1280x1024"
    EndSubsection
EndSection

Section "Screen"
    Identifier	"Screen1"
    Device	"Nvidia1"
    Monitor	"ProviewCRT"
    DefaultDepth 24
    Subsection "Display"
        Depth 24
#        Modeline "1280x1024@60" 114.98 1280 1312 1744 1776 1024 1045 1055 1076
	 Modes "1280x1024"
    EndSubsection
EndSection

Section "Screen"
    Identifier	"Screen2"
    Device	"Nvidia2"
    Monitor	"LG1915SV"
    DefaultDepth 24
    Subsection "Display"
        Depth 24
#        Modeline "1280x1024@60" 114.98 1280 1312 1744 1776 1024 1045 1055 1076
         Modes "1280x1024"
    EndSubsection
EndSection

Section "ServerLayout"
    Identifier	"xinerama"
    Screen	0 "Screen0"
    Screen	1 "Screen1" RightOf "Screen0"
    Screen	2 "Screen2" RightOf "Screen1"
    InputDevice	"Mouse_Logitech" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    Option "Xinerama" "1"
EndSection
#----- Xinerama END ------------------------------------------------------------------------------
Thank you very very much
Top
Dizzutch
Guru
Guru
User avatar
Posts: 463
Joined: Tue Nov 09, 2004 8:29 pm
Location: Worcester, MA
Contact:
Contact Dizzutch
Website

  • Quote

Post by Dizzutch » Wed Sep 06, 2006 3:40 pm

Could you post the Xorg log file?
Help the confused! Adopt an unanswered post!
prepend [solved] to your post title when you feel your issue is resolved.
Worcester Judo
Top
sydney
n00b
n00b
Posts: 44
Joined: Mon Sep 26, 2005 10:57 pm

  • Quote

Post by sydney » Wed Sep 06, 2006 5:21 pm

here is the xorg log file

Code: Select all


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 midgard 2.6.17-beyond #1 SMP PREEMPT Sat Aug 5 12:33:55 EST 2006 i686
Build Date: 27 August 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: Wed Sep  6 19:14:12 2006
(==) Using config file: "/etc/X11/xorg.conf"
(++) ServerLayout "xinerama"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "SamsungTFT"
(**) |   |-->Device "Nvidia0"
(**) |-->Screen "Screen1" (1)
(**) |   |-->Monitor "ProviewCRT"
(**) |   |-->Device "Nvidia1"
(**) |-->Screen "Screen2" (2)
(**) |   |-->Monitor "LG1915SV"
(**) |   |-->Device "Nvidia2"
(**) |-->Input Device "Mouse_Logitech"
(**) |-->Input Device "Keyboard1"
(WW) The directory "/usr/share/fonts/local/" does not exist.
	Entry deleted from font path.
(WW) The directory "/usr/share/fonts/CID/" does not exist.
	Entry deleted from font path.
(**) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/75dpi/:unscaled,
	/usr/share/fonts/100dpi/:unscaled,
	/usr/share/fonts/Type1/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/75dpi/,
	/usr/share/fonts/100dpi/
(**) RgbPath set to "/usr/lib/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(**) Option "BlankTime" "1"
(**) Option "StandbyTime" "2"
(**) Option "SuspendTime" "3"
(**) Option "OffTime" "4"
(**) Option "Xinerama" "1"
(**) Xinerama: enabled
(**) Extension "Composite" is enabled
(**) Extension "RENDER" is enabled
(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/lib/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/lib/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 1043,815a rev a3 class 05,80,00 hdr 00
(II) PCI: 00:01:0: chip 10de,0050 card 1043,815a rev a3 class 06,01,00 hdr 80
(II) PCI: 00:01:1: chip 10de,0052 card 1043,815a rev a2 class 0c,05,00 hdr 80
(II) PCI: 00:02:0: chip 10de,005a card 1043,815a rev a2 class 0c,03,10 hdr 80
(II) PCI: 00:02:1: chip 10de,005b card 1043,815a rev a3 class 0c,03,20 hdr 80
(II) PCI: 00:04:0: chip 10de,0059 card 1043,812a rev a2 class 04,01,00 hdr 00
(II) PCI: 00:06:0: chip 10de,0053 card 1043,815a rev f2 class 01,01,8a hdr 00
(II) PCI: 00:07:0: chip 10de,0054 card 1043,815a rev f3 class 01,01,85 hdr 00
(II) PCI: 00:08:0: chip 10de,0055 card 1043,815a 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:0a:0: chip 10de,0057 card 1043,8141 rev a3 class 06,80,00 hdr 00
(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:00:0: chip 10de,00c1 card 1462,9841 rev a2 class 03,00,00 hdr 00
(II) PCI: 05:06:0: chip 10de,0020 card 1102,1016 rev 04 class 03,00,00 hdr 00
(II) PCI: 05:0a:0: chip 1095,3114 card 1043,8167 rev 02 class 01,04,00 hdr 00
(II) PCI: 05:0b:0: chip 104c,8023 card 1043,808b rev 00 class 0c,00,10 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 5: bridge is at (0:9:0), (0,5,5), BCTRL: 0x020a (VGA_EN is set)
(II) Bus 5 I/O range:
	[0] -1	0	0x00009000 - 0x0000afff (0x2000) IX[B]
(II) Bus 5 non-prefetchable memory range:
	[0] -1	0	0xc3000000 - 0xc5ffffff (0x3000000) MX[B]
(II) Bus 5 prefetchable memory range:
	[0] -1	0	0xc6000000 - 0xc6ffffff (0x1000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 4: bridge is at (0:11:0), (0,4,4), BCTRL: 0x0002 (VGA_EN is cleared)
(II) PCI-to-PCI bridge:
(II) Bus 3: bridge is at (0:12:0), (0,3,3), BCTRL: 0x0002 (VGA_EN is cleared)
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:13:0), (0,2,2), BCTRL: 0x0002 (VGA_EN is cleared)
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:14:0), (0,1,1), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 1 non-prefetchable memory range:
	[0] -1	0	0xc0000000 - 0xc2ffffff (0x3000000) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0	0xb0000000 - 0xbfffffff (0x10000000) 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 (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(--) PCI: (1:0:0) nVidia Corporation NV41.1 [GeForce 6800] rev 162, Mem @ 0xc0000000/24, 0xb0000000/28, 0xc1000000/24
(--) PCI:*(5:6:0) nVidia Corporation NV4 [RIVA TNT] rev 4, Mem @ 0xc3000000/24, 0xc6000000/24, BIOS @ 0xc4000000/16
(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	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	0xc5000000 - 0xc5003fff (0x4000) MX[B]
	[1] -1	0	0xc5004000 - 0xc50047ff (0x800) MX[B]
	[2] -1	0	0xc5005000 - 0xc50053ff (0x400) MX[B]
	[3] -1	0	0xc7000000 - 0xc7000fff (0x1000) MX[B]
	[4] -1	0	0xc7001000 - 0xc7001fff (0x1000) MX[B]
	[5] -1	0	0xc7002000 - 0xc7002fff (0x1000) MX[B]
	[6] -1	0	0xc7003000 - 0xc7003fff (0x1000) MX[B]
	[7] -1	0	0xfeb00000 - 0xfeb000ff (0x100) MX[B]
	[8] -1	0	0xc7004000 - 0xc7004fff (0x1000) MX[B]
	[9] -1	0	0xc4080000 - 0xc408ffff (0x10000) MX[B](B)
	[10] -1	0	0xc6000000 - 0xc6ffffff (0x1000000) MX[B](B)
	[11] -1	0	0xc3000000 - 0xc3ffffff (0x1000000) MX[B](B)
	[12] -1	0	0xc1000000 - 0xc1ffffff (0x1000000) MX[B](B)
	[13] -1	0	0xb0000000 - 0xbfffffff (0x10000000) MX[B](B)
	[14] -1	0	0xc0000000 - 0xc0ffffff (0x1000000) MX[B](B)
	[15] -1	0	0x0000a000 - 0x0000a00f (0x10) IX[B]
	[16] -1	0	0x00009c00 - 0x00009c03 (0x4) IX[B]
	[17] -1	0	0x00009800 - 0x00009807 (0x8) IX[B]
	[18] -1	0	0x00009400 - 0x00009403 (0x4) IX[B]
	[19] -1	0	0x00009000 - 0x00009007 (0x8) IX[B]
	[20] -1	0	0x0000b000 - 0x0000b007 (0x8) IX[B]
	[21] -1	0	0x0000c400 - 0x0000c40f (0x10) IX[B]
	[22] -1	0	0x00000b60 - 0x00000b63 (0x4) IX[B]
	[23] -1	0	0x00000960 - 0x00000967 (0x8) IX[B]
	[24] -1	0	0x00000be0 - 0x00000be3 (0x4) IX[B]
	[25] -1	0	0x000009e0 - 0x000009e7 (0x8) IX[B]
	[26] -1	0	0x0000d800 - 0x0000d80f (0x10) IX[B]
	[27] -1	0	0x00000b70 - 0x00000b73 (0x4) IX[B]
	[28] -1	0	0x00000970 - 0x00000977 (0x8) IX[B]
	[29] -1	0	0x00000bf0 - 0x00000bf3 (0x4) IX[B]
	[30] -1	0	0x000009f0 - 0x000009f7 (0x8) IX[B]
	[31] -1	0	0x0000f000 - 0x0000f00f (0x10) IX[B]
	[32] -1	0	0x0000e000 - 0x0000e0ff (0x100) IX[B]
	[33] -1	0	0x0000dc00 - 0x0000dcff (0x100) IX[B]
	[34] -1	0	0x00004c40 - 0x00004c7f (0x40) IX[B]
	[35] -1	0	0x00004c00 - 0x00004c3f (0x40) IX[B]
	[36] -1	0	0x0000e400 - 0x0000e41f (0x20) IX[B]
(II) Active PCI resource ranges after removing overlaps:
	[0] -1	0	0xc5000000 - 0xc5003fff (0x4000) MX[B]
	[1] -1	0	0xc5004000 - 0xc50047ff (0x800) MX[B]
	[2] -1	0	0xc5005000 - 0xc50053ff (0x400) MX[B]
	[3] -1	0	0xc7000000 - 0xc7000fff (0x1000) MX[B]
	[4] -1	0	0xc7001000 - 0xc7001fff (0x1000) MX[B]
	[5] -1	0	0xc7002000 - 0xc7002fff (0x1000) MX[B]
	[6] -1	0	0xc7003000 - 0xc7003fff (0x1000) MX[B]
	[7] -1	0	0xfeb00000 - 0xfeb000ff (0x100) MX[B]
	[8] -1	0	0xc7004000 - 0xc7004fff (0x1000) MX[B]
	[9] -1	0	0xc4080000 - 0xc408ffff (0x10000) MX[B](B)
	[10] -1	0	0xc6000000 - 0xc6ffffff (0x1000000) MX[B](B)
	[11] -1	0	0xc3000000 - 0xc3ffffff (0x1000000) MX[B](B)
	[12] -1	0	0xc1000000 - 0xc1ffffff (0x1000000) MX[B](B)
	[13] -1	0	0xb0000000 - 0xbfffffff (0x10000000) MX[B](B)
	[14] -1	0	0xc0000000 - 0xc0ffffff (0x1000000) MX[B](B)
	[15] -1	0	0x0000a000 - 0x0000a00f (0x10) IX[B]
	[16] -1	0	0x00009c00 - 0x00009c03 (0x4) IX[B]
	[17] -1	0	0x00009800 - 0x00009807 (0x8) IX[B]
	[18] -1	0	0x00009400 - 0x00009403 (0x4) IX[B]
	[19] -1	0	0x00009000 - 0x00009007 (0x8) IX[B]
	[20] -1	0	0x0000b000 - 0x0000b007 (0x8) IX[B]
	[21] -1	0	0x0000c400 - 0x0000c40f (0x10) IX[B]
	[22] -1	0	0x00000b60 - 0x00000b63 (0x4) IX[B]
	[23] -1	0	0x00000960 - 0x00000967 (0x8) IX[B]
	[24] -1	0	0x00000be0 - 0x00000be3 (0x4) IX[B]
	[25] -1	0	0x000009e0 - 0x000009e7 (0x8) IX[B]
	[26] -1	0	0x0000d800 - 0x0000d80f (0x10) IX[B]
	[27] -1	0	0x00000b70 - 0x00000b73 (0x4) IX[B]
	[28] -1	0	0x00000970 - 0x00000977 (0x8) IX[B]
	[29] -1	0	0x00000bf0 - 0x00000bf3 (0x4) IX[B]
	[30] -1	0	0x000009f0 - 0x000009f7 (0x8) IX[B]
	[31] -1	0	0x0000f000 - 0x0000f00f (0x10) IX[B]
	[32] -1	0	0x0000e000 - 0x0000e0ff (0x100) IX[B]
	[33] -1	0	0x0000dc00 - 0x0000dcff (0x100) IX[B]
	[34] -1	0	0x00004c40 - 0x00004c7f (0x40) IX[B]
	[35] -1	0	0x00004c00 - 0x00004c3f (0x40) IX[B]
	[36] -1	0	0x0000e400 - 0x0000e41f (0x20) IX[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	0xc5000000 - 0xc5003fff (0x4000) MX[B]
	[5] -1	0	0xc5004000 - 0xc50047ff (0x800) MX[B]
	[6] -1	0	0xc5005000 - 0xc50053ff (0x400) MX[B]
	[7] -1	0	0xc7000000 - 0xc7000fff (0x1000) MX[B]
	[8] -1	0	0xc7001000 - 0xc7001fff (0x1000) MX[B]
	[9] -1	0	0xc7002000 - 0xc7002fff (0x1000) MX[B]
	[10] -1	0	0xc7003000 - 0xc7003fff (0x1000) MX[B]
	[11] -1	0	0xfeb00000 - 0xfeb000ff (0x100) MX[B]
	[12] -1	0	0xc7004000 - 0xc7004fff (0x1000) MX[B]
	[13] -1	0	0xc4080000 - 0xc408ffff (0x10000) MX[B](B)
	[14] -1	0	0xc6000000 - 0xc6ffffff (0x1000000) MX[B](B)
	[15] -1	0	0xc3000000 - 0xc3ffffff (0x1000000) MX[B](B)
	[16] -1	0	0xc1000000 - 0xc1ffffff (0x1000000) MX[B](B)
	[17] -1	0	0xb0000000 - 0xbfffffff (0x10000000) MX[B](B)
	[18] -1	0	0xc0000000 - 0xc0ffffff (0x1000000) MX[B](B)
	[19] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[20] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[21] -1	0	0x0000a000 - 0x0000a00f (0x10) IX[B]
	[22] -1	0	0x00009c00 - 0x00009c03 (0x4) IX[B]
	[23] -1	0	0x00009800 - 0x00009807 (0x8) IX[B]
	[24] -1	0	0x00009400 - 0x00009403 (0x4) IX[B]
	[25] -1	0	0x00009000 - 0x00009007 (0x8) IX[B]
	[26] -1	0	0x0000b000 - 0x0000b007 (0x8) IX[B]
	[27] -1	0	0x0000c400 - 0x0000c40f (0x10) IX[B]
	[28] -1	0	0x00000b60 - 0x00000b63 (0x4) IX[B]
	[29] -1	0	0x00000960 - 0x00000967 (0x8) IX[B]
	[30] -1	0	0x00000be0 - 0x00000be3 (0x4) IX[B]
	[31] -1	0	0x000009e0 - 0x000009e7 (0x8) IX[B]
	[32] -1	0	0x0000d800 - 0x0000d80f (0x10) IX[B]
	[33] -1	0	0x00000b70 - 0x00000b73 (0x4) IX[B]
	[34] -1	0	0x00000970 - 0x00000977 (0x8) IX[B]
	[35] -1	0	0x00000bf0 - 0x00000bf3 (0x4) IX[B]
	[36] -1	0	0x000009f0 - 0x000009f7 (0x8) IX[B]
	[37] -1	0	0x0000f000 - 0x0000f00f (0x10) IX[B]
	[38] -1	0	0x0000e000 - 0x0000e0ff (0x100) IX[B]
	[39] -1	0	0x0000dc00 - 0x0000dcff (0x100) IX[B]
	[40] -1	0	0x00004c40 - 0x00004c7f (0x40) IX[B]
	[41] -1	0	0x00004c00 - 0x00004c3f (0x40) IX[B]
	[42] -1	0	0x0000e400 - 0x0000e41f (0x20) IX[B]
(II) LoadModule: "dbe"
(II) Loading /usr/lib/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: "v4l"
(WW) Warning, couldn't open module v4l
(II) UnloadModule: "v4l"
(EE) Failed to load module "v4l" (module does not exist, 0)
(II) LoadModule: "extmod"
(II) Loading /usr/lib/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: "extmod"
(II) Reloading /usr/lib/xorg/modules/extensions/libextmod.so
(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 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: "type1"
(II) Loading /usr/lib/xorg/modules/fonts/libtype1.so
(II) Module type1: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.0.2
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Type1
(II) LoadModule: "freetype"
(II) Loading /usr/lib/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: "glx"
(II) Loading /usr/lib/xorg/modules/extensions/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
	compiled for 4.0.2, module version = 1.0.8774
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "nvidia"
(II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
(II) Module nvidia: vendor="NVIDIA Corporation"
	compiled for 4.0.2, module version = 1.0.8774
	Module class: X.Org Video Driver
(II) LoadModule: "mouse"
(II) Loading /usr/lib/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/lib/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  1.0-8774  Tue Aug  1 20:55:35 PDT 2006
(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
(II) Primary Device is: PCI 05:06:0
(WW) NVIDIA: No matching Device section for instance (BusID PCI:5:6:0) found
(--) Chipset NVIDIA GPU found
(--) Chipset NVIDIA GPU found
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/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 "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib/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	0xc5000000 - 0xc5003fff (0x4000) MX[B]
	[5] -1	0	0xc5004000 - 0xc50047ff (0x800) MX[B]
	[6] -1	0	0xc5005000 - 0xc50053ff (0x400) MX[B]
	[7] -1	0	0xc7000000 - 0xc7000fff (0x1000) MX[B]
	[8] -1	0	0xc7001000 - 0xc7001fff (0x1000) MX[B]
	[9] -1	0	0xc7002000 - 0xc7002fff (0x1000) MX[B]
	[10] -1	0	0xc7003000 - 0xc7003fff (0x1000) MX[B]
	[11] -1	0	0xfeb00000 - 0xfeb000ff (0x100) MX[B]
	[12] -1	0	0xc7004000 - 0xc7004fff (0x1000) MX[B]
	[13] -1	0	0xc4080000 - 0xc408ffff (0x10000) MX[B](B)
	[14] -1	0	0xc6000000 - 0xc6ffffff (0x1000000) MX[B](B)
	[15] -1	0	0xc3000000 - 0xc3ffffff (0x1000000) MX[B](B)
	[16] -1	0	0xc1000000 - 0xc1ffffff (0x1000000) MX[B](B)
	[17] -1	0	0xb0000000 - 0xbfffffff (0x10000000) MX[B](B)
	[18] -1	0	0xc0000000 - 0xc0ffffff (0x1000000) MX[B](B)
	[19] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[20] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[21] -1	0	0x0000a000 - 0x0000a00f (0x10) IX[B]
	[22] -1	0	0x00009c00 - 0x00009c03 (0x4) IX[B]
	[23] -1	0	0x00009800 - 0x00009807 (0x8) IX[B]
	[24] -1	0	0x00009400 - 0x00009403 (0x4) IX[B]
	[25] -1	0	0x00009000 - 0x00009007 (0x8) IX[B]
	[26] -1	0	0x0000b000 - 0x0000b007 (0x8) IX[B]
	[27] -1	0	0x0000c400 - 0x0000c40f (0x10) IX[B]
	[28] -1	0	0x00000b60 - 0x00000b63 (0x4) IX[B]
	[29] -1	0	0x00000960 - 0x00000967 (0x8) IX[B]
	[30] -1	0	0x00000be0 - 0x00000be3 (0x4) IX[B]
	[31] -1	0	0x000009e0 - 0x000009e7 (0x8) IX[B]
	[32] -1	0	0x0000d800 - 0x0000d80f (0x10) IX[B]
	[33] -1	0	0x00000b70 - 0x00000b73 (0x4) IX[B]
	[34] -1	0	0x00000970 - 0x00000977 (0x8) IX[B]
	[35] -1	0	0x00000bf0 - 0x00000bf3 (0x4) IX[B]
	[36] -1	0	0x000009f0 - 0x000009f7 (0x8) IX[B]
	[37] -1	0	0x0000f000 - 0x0000f00f (0x10) IX[B]
	[38] -1	0	0x0000e000 - 0x0000e0ff (0x100) IX[B]
	[39] -1	0	0x0000dc00 - 0x0000dcff (0x100) IX[B]
	[40] -1	0	0x00004c40 - 0x00004c7f (0x40) IX[B]
	[41] -1	0	0x00004c00 - 0x00004c3f (0x40) IX[B]
	[42] -1	0	0x0000e400 - 0x0000e41f (0x20) IX[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	0xc5000000 - 0xc5003fff (0x4000) MX[B]
	[5] -1	0	0xc5004000 - 0xc50047ff (0x800) MX[B]
	[6] -1	0	0xc5005000 - 0xc50053ff (0x400) MX[B]
	[7] -1	0	0xc7000000 - 0xc7000fff (0x1000) MX[B]
	[8] -1	0	0xc7001000 - 0xc7001fff (0x1000) MX[B]
	[9] -1	0	0xc7002000 - 0xc7002fff (0x1000) MX[B]
	[10] -1	0	0xc7003000 - 0xc7003fff (0x1000) MX[B]
	[11] -1	0	0xfeb00000 - 0xfeb000ff (0x100) MX[B]
	[12] -1	0	0xc7004000 - 0xc7004fff (0x1000) MX[B]
	[13] -1	0	0xc4080000 - 0xc408ffff (0x10000) MX[B](B)
	[14] -1	0	0xc6000000 - 0xc6ffffff (0x1000000) MX[B](B)
	[15] -1	0	0xc3000000 - 0xc3ffffff (0x1000000) MX[B](B)
	[16] -1	0	0xc1000000 - 0xc1ffffff (0x1000000) MX[B](B)
	[17] -1	0	0xb0000000 - 0xbfffffff (0x10000000) MX[B](B)
	[18] -1	0	0xc0000000 - 0xc0ffffff (0x1000000) MX[B](B)
	[19] 0	0	0x000a0000 - 0x000affff (0x10000) MS[B]
	[20] 0	0	0x000b0000 - 0x000b7fff (0x8000) MS[B]
	[21] 0	0	0x000b8000 - 0x000bffff (0x8000) MS[B]
	[22] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[23] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[24] -1	0	0x0000a000 - 0x0000a00f (0x10) IX[B]
	[25] -1	0	0x00009c00 - 0x00009c03 (0x4) IX[B]
	[26] -1	0	0x00009800 - 0x00009807 (0x8) IX[B]
	[27] -1	0	0x00009400 - 0x00009403 (0x4) IX[B]
	[28] -1	0	0x00009000 - 0x00009007 (0x8) IX[B]
	[29] -1	0	0x0000b000 - 0x0000b007 (0x8) IX[B]
	[30] -1	0	0x0000c400 - 0x0000c40f (0x10) IX[B]
	[31] -1	0	0x00000b60 - 0x00000b63 (0x4) IX[B]
	[32] -1	0	0x00000960 - 0x00000967 (0x8) IX[B]
	[33] -1	0	0x00000be0 - 0x00000be3 (0x4) IX[B]
	[34] -1	0	0x000009e0 - 0x000009e7 (0x8) IX[B]
	[35] -1	0	0x0000d800 - 0x0000d80f (0x10) IX[B]
	[36] -1	0	0x00000b70 - 0x00000b73 (0x4) IX[B]
	[37] -1	0	0x00000970 - 0x00000977 (0x8) IX[B]
	[38] -1	0	0x00000bf0 - 0x00000bf3 (0x4) IX[B]
	[39] -1	0	0x000009f0 - 0x000009f7 (0x8) IX[B]
	[40] -1	0	0x0000f000 - 0x0000f00f (0x10) IX[B]
	[41] -1	0	0x0000e000 - 0x0000e0ff (0x100) IX[B]
	[42] -1	0	0x0000dc00 - 0x0000dcff (0x100) IX[B]
	[43] -1	0	0x00004c40 - 0x00004c7f (0x40) IX[B]
	[44] -1	0	0x00004c00 - 0x00004c3f (0x40) IX[B]
	[45] -1	0	0x0000e400 - 0x0000e41f (0x20) IX[B]
	[46] 0	0	0x000003b0 - 0x000003bb (0xc) IS[B]
	[47] 0	0	0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) Setting vga for screen 1.
(**) 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"
(WW) NVIDIA(0): Option "HorizSync" requires an string value
(**) NVIDIA(0): Option "VertRefresh" "60"
(**) NVIDIA(0): Option "AllowGLXWithComposite" "true"
(**) NVIDIA(0): Option "UseDisplayDevice" "CRT"
(**) NVIDIA(0): Option "UseEdidDpi" "FALSE"
(**) NVIDIA(0): Option "DPI" "96 x 96"
(**) NVIDIA(0): Enabling RENDER acceleration
(II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
(II) NVIDIA(0):     enabled.
(II) NVIDIA(0): NVIDIA GPU GeForce 6800 at PCI:1:0:0
(--) NVIDIA(0): VideoRAM: 262144 kBytes
(--) NVIDIA(0): VideoBIOS: 05.41.02.17.13
(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 6800 at PCI:1:0:0:
(--) NVIDIA(0):     LG L1950H (CRT-0)
(--) NVIDIA(0):     LG L1950H (DFP-0)
(--) NVIDIA(0): LG L1950H (CRT-0): 400.0 MHz maximum pixel clock
(--) NVIDIA(0): LG L1950H (DFP-0): 155.0 MHz maximum pixel clock
(--) NVIDIA(0): LG L1950H (DFP-0): Internal Single Link TMDS
(II) NVIDIA(0): Option "UseDisplayDevice" "CRT" converted to "CRT-0".
(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 (96, 96); computed from "DPI" X config option
(**) NVIDIA(1): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(1): RGB weight 888
(==) NVIDIA(1): Default visual is TrueColor
(==) NVIDIA(1): Using gamma correction (1.0, 1.0, 1.0)
(**) NVIDIA(1): Option "NoLogo" "1"
(**) NVIDIA(1): Option "RenderAccel" "true"
(WW) NVIDIA(1): Option "HorizSync" requires an string value
(**) NVIDIA(1): Option "VertRefresh" "60"
(**) NVIDIA(1): Option "AllowGLXWithComposite" "true"
(**) NVIDIA(1): Option "UseDisplayDevice" "DFP"
(**) NVIDIA(1): Option "UseEdidDpi" "FALSE"
(**) NVIDIA(1): Option "DPI" "96 x 96"
(**) NVIDIA(1): Enabling RENDER acceleration
(II) NVIDIA(1): NVIDIA GPU GeForce 6800 at PCI:1:0:0
(--) NVIDIA(1): VideoRAM: 262144 kBytes
(--) NVIDIA(1): VideoBIOS: 05.41.02.17.13
(II) NVIDIA(1): Detected PCI Express Link width: 16X
(--) NVIDIA(1): Interlaced video modes are supported on this GPU
(--) NVIDIA(1): Connected display device(s) on GeForce 6800 at PCI:1:0:0:
(--) NVIDIA(1):     LG L1950H (CRT-0)
(--) NVIDIA(1):     LG L1950H (DFP-0)
(--) NVIDIA(1): LG L1950H (CRT-0): 400.0 MHz maximum pixel clock
(--) NVIDIA(1): LG L1950H (DFP-0): 155.0 MHz maximum pixel clock
(--) NVIDIA(1): LG L1950H (DFP-0): Internal Single Link TMDS
(II) NVIDIA(1): Option "UseDisplayDevice" "DFP" converted to "DFP-0".
(II) NVIDIA(1): Assigned Display Device: DFP-0
(II) NVIDIA(1): Validated modes:
(II) NVIDIA(1):     "1280x1024"
(II) NVIDIA(1): Virtual screen size determined to be 1280 x 1024
(**) NVIDIA(1): DPI set to (96, 96); computed from "DPI" X config option
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  Yes, I do.
(II) LoadModule: "rac"
(II) Loading /usr/lib/xorg/modules/librac.so
(II) Module rac: vendor="X.Org Foundation"
	compiled for 7.1.1, module version = 1.0.0
	ABI class: X.Org Video Driver, version 1.0
(II) resource ranges after preInit:
	[0] 0	0	0xc1000000 - 0xc1ffffff (0x1000000) MX[B]
	[1] 0	0	0xb0000000 - 0xbfffffff (0x10000000) MX[B]
	[2] 0	0	0xc0000000 - 0xc0ffffff (0x1000000) 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	0xc5000000 - 0xc5003fff (0x4000) MX[B]
	[8] -1	0	0xc5004000 - 0xc50047ff (0x800) MX[B]
	[9] -1	0	0xc5005000 - 0xc50053ff (0x400) MX[B]
	[10] -1	0	0xc7000000 - 0xc7000fff (0x1000) MX[B]
	[11] -1	0	0xc7001000 - 0xc7001fff (0x1000) MX[B]
	[12] -1	0	0xc7002000 - 0xc7002fff (0x1000) MX[B]
	[13] -1	0	0xc7003000 - 0xc7003fff (0x1000) MX[B]
	[14] -1	0	0xfeb00000 - 0xfeb000ff (0x100) MX[B]
	[15] -1	0	0xc7004000 - 0xc7004fff (0x1000) MX[B]
	[16] -1	0	0xc4080000 - 0xc408ffff (0x10000) MX[B](B)
	[17] -1	0	0xc6000000 - 0xc6ffffff (0x1000000) MX[B](B)
	[18] -1	0	0xc3000000 - 0xc3ffffff (0x1000000) MX[B](B)
	[19] -1	0	0xc1000000 - 0xc1ffffff (0x1000000) MX[B](B)
	[20] -1	0	0xb0000000 - 0xbfffffff (0x10000000) MX[B](B)
	[21] -1	0	0xc0000000 - 0xc0ffffff (0x1000000) MX[B](B)
	[22] 0	0	0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
	[23] 0	0	0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
	[24] 0	0	0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
	[25] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[26] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[27] -1	0	0x0000a000 - 0x0000a00f (0x10) IX[B]
	[28] -1	0	0x00009c00 - 0x00009c03 (0x4) IX[B]
	[29] -1	0	0x00009800 - 0x00009807 (0x8) IX[B]
	[30] -1	0	0x00009400 - 0x00009403 (0x4) IX[B]
	[31] -1	0	0x00009000 - 0x00009007 (0x8) IX[B]
	[32] -1	0	0x0000b000 - 0x0000b007 (0x8) IX[B]
	[33] -1	0	0x0000c400 - 0x0000c40f (0x10) IX[B]
	[34] -1	0	0x00000b60 - 0x00000b63 (0x4) IX[B]
	[35] -1	0	0x00000960 - 0x00000967 (0x8) IX[B]
	[36] -1	0	0x00000be0 - 0x00000be3 (0x4) IX[B]
	[37] -1	0	0x000009e0 - 0x000009e7 (0x8) IX[B]
	[38] -1	0	0x0000d800 - 0x0000d80f (0x10) IX[B]
	[39] -1	0	0x00000b70 - 0x00000b73 (0x4) IX[B]
	[40] -1	0	0x00000970 - 0x00000977 (0x8) IX[B]
	[41] -1	0	0x00000bf0 - 0x00000bf3 (0x4) IX[B]
	[42] -1	0	0x000009f0 - 0x000009f7 (0x8) IX[B]
	[43] -1	0	0x0000f000 - 0x0000f00f (0x10) IX[B]
	[44] -1	0	0x0000e000 - 0x0000e0ff (0x100) IX[B]
	[45] -1	0	0x0000dc00 - 0x0000dcff (0x100) IX[B]
	[46] -1	0	0x00004c40 - 0x00004c7f (0x40) IX[B]
	[47] -1	0	0x00004c00 - 0x00004c3f (0x40) IX[B]
	[48] -1	0	0x0000e400 - 0x0000e41f (0x20) IX[B]
	[49] 0	0	0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
	[50] 0	0	0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(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) NVIDIA(1): Setting mode "1280x1024"
(II) NVIDIA(1): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(1): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(1): Backing store disabled
(==) NVIDIA(1): Silken mouse enabled
(**) Option "dpms"
(**) NVIDIA(1): DPMS enabled
(==) RandR enabled
(II) Entity 0 shares no resources
(II) Entity 1 shares no resources
(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" "ExplorerPS/2"
(**) Mouse_Logitech: Device: "/dev/input/mice"
(**) Mouse_Logitech: Protocol: "ExplorerPS/2"
(**) Option "CorePointer"
(**) Mouse_Logitech: Core Pointer
(**) Option "Device" "/dev/input/mice"
(**) Option "Buttons" "8"
(==) Mouse_Logitech: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Mouse_Logitech: ZAxisMapping: buttons 4 and 5
(**) Mouse_Logitech: Buttons: 12
(**) Option "Resolution" "1600"
(**) Mouse_Logitech: Resolution: 1600
(**) Option "CoreKeyboard"
(**) Keyboard1: Core Keyboard
(**) Option "Protocol" "standard"
(**) Keyboard1: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Keyboard1: XkbRules: "xorg"
(**) Option "XkbModel" "microsoft"
(**) Keyboard1: XkbModel: "microsoft"
(**) Option "XkbLayout" "de"
(**) Keyboard1: XkbLayout: "de"
(**) Option "XkbVariant" "nodeadkeys"
(**) Keyboard1: XkbVariant: "nodeadkeys"
(**) Option "XkbOptions" "grp:shifts_toggle,grp_led:scroll,caps:shift,altwin=super_win"
(**) Keyboard1: XkbOptions: "grp:shifts_toggle,grp_led:scroll,caps:shift,altwin=super_win"
(**) Option "CustomKeycodes" "off"
(**) Keyboard1: CustomKeycodes disabled
(II) XINPUT: Adding extended input device "Keyboard1" (type: KEYBOARD)
(II) XINPUT: Adding extended input device "Mouse_Logitech" (type: MOUSE)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
    xkb_keycodes             { include "xfree86+aliases(qwertz)" };
    xkb_types                { include "complete+caps(shift)" };
    xkb_compatibility        { include "complete+ledscroll(group_lock)" };
    xkb_symbols              { include "pc(pc105)+de(nodeadkeys)+group(shifts_toggle)" };
    xkb_geometry             { include "microsoft(natural)" };
(II) Mouse_Logitech: ps2EnableDataReporting: succeeded
    xkb_keycodes             { include "xfree86+aliases(qwertz)" };
    xkb_types                { include "complete+caps(shift)" };
    xkb_compatibility        { include "complete+ledscroll(group_lock)" };
    xkb_symbols              { include "pc(pc105)+de(nodeadkeys)+group(shifts_toggle)" };
    xkb_geometry             { include "pc(pc105)" };
Thank you for trying to Help me.
Top
Drone1
Apprentice
Apprentice
User avatar
Posts: 232
Joined: Tue Sep 27, 2005 6:39 pm
Location: United States of Texas

  • Quote

Post by Drone1 » Wed Sep 06, 2006 8:30 pm

sydney

I believe this might be the culprit here.
From your Xorg.0.log

Code: Select all

(II) Primary Device is: PCI 05:06:0
(WW) NVIDIA: No matching Device section for instance (BusID PCI:5:6:0) found
And from your xorg.conf.

Code: Select all

Section "Device"
    Identifier  "Nvidia2"
    VendorName  "Creative"
    BoardName   "Nvidia TNT2 "
    Driver      "nvidia"
    BusID       "PCI:2:0:0"
PCI:2:0:0 doesn't exist on your PC. The 2nd video is being identified as PCI:05:06:0.

Under the 'Nvidia2' Identifier, try changing your 'BusID' to "PCI:5:6:0".

As always, confirm and close upon success.

ps: don't ask why PCI:5:6:0 is identified as primary ...
Top
sydney
n00b
n00b
Posts: 44
Joined: Mon Sep 26, 2005 10:57 pm

  • Quote

Post by sydney » Wed Sep 06, 2006 9:55 pm

I have changed to PCI:5:6:0 dotn work.
I Modify something and try get working in single mode with RIVA TNT.

I thing the driver is the problem, in Driver "VESA" works the Single mode.
Driver "Nvidia" dop me back to tty1.


PS: Okay now i have the the Problem

Code: Select all

nvidia-legacy-utils conflicts with nvidia-utils
Top
sydney
n00b
n00b
Posts: 44
Joined: Mon Sep 26, 2005 10:57 pm

  • Quote

Post by sydney » Fri Sep 08, 2006 9:00 am

problem isent solved.
Need more HELP please.

I need working xorg.conf with Xinerama...The xorg.conf from wiki doesent work.
Top
Dizzutch
Guru
Guru
User avatar
Posts: 463
Joined: Tue Nov 09, 2004 8:29 pm
Location: Worcester, MA
Contact:
Contact Dizzutch
Website

  • Quote

Post by Dizzutch » Fri Sep 08, 2006 12:37 pm

please post new logs after you changed PCI bus address
Help the confused! Adopt an unanswered post!
prepend [solved] to your post title when you feel your issue is resolved.
Worcester Judo
Top
gzunk
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 149
Joined: Sun Aug 31, 2003 1:58 pm
Location: Dunblane, Scotland

  • Quote

Post by gzunk » Sat Sep 09, 2006 11:00 am

Here's a valid xorg.conf for 3 monitors. I use the binary nvidia drivers. I do not use TwinView, but Xinerama only for the three screens. I have twin 7800GTX, of which I am using the TV-out on the second card to drive the third monitor (which is actually a TV). Apart from specifying the TV format (PAL) and output method (SVideo) and telling the device to use TVout, configuring the TV is exactly the same as configuring a monitor.

Also, see that I have three device sections, two of which contain the same busid. This is as described in the NVidia configuration guide. Each section has a different "UseDisplayDevice" which tells the card which monitor to drive. If the monitor has a VGA connector, then this should be "CRT" - even if it is an LCD and even if it is plugged into a VGA to DVI converter. If the monitor is DVI then use "DFP". So if you have two VGA style connectors plugged in, then both sections should say "CRT" and I assume that the primary one will be picked up in the first device section and the secondary in the second device section, but I can't prove it since I don't have another VGA monitor to try.

I had to comment out the Screen 2 line in the third device section to get it to work. This means that I don't quite understand what this line should be used for. I thought it referenced the screens that I had defined in the ServerLayout section, but this may not be the case. It may be that it refers the the number of screens attached to the particular card, but since I got it working I haven't bothered to investigate further.

Having since checked, this does indeed refer to the screens attached to each card so I have updated the xorg.conf file accordingly

Hope this helps you.

Code: Select all

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder26)  Wed Mar 29 15:31:59 PST 2006

Section "Extensions"
	Option "Composite" "true"
EndSection

Section "ServerLayout"
    Identifier     "Xinerama Layout"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" LeftOf "Screen0"
    Screen      2  "Screen2" Below "Screen1"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    FontPath        "/usr/share/fonts/misc/"
    FontPath        "/usr/share/fonts/TTF/"
    FontPath        "/usr/share/fonts/Type1/"
    FontPath        "/usr/share/fonts/CID/"
    FontPath        "/usr/share/fonts/75dpi/"
    FontPath        "/usr/share/fonts/100dpi/"
EndSection

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

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

Section "InputDevice"
    Identifier     "Keyboard0"
    Driver         "kbd"
    Option         "AutoRepeat" "500 30"
    Option         "XkbModel" "pc105"
    Option         "XkbLayout" "gb"
    Option         "XkbVariant" "lv3:ralt_switch, nodeadkeys"
EndSection

Section "InputDevice"
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "IMPS/2"
    Option         "Device" "/dev/input/mice"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "gnr"
    ModelName      "TS2000H"
	# HorizSync    30-83
	# VertRefresh  50-85
    Option         "DPMS"
EndSection

Section "Monitor"
    Identifier     "Monitor1"
    VendorName     "AOC"
    ModelName      "LS370"
	# HorizSync    30-80
	# VertRefresh  55-75
    Option         "DPMS"
EndSection

Section "Monitor"
    Identifier     "Monitor2"
    VendorName	   "Maxim"
    ModelName      "7inch LCDTV"
    DisplaySize    155 88
    HorizSync	   30 - 60
    VertRefresh    60
    Option     "DPMS"
EndSection

Section "Device"
    Identifier     "Card0"
    Driver         "nvidia"
    BusID          "PCI:1:0:0"
    VendorName     "nVidia Corporation"
    BoardName      "7800GTX"
    Screen         0
EndSection

Section "Device"
    Identifier     "Card1"
    Driver         "nvidia"
    BusID          "PCI:2:0:0"
    VendorName     "nVidia Corporation"
    BoardName      "7800GTX"
    Option         "UseDisplayDevice" "CRT"
    Screen         0
EndSection

Section "Device"
    Identifier     "Card2"
    Driver         "nvidia"
    BusID          "PCI:2:0:0"
    VendorName     "nVidia Corporation"
    BoardName      "7800GTX"
    Option         "TVStandard" "PAL-I"
    Option         "TVOutFormat" "SVIDEO"
    Option         "UseDisplayDevice" "TV"
    Screen	   1
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Card0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "NoLogo" "TRUE"
        #Option     "UBB"                	# [<bool>]
    Option         "RenderAccel" "TRUE"
    Option         "CursorShadow" "TRUE"
        #Option     "CursorShadowAlpha"  	# <i>
    Option         "AllowGLXWithComposite" "TRUE"
    SubSection     "Display"
        Viewport    0 0
        Depth       24
        Modes      "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "Screen"
   Identifier     "Screen1"
    Device         "Card1"
    Monitor        "Monitor1"
    DefaultDepth    24
    Option         "NoLogo" "TRUE"
        #Option     "UBB"                	# [<bool>]
    Option         "RenderAccel" "TRUE"
    Option         "CursorShadow" "TRUE"
        #Option     "CursorShadowAlpha"  	# <i>
    Option         "AllowGLXWithComposite" "TRUE"
    SubSection     "Display"
        Viewport    0 0
        Depth       24
        Modes      "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen2"
    Device         "Card2"
    Monitor        "Monitor2"
    DefaultDepth   24
    Option         "NoLogo" "TRUE"
    Option         "RenderAccel" "TRUE"
    Option         "CursorShadow" "FALSE"
    Option         "AllowGLXWithComposite" "TRUE"
    Option	   "TVOverScan" "0.855555"
    SubSection     "Display"
        Viewport    0 0
        Modes      "720x576"
    EndSubSection
EndSection
Intel Core 2 Quad Q9650 | Asus P5K | 8GB DDR-2 800
Sapphire Radeon 4870 X2 | 30" Samsung SM305T+
(4xSATA) 3 TB | 2 x DVD+-RW DL (Pioneer 112D 115D)
Logitech X-530 5.1 | DiNovo Edge | MX Revolution
Top
Post Reply

8 posts • Page 1 of 1

Return to “Desktop Environments”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy