Objetivos:
Instalar una distribución Ubuntu, en concreto Gutsy, y configurar el portatil para que funcione correctamente.
Resumen previo:
Logré exito en configurar la pantalla para Gutsy y Feisty usando driver VESA y tocando ligeramente el fichero xorg.conf, drivers VIA y OPENCHROME fueron un fiasco.
Detalles del portatil:
Referencia en web fujitsu http://facts.fujitsu-siemens.com/dsp_pl.cfm?lid=149
1. Problemas con la resolución de pantalla: el portatil tiene una pantalla panorámica (1280x800), y Ubuntu te instala un driver VESA a 800x600, con lo que ves la pantalla a tamaño gigante.
Caundo instales Ubuntu te resultara dificil una vez arrancado desde el Desktop CD, ubicar los botones de selección de los distintos menus que salen en la instalación, para ello sustituye la sección Monitor y Device del fichero /etc/X11/xorg.conf por:
Section "Device"
Identifier "Generic Video Card"
Driver "vesa"
BusID "PCI:1:0:0"
EndSection
Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
HorizSync 28-64
VertRefresh 43-60
EndSection
Con ello deberías visualizar correctamente tu pantalla, y continuar con la instalación, finalmente te quedará un xorg.conf configurado adecuadamente (al final del artículo adjunto el mío).
Si por un casual no funciona, asegurate de hacer una copia de tu xorg.conf por si las moscas, y de paso echa un vistazo a las webs que referencio más abajo, para usar en vez de el driver VESA en 2D, el driver Openchrome (descargarlo + compilarlo es sencillo) o bien driver VIA. Al loro quienes intenteis configurar 3D, para el chipset del Amilo Pro dicen que es imposible.
2. Problemas con el audio / sonido : cuando conectas los auriculares, se oyen bien, pero los altavoces también se oyen!, y no es plan de fastidiar a tu pareja mientras en tu insomnio ves alguna peli.
1. Descarga los ultimos drivers de sonido ALSA:
ftp://ftp.alsa-project.org/pub/drive....14rc4.tar.bz2
2. Descomprimelos (creara la carpeta alsa-driver-1.0.14rc4):
tar xvf alsa-driver-1.0.14rc4.tar.bz2
3. Modifica el contenido del fichero patch_conexant.c para parchear el problema:
sudo gedit alsa-driver-1.0.14rc4/alsa-kernel/pci/hda/patch_conexant.c
Busca la linea 787, y cambia:
//////////////////////////////////////////////////////////////////////////////
static struct snd_pci_quirk cxt5045_cfg_tbl[] = {
SND_PCI_QUIRK(0x103c, 0x30b7, "HP DV6000Z", CXT5045_LAPTOP),
SND_PCI_QUIRK(0x103c, 0x30bb, "HP DV8000", CXT5045_LAPTOP),
SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_FUJITSU),
SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP),
{}
};
//////////////////////////////////////////////////////////////////////////////
por esto otro (se añade una linea más entre la 4a y la 5a):
//////////////////////////////////////////////////////////////////////////////
static struct snd_pci_quirk cxt5045_cfg_tbl[] = {
SND_PCI_QUIRK(0x103c, 0x30b7, "HP DV6000Z", CXT5045_LAPTOP),
SND_PCI_QUIRK(0x103c, 0x30bb, "HP DV8000", CXT5045_LAPTOP),
SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_FUJITSU),
SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_FUJITSU),
SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP),
{}
};
//////////////////////////////////////////////////////////////////////////////
4. Si tu sistema está recien instalado quiza debas instalar algo para compilar y aplicar el patch correctamente:
sudo apt-get install libc6-dev patch
5. Guarda el fichero, compila los nuevos drivers ALSA e instálalos:
cd alsa-driver-1.0.14rc4
./configure --with-cards=hda-intel
make
sudo make install
6. Añade al fichero /etc/modprobe.conf (sino existe crealo)
sudo gedit /etc/modprobe.conf
las lineas:
###################################
options snd-hda-intel model=laptop
alias snd-card-0 snd-hda-intel
alias sound-slot-0 snd-hda-intel
###################################
7. Guarda y reinicia el sistema
Agradecimientos y para profundizar:
Temas de pantalla:
Gracias Crhistian y demás
Thanks Williamts99
Temas de sonido:
Thanks santoxyz
Thanks Ana
Thanks _peter_
Mi /etc/X11/xorg.conf:
# xorg.conf (xorg 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 "Files"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "es"
Option "XkbVariant" "cat"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
EndSection
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizEdgeScroll" "0"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/input/wacom"
Option "Type" "stylus"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/wacom"
Option "Type" "eraser"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/wacom"
Option "Type" "cursor"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "Device"
Identifier "Generic Video Card"
Driver "vesa"
BusID "PCI:1:0:0"
EndSection
Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
HorizSync 28-64
VertRefresh 43-60
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Generic Video Card"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Modes "1280x800" "800x600"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
# Uncomment if you have a wacom tablet
# InputDevice "stylus" "SendCoreEvents"
# InputDevice "cursor" "SendCoreEvents"
# InputDevice "eraser" "SendCoreEvents"
InputDevice "Synaptics Touchpad"
EndSection
viernes 8 de febrero de 2008
Suscribirse a:
Enviar comentarios (Atom)

2 comentarios:
great tutorial man. i couldn't manage to install ubuntu on my v3515, but now everything seems to be working as new.
Thanks for your support. You're wellcome.
Publicar un comentario en la entrada