News | About | Get Frugalware | Packages | Documentation | Discussion Forums | Bug Tracker | Wiki | Community | Development

Intel Graphics (Français)

From FrugalWiki

Jump to: navigation, search


Contents

Pilote graphique Intel

Intel.png

Les cartes graphiques Intel bénéficient d'un pilote officiel opensource.. Nul besoin ici d'installer un driver propriétaire.. En revanche, il va falloir éditer & manipuler le fichier xorg.conf afin que le serveur graphique X.org utilise le pilote intel (et non plus “vesa”). Par la suite, X.org exploitera mieux les ressources matérielles de votre carte ; ce qui se traduit en général par une résolution optimale de votre écran, l'accélération de l'affichage ou des effets de bureaux insolites (3D par exemple). Installation du pilote graphique Intel (en root)


Installez le pilote

Root terminal 48px.png
# pacman-g2 -S xf86-video-intel


Installez un éditeur en ligne de commande (tel que Nano ou Vim) qui permettra l'édition du fichier xorg.conf en l'absence d'interface graphique :

Root terminal 48px.png
# pacman-g2 -S nano


Manipulation du fichier « xorg.conf » (en root)

Sauvegardez le fichier

Avant toute modification hasardeuse, veillez à sauvegarder le fichier :

Root terminal 48px.png
# cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bak


Editez le fichier

Root terminal 48px.png
# nano /etc/X11/xorg.conf


Dans le section « Device », remplacez la ligne :

 Driver "vesa" ou "i810" par "intel"

Redémarrez Xorg (simple utilisateur)

"Ctrl + Alt + backspace"

ou Si vous êtes en mode console :

User terminal 48px.png
$ startx

ou rebootez votre PC :

"Ctrl + Alt + Suppr"

Restaurez le fichier en cas d'échec

Oh, le bel écran noir ou multicolor ! Je préferre encore l'ancienne résolution, donc je restaure :

Root terminal 48px.png
# cp /etc/X11/xorg.conf.bak /etc/X11/xorg.conf


Consultez les informations relatives à Xorg

User terminal 48px.png
$ nano /var/log/Xorg.0.log

Vérifiez l'accélération graphique

Cette commande permet de vérifier si le serveur graphique X.org utilise les ressources matérielles :

User terminal 48px.png
$ glxinfo

La valeur correspondant à direct rendering est yes (ou no) si l'accélération est (ou n'est pas) activée.. Mesurez le gain de l'accélération graphique

(avant et après une modification)

User terminal 48px.png
$ glxgears
ou
User terminal 48px.png
$ glxgears -info

Déterminez le chipset de la carte graphique (en root)

Root terminal 48px.png
# lspci


Un exemple de fichier « xorg.conf » Intel

Attention, ce fichier est présenté à titre d'exemple, ne modifiez pas le vôtre en fonction de celui-ci, inspirez-vous en !


 Section "ServerLayout"
 Identifier     "X.org Configured"
 Screen      0  "Screen0" 0 0
 InputDevice    "Mouse0" "CorePointer"
 InputDevice    "Keyboard0" "CoreKeyboard"
 EndSection
 
 Section "Files"
 RgbPath      "/usr/share/X11/rgb"
 ModulePath   "/usr/lib/xorg/modules"
 FontPath     "/usr/share/fonts/TTF"
 FontPath     "/usr/share/fonts/OTF"
 FontPath     "/usr/share/fonts/Type1"
 FontPath     "/usr/share/fonts/misc"
 FontPath     "/usr/share/fonts/75dpi/:unscaled"
 EndSection
 
 Section "Module"
 Load  "GLcore"
 Load  "dbe"
 Load  "dri"
 Load  "extmod"
 Load  "glx"
 Load  "record"
 Load  "xtrap"
 Load  "freetype"
 Load  "type1"
 EndSection
 
 Section "InputDevice"
 Identifier  "Keyboard0"
 Driver      "kbd"
 EndSection
 
 Section "InputDevice"
 Identifier  "Mouse0"
 Driver      "mouse"
 Option	    "Protocol" "auto"
 Option	    "Device" "/dev/input/mice"
 Option	    "ZAxisMapping" "4 5 6 7"
 EndSection
 
 Section "Monitor"
 Identifier   "Monitor0"
 VendorName   "DEL"
 ModelName    "DELL  E771p"
 HorizSync    30.0 - 70.0
 VertRefresh  50.0 - 160.0
 Option	    "DPMS"
 EndSection
 
 Section "Device"
 Identifier  "Card0"
 Driver      "intel"
 VendorName  "Intel Corporation"
 BoardName   "82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
 BusID       "PCI:0:2:0"
 EndSection
 
 Section "Screen"
 Identifier "Screen0"
 Device     "Card0"
 Monitor    "Monitor0"
 SubSection "Display"
 Viewport   0 0
 Depth     1
 EndSubSection
 SubSection "Display"
 Viewport   0 0
 Depth     4
 EndSubSection
 SubSection "Display"
 Viewport   0 0
 Depth     8
 EndSubSection
 SubSection "Display"
 Viewport   0 0
 Depth     15
 EndSubSection
 SubSection "Display"
 Viewport   0 0
 Depth     16
 EndSubSection
 SubSection "Display"
 Viewport   0 0
 Depth     24
 EndSubSection
 EndSection
Personal tools
Namespaces
Variants
Actions