viernes, mayo 11, 2012

Instalando debian 6 amd64 Bit con Intel HD 2000/3000


The usual backports instructions apply. But let’s gather everything in a single place.
Add that to your sources.list:
deb http://backports.debian.org/debian-backports squeeze-backports main
Update your cache:
apt-get update
If you’re interested in just upgrading the usual mesa packages:
apt-get install -t squeeze-backports libgl1-mesa-dri libgl1-mesa-glx
If you want the whole stack, we should distinguish between two cases.
In the usual case, both the xserver-xorg-input-all and xserver-xorg-video-all meta packages were installed, and pulled a lot of packages, which should work for most users. Specifying a few packages to upgrade should pull everything from squeeze-backports.
apt-get install -t squeeze-backports xorg xserver-xorg xserver-xorg-core xserver-xorg-input-all xserver-xorg-video-all
apt-get install -t squeeze-backports libgl1-mesa-dri libgl1-mesa-glx
In case only the needed packages were installed, like the synaptics input driver and the intel video driver, the following should be sufficient:
apt-get install -t squeeze-backports xorg xserver-xorg xserver-xorg-core xserver-xorg-input-synaptics xserver-xorg-video-intel
apt-get install -t squeeze-backports libgl1-mesa-dri libgl1-mesa-glx
It is probably a very good idea to install the Linux kernel from squeeze-backports as well. It is even required for the nouveau video driver.

Agregando al sourcelist

# Security updates
deb http://security.debian.org/ squeeze/updates main
deb-src http://security.debian.org/ squeeze/updates main
#Contrib Non-free
deb http://ftp.cl.debian.org/debian/ squeeze main contrib non-free
deb-src http://ftp.cl.debian.org/debian squeeze main contrib non-free
# aMSN
deb http://ppa.launchpad.net/amsn-daily/ppa/ubuntu karmic main
# Wine
deb http://www.lamaresh.net/apt squeeze main
# Debian  package
deb http://www.debian-multimedia.org squeeze main non-free
# Google software
deb http://dl.google.com/linux/deb/ stable non-free main

Its got the Intel HD Graphics 3000.
$ lspci -v | grep -i vga
00:02.0 VGA compatible controller: Intel Corporation Sandy Bridge Integrated Graphics Controller (rev 09) (prog-if 00 [VGA controller])
 
 $ glxinfo
name of display: :0.0
Unrecognized deviceID 126
X Error of failed request:  BadAlloc (insufficient resources for operation)
  Major opcode of failed request:  154 (GLX)
  Minor opcode of failed request:  3 (X_GLXCreateContext)
  Serial number of failed request:  21
  Current serial number in output stream:  24
 
 $ dpkg -l | grep glx
ii  libgl1-mesa-glx                   7.7.1-4                   A free implementation of the OpenGL API -- GLX runtime
$ dpkg -l | grep video-intel
ii  xserver-xorg-video-intel          2:2.13.0-6                X.Org X server -- Intel i8xx, i9xx display driver
 
 
http://backports-master.debian.org/Instructions/
will tell you how to enable backports.
This will help you find the right kernel
apt-cache search 2.6.39
 
sudo apt-get -t squeeze-backports install linux-image-3.2.0-0.bpo.2-amd64
Reboot into the new kernel, and
sudo apt-get -t squeeze-backports install linux-headers-$(uname -r)
 
Instalando adicionales:
 
Gnome:
Code:
aptitude install gnome-core pulseaudio alsa openoffice.org-writer openoffice.org-calc openoffice.org-impress openoffice.org-l10n-es gcalctool gedit amsn rhythmbox brasero vlc libxine1-ffmpeg phonon-backend-xine evince pavucontrol google-chrome-stable gdm flashplugin-nonfree sun-java6-jre sun-java6-jdk sun-java6-plugin sun-java6-bin wicd os-prober file-roller  unrar zip gdebi -y && aptitude full-upgrade -y && reboot
XFCE:
Code:
aptitude install xorg xfce4 pulseaudio alsa openoffice.org-writer openoffice.org-calc openoffice.org-impress openoffice.org-l10n-es gcalctool emesene brasero vlc libxine1-ffmpeg phonon-backend-xine evince pavucontrol google-chrome-stable gdm flashplugin-nonfree sun-java6-jre sun-java6-jdk sun-java6-plugin sun-java6-bin wicd os-prober file-roller rar unrar zip gdebi -y -&& aptitude full-upgrade -y && reboot
LXDE:
Code:
aptitude install xorg -y && aptitude install --without-recommends lxde -y && aptitude install pulseaudio alsa openoffice.org-writer openoffice.org-calc openoffice.org-impress openoffice.org-l10n-es gcalctool f-spot emesene audacious brasero vlc libxine1-ffmpeg phonon-backend-xine evince pavucontrol google-chrome-stable gdm flashplugin-nonfree sun-java6-jre sun-java6-jdk sun-java6-plugin sun-java6-bin wicd os-prober file-roller rar unrar zip gdebi -y && aptitude full-upgrade -y && reboot
 Bueno, y si quieren instalar programas opcionales, que yo recomiendo:
Code:
aptitude install compiz-gtk compizconfig-settings-manager gparted startupmanager ntfs-config wine gtk-recordmydesktop visualboyadvance-gtk tucan gconf-editor -y

 
 

No hay comentarios.: