Portatil Dell Inspiron 1525 Debian 5.0

Enviado por felipe el 22 Junio, 2009 - 14:40.

¿Como instalar los driver de nuestra tarjeta de video?

Para comenzar, este portatil posee una tarjeta de video Intell X3100, chipset GM965/GL960.

Como vemos tengo una Intel X3100 y el chipset es GM965/GL960.

00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 0c)

Instalamos los siguientes paquetes antes de comenzar nuestra configuracion.

linux:~#aptitude 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

Ahora procedemos a modificar, manualmente, el archivo xorg.conf no sin antes hacer una copia de respaldo de la siguiente manera:

linux:~#cp /etc/X11/xorg.conf /etc/X11/xorg.conf.orig

Modificando el xorg.conf

linux:~#gedit /etc/X11/xorg.conf

El archivo deberia quedar de la siguiente manera.

# 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    "dbe"
EndSection

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

Section "InputDevice"
    Identifier    "Configured Mouse"
    Driver        "mouse"
EndSection

Section "Device"
    Identifier    "Intel Corporation Mobile 945GM/GMS, 943/GML Express Integrated Graphics Controller"
    Driver        "intel"
    Option        "XAANoOffscreenPixmaps"     "True"
    Option        "RenderAccel"    "true"
    Option        "AllowGLXWithComposite"    "true"
    Option        "UseFBDev"    "true"
    Option        "AccelMethod"    "XAA"
    Option        "DRI"    "true"
EndSection

Section "Monitor"
    Identifier    "Configured Monitor"
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Monitor        "Configured Monitor"
    Option        "AddARGBGLXVisuals"    "True"
EndSection

Section    "Extensions"
    Option    "Composite"    "Enable"
EndSection

Reiniciamos el entorno grafico de la siguiente manera

linux:~#dpkg-reconfigure xserver-xorg

Y deberia funcionar sin problemas. Para comprobar si nos resulto todo bien, introducimos el siguiente comando y nos deberia arrojar algo asi

linux:~$glxinfo |grep direct
direct rendering: Yes

Importante: En caso de presentar problemas luego de la modificacion del archivo xorg.conf podemos volver todo a la normalidad usando nuestra copia de respaldo de la siguiente manera

linux:~#mv /etc/X11/xorg.conf.orig /etc/X11/xorg.conf
linux:~#reboot

Referencia: http://vallelnx.bligoo.com