Outils personnels
Vous êtes ici : Accueil Blog Dual Screen sur un portable DELL M20 avec une ATI FireGL
Navigation
 
Actions sur le document

Dual Screen sur un portable DELL M20 avec une ATI FireGL

Filed Under:
Dual Screen sur un portable DELL M20 avec une ATI FireGL V3100

Il s'agit donc de trifouiller le xorg.conf situé dans /etc/X11/xorg.conf. Il est organisé en Section qui se terminent toutes par EndSection pour être parsés par le serveur graphique lorsqu'il est lancé.

On doit donc avoir en premier lieu dans la Section "ServerLayout" les lignes suivantes :

 
Section "ServerLayout"
        Identifier     "single head configuration"
        Screen      0  "aticonfig-Screen[0]" 0 0
        Screen         "aticonfig-Screen[1]" LeftOf "aticonfig-Screen[0]"
        InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "Synaptics" "CorePointer"
        InputDevice    "Mouse0" "AlwaysCore"
       # Xinerama est commenté de façon à avoir l'accélération graphique 3D
        #Option        "Xinerama" "on"
        Option         "Clone" "off"
EndSection
 

Le serveur sait donc qu'il a deux écran (et non moniteur), le deuxième étant à gauche du premier.

Section "Monitor"
        Identifier   "aticonfig-Monitor[0]"
        Option      "VendorName" "ATI Proprietary Driver"
        Option      "ModelName" "Generic Autodetecting Monitor"
        Option      "DPMS" "true"
EndSection

Une deuxième Section "Monitor" pour indiquer quel est le deuxième moniteur :

Section "Monitor"
        Identifier   "aticonfig-Monitor[1]"
        Option      "VendorName" "ATI Proprietary Driver"
        Option      "ModelName" "Generic Autodetecting Monitor"
        Option      "DPMS" "true"
EndSection

Deux Section "Device" :

Section "Device"
        Identifier  "aticonfig-Device[0]"
        Driver      "fglrx"
        BusID       "PCI:1:0:0"
EndSection

Section "Device"
        Identifier  "aticonfig-Device[1]"
        Driver      "fglrx"
        BusID       "PCI:1:0:0"
        Screen      1
EndSection

Et pour finir :

Section "Screen"
        Identifier "aticonfig-Screen[0]"
        Device     "aticonfig-Device[0]"
        Monitor    "aticonfig-Monitor[0]"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

Section "Screen"
        Identifier "aticonfig-Screen[1]"
        Device     "aticonfig-Device[1]"
        Monitor    "aticonfig-Monitor[1]"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

Section "DRI"
        Group        0
        Mode         0666
EndSection