My setup is as follows:
- Linux Mint 14 x64
- Intel Core i5-2500k
- GeForce GTX 560 Ti Cu II
- A monitor on the far left connected to the motherboard (integrated graphics on the i5)
- A central monitor connected to the graphics card
- A monitor on the far right connected to the graphics card
My current xorg.conf is this:
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 310.19 (buildmeister@swio-display-x86-rhel47-08.nvidia.com) Thu Nov 8 02:09:12 PST 2012
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
EndSection
Section "Files"
EndSection
Section "InputDevice"
# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Unknown"
ModelName "Unknown"
HorizSync 28.0 - 33.0
VertRefresh 43.0 - 72.0
Option "DPMS"
EndSection
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
EndSection
Which gives the following effects:
- The monitor on the far left works only when in terminal mode (ie, when you press ctrl-alt-f1)
- The central monitor works as expected
- The far right monitor works as expected
In an attempt to make the far left screen work, I wrote my own xorg.conf:
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "IntegratedGraphicsScreen0"
Screen 1 "GraphicsCardScreen0"
Screen 2 "GraphicsCardScreen1"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
EndSection
Section "Files"
EndSection
Section "InputDevice"
# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "Monitor"
Identifier "GraphicsCardMonitor0"
VendorName "Samsung"
ModelName "SyncMaster B2230"
HorizSync 28.0 - 33.0
VertRefresh 43.0 - 72.0
Option "DPMS"
EndSection
Section "Monitor"
Identifier "GraphicsCardMonitor1"
VendorName "ViewSonic"
ModelName "VG712s"
HorizSync 28.0 - 33.0
VertRefresh 43.0 - 72.0
Option "DPMS"
EndSection
Section "Monitor"
Identifier "IntegratedGraphicsMonitor0"
VendorName "Dell"
ModelName "156FPf"
EndSection
Section "Device"
Identifier "GraphicsCardDevice"
Driver "nvidia"
VendorName "NVIDIA Corporation"
EndSection
Section "Device"
Identifier "IntegratedGraphicsDevice"
Driver "i915"
EndSection
Section "Screen"
Identifier "GraphicsCardScreen0"
Device "GraphicsCardDevice"
Monitor "GraphicsCardMonitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "GraphicsCardScreen1"
Device "GraphicsCardDevice"
Monitor "GraphicsCardMonitor1"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "IntegratedGraphicsScreen0"
Device "IntegratedGraphicsDevice"
Monitor "IntegratedGraphicsMonitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
EndSection
Which gives these effects:
- The far left monitor still doesn't work
- The central monitor and far right monitor are a mirrored screen with a resolution of 640 * 480
Deleting xorg.conf gives these effects:
- The far left monitor still doesn't work
- The central monitor and far right monitor are a mirrored screen with a resolution of 1024 * 768
Obviously this is not what I intended - but then again I have never written my own xorg.conf before so I didn't expect it to. How can I get 3 individual screens? Any help is appreciated!
/usr/bin/nvidia-settingsfor X server configuration? – djhurio Nov 25 '12 at 19:33GeForce GTX 560 Ti Cu IIis nVidia card, isn't it? – djhurio Mar 3 at 6:33