Le post est un peu vieux mais j'ai aussi cherché longtemps à faire du bi ecran et trouvé !
Je voudrais donc faire part à tous le monde qui peut encore buter sur le pb dual screen + chipset intel.
Il faut avoir un xorg.conf comme ci dessous et utiliser 915resolution pour donner une liste de resolution au chipset.
le xorg :
# Big help from http://www.clubic.com/forum/os-alternatifs/linux/solution-inspiron-6400-en-1280x800-sous-linux-comment-faire-id220338-page1.html
Section "ServerLayout"
Identifier "Simple Layout"
Screen 0 "Screen 1"
# Screen 1 "Screen 2" Above "Screen 1"
Screen 1 "Screen 2" LeftOf "Screen 1"
InputDevice "Synaptics"
InputDevice "Keyboard0"
Option "Xinerama" "true"
Option "AIGLX" "true"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "fr"
Option "XkbVariant" "latin9"
EndSection
Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "Emulate3Buttons" "yes"
EndSection
Section "Device"
Identifier "Intel GMA 950"
Driver "i810"
BusID "PCI:0:2:0"
Option "MonitorLayout" "CRT,LFP"
Option "DDCMode" "True" #This value shouldn't matter!
Screen 0
EndSection
Section "Device"
Identifier "Intel GMA 950 2"
Driver "i810"
BusID "PCI:0:2:0" # 0:2:0 !!! Not 0:2:1 !!!
Option "DDCMode" "True" #This value shouldn't matter!
Screen 1
EndSection
Section "Screen"
Identifier "Screen 1"
Device "Intel GMA 950"
Monitor "NEC Versa"
DefaultDepth 24
Subsection "Display"
Depth 24
Modes "1280x800"
ViewPort 0 0
EndSubsection
EndSection
Section "Screen"
Identifier "Screen 2"
Device "Intel GMA 950 2"
Monitor "Eizo S1910"
DefaultDepth 24
Subsection "Display"
Depth 24
Modes "1280x1024"
ViewPort 0 0
EndSubsection
EndSection
Section "Monitor"
Identifier "NEC Versa"
# gtf 1280 800 60
Modeline "1280x800_60.00" 83.46 1280 1344 1480 1680 800 801 804 828 -HSync +Vsync
# HorizSync 31.5 - 48.5
# VertRefresh 50-70
EndSection
Section "Monitor"
Identifier "Eizo S1910"
# HorizSync 31.5 - 48.5
# VertRefresh 50-70
EndSection
Ensuite faire un script de demarrage ou autre avant de lancer X avec le parametre qui va bien pour votre resolution (en fait le chipset ne retourne pas les bonnes valeurs de base d'ou utilisation de 915resolution).
Voir le lien en commentaire du xorg pour + de détails.