Настройка трех мониторов с помощью адаптера Display Link

Настройка трех мониторов с помощью адаптера Display Link

Мой первый вопрос, я полагаю, "Возможна ли вообще такая настройка?" Я использую Dell N7010 с Ubuntu 12.10 и у меня есть два внешних монитора. Один из них подключен с помощью кабеля VGA и работает отлично. Другой подключен с помощью адаптера DisplayLink, и на мониторе зеленый экран.

Вот xorg.conf, который я взломал

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

При загрузке на каждом экране появляется экран загрузки, но когда он завершает загрузку, ни на одном из экранов ничего не отображается, хотя они включены. Какой мой лучший курс действий здесь?

Связанный контент