Einrichten von drei Monitoren mit einem Display Link Adapter

Einrichten von drei Monitoren mit einem Display Link Adapter

Meine erste Frage ist wohl: „Ist diese Konfiguration überhaupt möglich?“ Ich verwende einen Dell N7010 mit Ubuntu 12.10 und habe zwei externe Monitore. Einer davon ist mit einem VGA-Kabel verbunden und funktioniert einwandfrei. Der andere ist mit einem DisplayLink-Adapter verbunden und der Monitor hat einen grünen Bildschirm.

Hier ist die xorg.conf, die ich zusammengehackt habe

Section "ServerLayout"   
    Identifier      "threescreens"
    Screen          "VGA" 0 0
    Screen          "Laptop" RightOf "Laptop"
    Screen          "DisplayLink" LeftOf "Laptop" 0 0
    InputDevice     "keyboard" "CoreKeyboard"
    InputDevice     "mouse" "CorePointer"
EndSection

Section "Device"
   Identifier      "DisplayLinkDevice"
   Driver          "fbdev"
   BusID           "Video Bus"               # needed to use multiple DisplayLink devices 
   Option          "fbdev" "/dev/fb0"  # change to whatever device you want to use
  Option          "rotate" "CCW"      # uncomment for rotation
EndSection

Section "Monitor"
Identifier  "DisplayLink"
Device      "DisplayLinkDevice"
HorizSync   31-101
    VertRefresh 60-160
EndSection

Section "Screen"
    Identifier      "DisplayLink"
    Device          "Intel Corporation Core Processor Integrated Graphics Controller"
    DefaultDepth    24
    SubSection "Display"
        Depth           24
        Virtual         1680x1050
   EndSubSection
EndSection

Section "Monitor"
Identifier  "Laptop"
Device      "Intel Corporation Core Processor Integrated Graphics Controller"
HorizSync   31-101
    VertRefresh 60-160
EndSection

Section "Screen"
    Identifier      "Laptop"
    Device          "Intel Corporation Core Processor Integrated Graphics Controller"
    DefaultDepth    24
    SubSection "Display"
        Depth           24
        Virtual         1680x1050
    EndSubSection
EndSection

Section "Monitor"
Identifier  "VGA"
Device      "Intel Corporation Core Processor Integrated Graphics Controller"
HorizSync   31-101
    VertRefresh 60-160
EndSection

Section "Screen"
    Identifier      "VGA"
    Device          "Intel Corporation Core Processor Integrated Graphics Controller"
    DefaultDepth    24
    SubSection "Display"
        Depth           24
        Virtual         1680x1050
    EndSubSection
EndSection

Beim Booten wird der Boot-Bildschirm auf jedem Bildschirm angezeigt, aber wenn der Bootvorgang abgeschlossen ist, wird auf keinem der Bildschirme etwas angezeigt, aber sie sind eingeschaltet. Was ist hier meine beste Vorgehensweise?

verwandte Informationen