LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   Dual LCD's? (https://www.linuxquestions.org/questions/linux-hardware-18/dual-lcds-439833/)

carlosinfl 04-28-2006 07:27 PM

Dual LCD's?
 
Can anyone tell me how I can set up dual LCD's on Linux? I am using Gnome and have Nvidia drivers inatalled.

http://img299.imageshack.us/img299/8457/nvidia5iw.png

Both LCD's are identical & and am wondering if both can be connected to a AGP card that has dual output? The card has DVI and Analog connections and both LCD's support both.

Anyone know how I would go about hooking this up?

Brian1 04-28-2006 08:26 PM

Doesn't look like it is a dual head card. Just able to connect to different types of monitors. If both ports are used then it will only display the same on both.

Brian1

carlosinfl 04-29-2006 01:24 PM

So I will need to use like another PCI card or will that even work?

Brian1 04-29-2006 02:09 PM

Yes adding a pci video card will due. Or use a duel head video card.

Brian1

ioerror 04-29-2006 04:50 PM

If the card has dual outputs and dual-head capability (every Ti4600 I've seen does), then you can connect two monitors. Basically you just need another monitor section, another device section (one with "Screen 0", one with "Screen 1"), and add another line to the server layout. This should all be documented in the Nvidia README.

BrianHenderson 04-29-2006 06:03 PM

Here is what looks to be the relevant parts of my xorg.conf that I'm running my GF4 Ti 4600 with dual monitors. I'm running two CRTs at 1024x768 each by default. The desktop is a 2048x768 desktop spread over two monitors. When I play a game at 1024x768 or lower, with previous nvidia drivers, the left monitor would turn off, with the game on the right monitor, but with the newer drivers, both monitors display the same image. You might also just try using the nvidia config generator that comes with the drivers on their webpage.

Code:

Section "Monitor"
    Identifier    "Generic Monitor"
    HorizSync      31.5 - 82.0
    VertRefresh    50.0 - 75.0
    Option        "DPMS"
EndSection

Section "Device"
    Identifier    "NVIDIA Corporation NV25 [GeForce4 Ti 4600]"
    Driver        "nvidia"
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Device        "NVIDIA Corporation NV25 [GeForce4 Ti 4600]"
    Monitor        "Generic Monitor"
    DefaultDepth    24
    Option        "TwinView"
    Option        "MetaModes" "1024x768, 1024x768; 800x600, 800x600; NULL, 1024x768; NULL, 800x600; NULL, 640x480"
    Option        "SecondMonitorHorizSync" "31-70"
    Option        "SecondMonitorVertRefresh" "50-75"
    SubSection    "Display"
        Depth      1
        Modes      "2048x768" "1600x600"
    EndSubSection
    SubSection    "Display"
        Depth      4
        Modes      "2048x768" "1600x600"
    EndSubSection
    SubSection    "Display"
        Depth      8
        Modes      "2048x768" "1600x600"
    EndSubSection
    SubSection    "Display"
        Depth      15
        Modes      "2048x768" "1600x600"
    EndSubSection
    SubSection    "Display"
        Depth      16
        Modes      "2048x768" "1600x600"
    EndSubSection
    SubSection    "Display"
        Depth      24
        Modes      "2048x768" "1600x600" "1024x768"
    EndSubSection
EndSection



All times are GMT -5. The time now is 03:30 AM.