3 Monitors
I am trying to add the 3rd DFP to a TwinView setup using Xinerama. The goal is set a uniform screen across all three DFPs. I have 2 Nvidia cards: one is Quadro FX 1000 (the TwinView runs on 2 DFPs); another GeForce FX 5200 connected to the 3rd DFP. The OS is RHEL3. startx only displays the window on the TwinView DFPs. The 3rd DFP gets a blue screen after flipfloping a few time as NVIDIA log comes up. See below for my XF86Config. What am I missing?
- Kevin Y.
---------------------------------------------------------------------
Section "ServerLayout"
Identifier "Default Layout"
Screen "Screen0"
Screen "Screen1" RightOf "Screen0"
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "DevInputMice" "AlwaysCore"
Option "Clone" "off"
Option "Xinerama"
EndSection
Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "unix/:7100"
EndSection
Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Load "type1"
Load "vnc"
EndSection
Section "ServerFlags"
Option "Xinerama" "True"
Option "BlankTime" "600"
Option "StandbyTime" "0"
Option "SuspendTime" "0"
Option "OffTime" "0"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
Option "XkbRules" "xfree86"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "PS/2"
Option "Device" "/dev/psaux"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "no"
EndSection
Section "InputDevice"
Identifier "DevInputMice"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "no"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "NEC"
ModelName "NEC GT6000"
HorizSync 29.0 - 130.0
VertRefresh 60.0
Option "CalcAlgoritm" "CheckDesktopGeometry"
Option "dpms"
EndSection
Section "Monitor"
Identifier "Monitor1"
VendorName "NEC"
ModelName "NEC GT6000"
HorizSync 29.0 - 130.0
VertRefresh 60.0
Option "CalcAlgoritm" "CheckDesktopGeometry"
Option "dpms"
EndSection
Section "Monitor"
Identifier "Monitor2"
VendorName "NEC"
ModelName "NEC GT6000"
HorizSync 29.0 - 130.0
VertRefresh 60.0
Option "CalcAlgoritm" "CheckDesktopGeometry"
Option "dpms"
EndSection
Section "Device"
Option "NvAGP" "3"
Option "TwinView" "true"
Option "TwinViewOrientation" "RightOf"
Option "SecondMonitorHorizSync" "29.0-130.0"
Option "SecondMonitorVertRefresh" "60"
Option "MetaModes" "1400x1050,1400x1050"
Option "ConnectedMonitor" "DFP,DFP"
# Option "NoTwinViewXineramaInfo" "true"
# Option "MultiGPU" "true"
Option "UseDisplayDevice" "DFP,DFP"
Identifier "Device0"
Driver "nvidia"
VendorName "nVidia Corporation"
BoardName "NV30GL [Quadro FX 1000]"
Option "UseInt10Module" "true"
Option "IgnoreDisplayDevices" "CRT, TV"
#Option "ProbeAllGpus" "true"
Screen 0
BusID "PCI:1:0:0"
Option "DPMS"
EndSection
Section "Device"
Identifier "Device1"
Driver "nvidia"
VendorName "nVidia Corporation"
Option "ConnectedMonitor" "DFP"
Option "UseDisplayDevice" "DFP"
Option "MetaModes" "1400x1050"
Option "IgnoreDisplayDevices" "CRT, TV"
Option "UseInt10Module" "true"
Option "ProbeAllGpus" "false"
BoardName "Nvidia GeForce FX 5200"
Screen 0
BusID "PCI:5:14:0"
Option "DPMS"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Virtual 2800 1050
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "Device1"
Monitor "Monitor2"
DefaultDepth 24
SubSection "Display"
Depth 24
Virtual 1400 1050
EndSubSection
EndSection
|