Configuración de monitores triples con un adaptador Display Link

Configuración de monitores triples con un adaptador Display Link

Mi primera pregunta, supongo, es "¿Es posible esta configuración?" Estoy ejecutando una Dell N7010 con Ubuntu 12.10 y tengo dos monitores externos. Uno de ellos está conectado con un cable VGA y funciona perfectamente. El otro está conectado con un adaptador DisplayLink y el monitor tiene una pantalla verde.

Aquí está el xorg.conf que hackeé juntos.

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

Cuando inicio, la pantalla de inicio aparece en todas las pantallas, pero cuando termina de iniciar, ninguna de las pantallas muestra nada, pero están encendidas. ¿Cuál es mi mejor curso de acción aquí?

información relacionada