Minha primeira pergunta, suponho, é "Essa configuração é possível?" Estou executando um Dell N7010 com Ubuntu 12.10 e tenho dois monitores externos. Um deles está conectado com um cabo VGA e funcionando perfeitamente. O outro está conectado com um adaptador DisplayLink e o monitor possui tela verde.
Aqui está o xorg.conf que eu hackeei 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
Quando eu inicializo, a tela de inicialização aparece em todas as telas, mas quando termina a inicialização, nenhuma das telas exibe nada, mas elas estão ligadas. Qual é o meu melhor curso de ação aqui?