PDA

View Full Version : [ubuntu] Tripple monitor settings



Lampshader
February 7th, 2011, 11:44 PM
Hi guys,
Iv'e just gotten rid of windows on my main pc and now running ubuntu on all 4 pc's. My problem is that i am using 3 monitors on 2 different graphics cards. a GTX280 and 8800gt. What is happening is that i can get 2 monitors to go twin view but the second on the other card wont. I have tried having all different X screens and i cannot move the monitors into the right positions. Instead of having the screens going
1 2 3
they go
3 2 1

I cannot get them to rearrange and make monitor 2 the main monitor i have tried all the settings i can in nvidia's X server. any help to even point me in the right direction would be great.

lightstream
February 8th, 2011, 12:50 AM
i'd like to know if anyone has got the nvidia app to let them re-order the screens - mine won't either.

also the 'Save to X Config File' button doesn't work.

Krytarik
February 8th, 2011, 01:34 AM
Did you already try to set them up with xorg.conf?
https://wiki.archlinux.org/index.php/Xorg#Multiple_monitors.2FDual_screen

Lampshader
February 14th, 2011, 12:48 AM
Did you already try to set them up with xorg.conf?
https://wiki.archlinux.org/index.php/Xorg#Multiple_monitors.2FDual_screen

Ok i managed to get all screens working in the right positions now. the only problem i have is that all screens are separate X screens with the main screen with the pannels on the right. is there anyway to change this in separate X screens. it's not the end of the world as the positions are right but it would be nice if the main monitor was the middle one.
the xconfig is below if it helps

# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings: version 260.19.06 (buildd@yellow) Mon Oct 4 15:59:51 UTC 2010

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 260.19.06 (buildmeister@builder101) Mon Sep 13 04:59:45 PDT 2010

Section "ServerLayout"

# Removed Option "Xinerama" "0"
Identifier "Layout0"
Screen 0 "Screen0" 3840 0
Screen 1 "Screen1" 0 0
Screen 2 "Screen2" 1920 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
Option "Xinerama" "1"
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 "Hitachi/HINT W240D DVI"
HorizSync 30.0 - 83.0
VertRefresh 59.0 - 76.0
Option "DPMS"
EndSection

Section "Monitor"
Identifier "Monitor1"
VendorName "Unknown"
ModelName "NUL MB24W"
HorizSync 30.0 - 75.0
VertRefresh 50.0 - 61.0
EndSection

Section "Monitor"
Identifier "Monitor2"
VendorName "Unknown"
ModelName "Acer GD245HQ"
HorizSync 30.0 - 140.0
VertRefresh 56.0 - 120.0
EndSection

Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "GeForce 8800 GT"
BusID "PCI:3:0:0"
Screen 0
EndSection

Krytarik
February 14th, 2011, 01:51 AM
Your xorg.conf is a bit out of control. LOL :D
3 "Monitor" sections, 1 "Device" section and zero "Screen" sections!
You should have 3 of each, then you would also have panels on each of them.
I post you the dual screen config of my mom, with an ATI card.

Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
Screen 1 "Screen1" 1152 0
EndSection

Section "Monitor"
#DisplaySize 310 230 # mm
Identifier "Monitor0"
VendorName "SAM"
ModelName "SyncMaster"
Modeline "1152x864_85.00" 119.75 1152 1232 1352 1552 864 867 871 910 -hsync +vsync
Option "PreferredMode" "1152x864_85.00"
HorizSync 30.0 - 85.0
VertRefresh 50.0 - 160.0
Option "DPMS"
EndSection

Section "Monitor"
#DisplaySize 310 230 # mm
Identifier "Monitor1"
VendorName "LG"
ModelName "LG M2380D"
Modeline "1280x720_60.00" 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync
Modeline "1920x1080_50.00" 141.50 1920 2032 2232 2544 1080 1083 1088 1114 -hsync +vsync
Option "PreferredMode" "1920x1080_50.00"
HorizSync 30.0 - 83.0
VertRefresh 56.0 - 75.0
Option "DPMS"
EndSection

Section "Device"
Identifier "Card0"
Driver "radeon"
VendorName "ATI Technologies Inc"
BoardName "RV350 AR [Radeon 9600]"
BusID "PCI:1:0:0"
Screen 0
EndSection

Section "Device"
Identifier "Card1"
Driver "radeon"
VendorName "ATI Technologies Inc"
BoardName "RV350 AR [Radeon 9600]"
BusID "PCI:1:0:0"
Screen 1
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1152x864" "1024x768"
EndSubSection
EndSection

Section "Screen"
Identifier "Screen1"
Device "Card1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1920x1080" "1280x720"
EndSubSection
EndSection