Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 24/09/2006, à 20:56

kikine40

[Résolu] - xorg.conf ne trouve pas ma carte graphique

Je viens d'installer dapper sur un DELL inspiron640m. Tout fonctionne bien sauf la résolution bloquée à 1024x768 alors que la carte intel 945GM permet 1440x900. J'ai installé le paquet 915resolution, suivi le tuto, et quand je vais dans /etc/X11/xorg.conf j'ai:

Section "Device"
    Identifier    "Intel Corporation Mobile Integrated Graphics Controller"
    Driver        "vesa"
    BusID        "PCI:0:2:0"
EndSection

Section "Monitor"
    Identifier    "Generic Monitor"
    Option        "DPMS"
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Device        "Intel Corporation Mobile Integrated Graphics Controller"
    Monitor        "Generic Monitor"
    DefaultDepth    24
    SubSection "Display"
        Depth        1
        Modes        "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        4
        Modes        "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        8
        Modes        "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        15
        Modes        "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        16
        Modes        "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        24
        Modes        "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

... il n'y a pas le modèle de la carte (945GM), ni le driver (i810), et je passe sur la résolution et la mémoire allouée...
Je tourne en rond, please help!

#2 Le 25/09/2006, à 09:00

michel2652

Re : [Résolu] - xorg.conf ne trouve pas ma carte graphique

Bonjour,

Vu ton post tu n'as pas suivi ce tuto : http://doc.ubuntu-fr.org/materiel/intel … ntel_i915g.

Reprend la manip (avec 915 resolution des dépots Dapper) et ça doit marcher.

A+

#3 Le 25/09/2006, à 11:43

kikine

Re : [Résolu] - xorg.conf ne trouve pas ma carte graphique

Si, j'ai bien suivi ce tuto, et 915resolution est bien paramétré et installé. Mon problème vient ensuite: je ne retrouve pas ma carte graphique, ni le pilote dans le fichier xorg.conf. Faut-il que je les saisisse moi-même ou ils devraient s'y retrouver automatiquement?


"Et bien moi je le ferai !" (Enèlogés Layor)

Hors ligne

#4 Le 25/09/2006, à 18:07

DonneDuRhum

Re : [Résolu] - xorg.conf ne trouve pas ma carte graphique

Dans la section "device" de ton fichier xorg, ton driver est vesa, j'y connais rien en driver graphique intel, mais je me demande si un driver commençant par "i"quelquechose (genre i810 comme sur la doc) ne serait pas mieux.
Déja, c'est peut-etre une piste...

Je viens de voir autre chose aussi, tu dits que ton chipset graphique supporte le "1440x900", alors dans la section screen, tu doits le rajouter.

ainsi :

Section "Screen"
    Identifier    "Default Screen"
    Device        "Intel Corporation Mobile Integrated Graphics Controller"
    Monitor        "Generic Monitor"
    DefaultDepth    24
    SubSection "Display"
        Depth        1
        Modes        "1024x768" "800x600" "640x480"
    EndSubSection

Devient :

Section "Screen"
    Identifier    "Default Screen"
    Device        "Intel Corporation Mobile Integrated Graphics Controller"
    Monitor        "Generic Monitor"
    DefaultDepth    24
    SubSection "Display"
        Depth        1
        Modes       "1440x900" "1024x768" "800x600" "640x480"
    EndSubSection

A faire à chaque sous section, de plus DefaultDepth, je penses que tu peux le mettre à 16, ca ne devrait pas changer grand chose en terme de qualité d'image.

Dernière modification par DonneDuRhum (Le 25/09/2006, à 18:20)


PC  msi gt72vr 6re

Hors ligne

#5 Le 25/09/2006, à 18:19

michel2652

Re : [Résolu] - xorg.conf ne trouve pas ma carte graphique

Ton xorg.conf :

Section "Device"
    Identifier    "Intel Corporation Mobile Integrated Graphics Controller"
    Driver        "vesa"
    BusID        "PCI:0:2:0"
EndSection

Section "Monitor"
    Identifier    "Generic Monitor"
    Option        "DPMS"
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Device        "Intel Corporation Mobile Integrated Graphics Controller"
    Monitor        "Generic Monitor"
    DefaultDepth    24
    SubSection "Display"
        Depth        1
        Modes        "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        4
        Modes        "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        8
        Modes        "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        15
        Modes        "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        16
        Modes        "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        24
        Modes        "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Alors quen suivant http://doc.ubuntu-fr.org/materiel/intel … _xorg.conf tu devrais avoir à peu près

Section "Device"
        Identifier      "Intel 915GM"
        Driver          "i810"
        BusID           "PCI:0:2:0"
        VideoRam        65536
#       Option          "ForceBIOS"   "1920x1440=1440x900"   # Sera utile avec la prochaine version du driver, uniquement
EndSection

Section "Monitor"
        Identifier      "Generic Monitor"
        HorizSync       28-72
        VertRefresh     59.0 - 75.0
        Option          "DPMS"
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "Intel 915GM"
        Monitor         "Generic Monitor"
        DefaultDepth    24
        SubSection "Display"
                Depth           24
                Modes           "1440x900" "1400x1050" "1280x1024" "1024x768"
        EndSubSection
EndSection

[...]

Section "DRI"
        Mode    0666
EndSection
[...]

A+

#6 Le 25/09/2006, à 18:23

DonneDuRhum

Re : [Résolu] - xorg.conf ne trouve pas ma carte graphique

ha, on c'est croisé Michel


PC  msi gt72vr 6re

Hors ligne

#7 Le 25/09/2006, à 20:18

kikine40

Re : [Résolu] - xorg.conf ne trouve pas ma carte graphique

Problème résolu en refaisant une détection de la carte graphique qui ne s'était pas faite après l'install.
Le driver est i810, la résolution est impec en 1440x900 après l'installation de 915resolution.
Merci à tous!
durs, durs les débuts...