Ubuntu 12.10 monitores triplos… tão perto!

1

Estou tentando configurar três monitores usando uma ATI Radeon HD 5450 e uma NVidia 9600 GSO. Eu sei que misturar os fabricantes não é desejável, mas essas eram as cartas que eu tinha em volta. Depois de alguns dias de ajustes, finalmente consegui que os três monitores pelo menos ligassem ao mesmo tempo. Estou usando os drivers gratuitos 'radeon' e 'nouveau'. Eu acho que estou muito perto de fazer meu desktop funcionar, mas não consigo fazer tudo certo. De preferência, todos os três monitores terão um lançador e eu poderei mover as janelas entre eles. Eu não ficarei chateado se isso não for possível, mas eu só quero todos os 3 e trabalhando. Com a minha configuração atual, o meu monitor esquerdo, alimentado pela placa ATI, está rodando X muito bem. O monitor do meio e do lado direito tem telas pretas. Eu posso mover meu mouse para o monitor do meio e movê-lo pela tela preta. O monitor direito está espelhando tudo no monitor do meio.

Aqui está o meu xorg.conf:

Section "ServerLayout"
Identifier     "My X Server"
Screen          "LeftScreen" 0 0    
    Screen          "CenterScreen" RightOf "LeftScreen"
    Screen          "RightScreen" RightOf "CenterScreen"    
EndSection

Section "ServerFlags"
  Option        "Xinerama" "1"
EndSection

Section "Module"
Load  "dbe"
Load  "extmod"
Load  "record"
Load  "glx"
Load    "dri"
EndSection

Section "Monitor"
Identifier   "LeftMonitor"
    Option         "DPMS"
EndSection

Section "Monitor"
Identifier   "CenterMonitor"
    Option         "DPMS"
EndSection

Section "Monitor"
Identifier   "RightMonitor"
    Option         "DPMS"
EndSection

Section "Device"
Identifier  "ATIL"
Driver      "radeon"
#Option     "ZaphodHeads" "DVI-0"
BusID       "PCI:02:0:0"
EndSection

Section "Device"
Identifier  "NVIDIAM"
Driver      "nouveau"
#Option     "ZaphodHeads" "DVI-0"
BusID       "PCI:01:0:0"
EndSection

Section "Device"
Identifier  "NVIDIAR"
Driver      "nouveau"
#Option     "ZaphodHeads" "DVI-1"
BusID       "PCI:01:0:0"
EndSection

Section "Screen"
Identifier "LeftScreen"
Device     "ATIL"
Monitor    "LeftMonitor"
EndSection

Section "Screen"
Identifier "CenterScreen"
Device     "NVIDIAM"
Monitor    "CenterMonitor"
EndSection

Section "Screen"
Identifier "RightScreen"
Device     "NVIDIAR"
Monitor    "RightMonitor"
EndSection

Alguém conseguiu realizar 3 monitores com nvidia e ati juntos?

    
por parker.sikand 17.11.2012 / 21:39

1 resposta

2

Eu poderia fazer isso. Eu tenho uma placa ATI onboard (HD 3200) e uma placa Nvidia PCI-E (8600GT). Eu saída dois monitores da placa Nvidia (DVI- > VGA) e um a bordo.

O desempenho não é tão bom. Às vezes eu tive falhas quando (acidentalmente) movendo vídeos de uma das telas da Nvidia para a ATI. Além disso, o glxgears não produz nada no monitor da ATI. Mas para o material básico padrão de desktop, ele funciona muito bem.

Aqui está o meu arquivo xorg.conf, espero que seja útil para você.

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 1360 0
    Screen      1  "Screen2" LeftOf "Screen0"
    Screen      2  "Screen1" RightOf "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "1"
EndSection

Section "Module"
    Load           "glx"
EndSection

Section "InputDevice"
    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      "Samsung SyncMaster"
    HorizSync       30.0 - 61.0
    VertRefresh     56.0 - 75.0
    Option         "DPMS"
EndSection

Section "Monitor"
    Identifier     "Monitor1"
    VendorName     "Unknown"
    ModelName      "Philips"
    HorizSync       14.0 - 70.0
    VertRefresh     56.0 - 85.0
    Option         "DPMS"
    # HorizSync source: edid, VertRefresh source: edid
EndSection

Section "Monitor"
    Identifier     "Monitor2"
    VendorName     "Unknown"
    ModelName      "LG Flatron L177WS"
    HorizSync       31.5 - 50.0
    VertRefresh     40.0 - 90.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce 8600 GT"
    BusID          "PCI:02:00:00"
    Screen          0
EndSection

Section "Device"
    Identifier     "Device1"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce 8600 GT"
    BusID          "PCI:02:00:00"
    Screen          1
EndSection

Section "Device"
    Identifier     "Device2"
    Driver         "radeon"
    VendorName     "ATI"
    BoardName      "ATI Radeon HD3200"
    BusID          "PCI:01:05:00"
    Screen          0
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "0"
    Option         "metamodes" "CRT-1: 1360x768_60 +0+0; CRT-1: 1360x768 +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen1"
    Device         "Device1"
    Monitor        "Monitor1"
    DefaultDepth    24
    Option         "TwinView" "0"
    Option         "metamodes" "CRT-0: nvidia-auto-select +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen2"
    Device         "Device2"
    Monitor        "Monitor2"
    DefaultDepth    24
    SubSection     "Display"
        Modes       "1280x640"
        Depth       24
    EndSubSection
EndSection

Section "Extensions"
    Option         "Composite" "Disable"
EndSection
    
por matiaslaporte 26.11.2012 / 01:15