Re: quad monitors (dual pci-x)
As promised, here is my working X configuration for 2x2 monitors. The only slightly non-ideal part is that when an application is maximized, it spreads across 2 whole monitors (instead of just one, which happened to be the case when I only had two monitors working).
Section "Monitor"
Identifier "monitor0"
HorizSync 31.5 - 82.0
VertRefresh 40-150
EndSection
Section "Monitor"
Identifier "monitor1"
HorizSync 31.5 - 82.0
VertRefresh 40-150
EndSection
Section "Device"
Identifier "nvidia0"
Driver "nvidia"
Option "DPMS"
VendorName "nVidia Corporation"
BoardName "Quadro FX 1400"
BusID "PCI:2:0:0"
# Screen 0
Option "RenderAccel"
Option "HWcursor"
Option "CursorShadow"
Option "CursorShadowAlpha" "32"
Option "CursorShadowXOffset" "3"
Option "CursorShadowYOffset" "3"
Option "AllowGLXWithComposite"
Option "TwinView" "yes"
Option "ConnectedMonitor" "dfp,dfp"
EndSection
Section "Device"
Identifier "nvidia1"
Driver "nvidia"
Option "DPMS"
VendorName "nVidia Corporation"
BoardName "Quadro FX 1400"
BusID "PCI:129:0:0"
#Screen 1
Option "RenderAccel"
Option "HWcursor"
Option "CursorShadow"
Option "CursorShadowAlpha" "32"
Option "CursorShadowXOffset" "3"
Option "CursorShadowYOffset" "3"
Option "AllowGLXWithComposite"
Option "TwinView" "yes"
Option "ConnectedMonitor" "dfp,dfp"
EndSection
Section "Screen"
Identifier "screen0"
Device "nvidia0"
Monitor "monitor0"
DefaultDepth 24
Option "MetaModes" "1600x1200,1600x1200; 1280x1024,1280x1024; 1024x768,1024x768; 800x600,800x600"
Option "TwinViewOrientation" "LeftOf"
Option "SecondMonitorHorizSync" "31.5 - 82.0"
Option "SecondMonitorVertRefresh" "40-150"
EndSection
# ----
Section "Screen"
Identifier "screen1"
Device "nvidia1"
Monitor "monitor1"
DefaultDepth 24
Option "MetaModes" "1600x1200,1600x1200; 1280x1024,1280x1024; 1024x768,1024x768; 800x600,800x600"
Option "TwinViewOrientation" "RightOf"
Option "SecondMonitorHorizSync" "31.5 - 82.0"
Option "SecondMonitorVertRefresh" "40-150"
EndSection
Section "ServerLayout"
Option "Xinerama" "on"
Identifier "Simple Layout"
Screen 0 "screen0" 0 0
Screen 1 "screen1" Above "screen0"
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection
The SIGINT error that I was getting was from having two "UseInt10Module" options set. Should have looked more closely at the log files - I didn't think one was really being generated earlier. My bad!
|