Configurar tarjeta video intel en Debian Lenny

En primer lugar eliminar con synaptic todos los paquetes de xserver-xorg-video-***** que no correspondan al Intel. En muchas paginas dice que haciendo dpkg-reconfigure xserver-xorg nos permite seleccionar el driver, pero como el xorg.conf no tiene ninguna entrada sobre driver, no te da esa opcion.


Descargar e instalar el driver (gracias a la comunidad está en los repositorios, ya que intel los liberó):

# apt-get install xserver-xorg-video-intel

Y tambien:

# apt-get install libdrm2 libgl1-mesa-dri libpng3 libpng12-0 libpng12-dev libxdamage1 libxcomposite1 x11proto-core-dev x11proto-composite-dev x11proto-damage-dev x11proto-fixes-dev x11proto-gl-dev x11proto-render-dev x11proto-randr-dev libcairo2 libcairo2-dev libcairo-perl libmono-cairo1.0-cil python-cairo libgl1-mesa-dev mesa-common-dev mesa-utils libsvn1 libglitz1 libglitz-glx1 libxfont1 libfontenc1 libwnck-common libwnck22 libsvn1 libglu1-mesa


Editamos el xorg.conf:

# nano /etc/X11/xorg.conf

Aqui dejo una copia de mi xorg.conf:

# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "Module"
Load "dri"
Load "glx"
Load "dbe"
EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "lat am"
EndSection

Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizScrollDelta" "50"
Option "SHMConfig" "true"
EndSection

Section "Device"
Identifier "Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
Driver "intel"
Option "XAANoOffscreenPixmaps" "true"
Option "RenderAccel" "true"
Option "AllowGLXWithComposite" "true"
Option "UseFBDev" "true"
Option "AccelMethod" "XAA"
Option "DRI" "true"
Option "FrameBufferCompression" "false"
BusID "PCI:0:2:0"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
Monitor "Generic Monitor"
Option "addARGBGLXVisuals" "True"
DefaultDepth 24
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Synaptics Touchpad"
Option "AIGLX" "true"
EndSection

Section "Extensions"
Option "Composite" "enable"
EndSection

Section "DRI"
Group "video"
Mode 0660
EndSection

1 comentarios:

Anónimo dijo...

Pues a mi no me funciona, tengo esta gráfica con musix 2.0 (debian lenny)
david@MusixLinux:~$ lspci |grep VGA
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 03)
david@MusixLinux:~$
david@MusixLinux:~$ lspci |grep VGA
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 03)
david@MusixLinux:~$

david@MusixLinux:~$ glxinfo |grep direct
direct rendering: No (If you want to find out why, try setting LIBGL_DEBUG=verbose)
OpenGL renderer string: Mesa GLX Indirect
david@MusixLinux:~$
¿Alguna idea?. Saludos

Publicar un comentario en la entrada