LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Desktop (https://www.linuxquestions.org/questions/linux-desktop-74/)
-   -   how to configure xorg.conf for 3 monitors (https://www.linuxquestions.org/questions/linux-desktop-74/how-to-configure-xorg-conf-for-3-monitors-695703/)

masuter 01-07-2009 06:12 PM

how to configure xorg.conf for 3 monitors
 
I recently installed a Dell machine with dual nVidia video cards.
I ran system-config-display to configure xorg.conf and it has worked
fine for 2 of the 3 monitors. I didn't see anything in
system-config-display that would enable me to configure xorg.conf for
3 monitors. Did I miss something?? Is there a way to modify xorg.conf
to have 3 monitors??

Thanks in advance,
-Mark

lurko 01-08-2009 12:04 PM

you need a Device, Monitor, and Screen section in your xorg.conf for each monitor. Then you need to put all 3 Screens in your ServerLayout section.

Code:

Section "ServerLayout" 
        Identifier      "threescreens"
        Screen          "screen1" 0 0
        Screen          "screen2" RightOf "screen1"
        Screen          "screen3" RightOf "screen2" 0 0
        InputDevice    "keyboard" "CoreKeyboard"
        InputDevice    "mouse" "CorePointer"
EndSection

The Device sections need BusID lines to specify the video card they refer to. You may need to use the Nvidia blob's options "ConnectedMonitor" or "UseDisplayDevice" for the card with 2 monitors, but you'll have to read up on that yourself (Nvidia's README docs cover allsorts). The README also has more info on multi-monitor setups.


All times are GMT -5. The time now is 11:58 PM.