Salut,
je cherche à configurer la sortie VGA de mon laptop pour avoir un double affichage. La résolution de mon laptop est 1280x768 sur une carte graphique Intel Graphics 855GM, je veux que la sortie VGA soit en 1024x768. Pour le moment (sans rien toucher au xorg.conf) lorsque je switche avec FnF4 les affichages, j'ai ceci : - 1er switch : écran laptop éteint, sortie VGA : affichage en 1024x768 du bureau 1280x768 "tassé" (déformation horizontale pas très agréable) - 2eme switch : écran laptop allumé affichage normal, sortie VGA : affichage buggué d'un 1280x768 à moitié "rebouclé"...

Donc je voudrais forcer l'affichage de la sortie VGA en 1024x768.
Je me suis inspiré d'exemples trouvés sur le net pour écrire le fichier xorg.conf suivant, malheureusement il ne marche pas et me renvoie une erreur dès le démarrage.
Quelqu'un voit ce qui ne va pas ?
merci d'avance,
tonyo


la partie "graphique" de /etc/X11/xorg.conf :

Section "Device"
        Identifier      "Intel Corporation 82852/855GM Integrated Graphics 
Device"
        Driver          "i810"
        BusID           "PCI:0:2:0"
        screen          0
EndSection
###################2eme device########################
Section "Device"
Identifier "Intel Corporation 82852/855GM Integrated Graphics Device SortieVGA"
        Driver          "i810"
        BusID           "PCI:0:2:0"
        screen          1
EndSection
####################

Section "Monitor"
        Identifier      "Monitor genérico"
        Option          "DPMS"
EndSection
###################2eme monitor########################
Section "Monitor"
        Identifier    "Monitor VGA"
        Option        "DPMS"
EndSection
###################

Section "Screen"
        Identifier      "Default Screen"
        Device          "Intel Corporation 82852/855GM Integrated Graphics 
Device"
        Monitor         "Monitor genérico"
        DefaultDepth    24
        SubSection "Display"
                Depth           1
                Modes           "1280x768"
        EndSubSection
        SubSection "Display"
                Depth           4
                Modes           "1280x768"
        EndSubSection
        SubSection "Display"
                Depth           8
                Modes           "1280x768"
        EndSubSection
        SubSection "Display"
                Depth           15
                Modes           "1280x768"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "1280x768"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1280x768"
        EndSubSection
EndSection
###################2eme screen########################
Section "Screen"
        Identifier    "Default Screen VGA"
Device "Intel Corporation 82852/855GM Integrated Graphics Device SortieVGA"
        Monitor         "Monitor VGA"
        DefaultDepth    24
        SubSection "Display"
                Depth           24
                Modes           "1024x768"
        EndSubSection
EndSection
###################

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          "Default Screen"
        Screen          "Default Screen VGA" Below "Default Screen"
        InputDevice     "Generic Keyboard"
        InputDevice     "Configured Mouse"
        InputDevice     "Synaptics Touchpad"
EndSection

Section "DRI"
        Mode    0666
EndSection


--
ubuntu-fr mailing list
ubuntu-fr@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-fr

Répondre à