Hoy llegó la nueva laptop que compré. Decidí comprar una Dell studio 15 pues ya he comprado otras Dell y me han dejado un buen sabor de boca.
Instalé Ubuntu 10.04 sin mayores problemas. No he podido probar todo con detenimiento pero aquí está lo que funcionó y no funcionó hasta ahora:
- Monitor 15.6″ de 1080p: el control de brillo no funciona (funciona tras instalar el kernel que viene aquí)
- Tarjeta integrada Intel HD: No tiene un desempeño genial, pero funciona.
- Intel i3: funciona
- teclado luminoso back-lit: funciona
- trackpad multitouch: funcionó con configuración adicional que pongo abajo.
- puerto HDMI: no lo he probado
- windows 7 home premium (bueno, tenía)
- tarjeta WiFi Broadcom: funcionó después de ejecutar el asistente
- sonido: funciona
- webcam: funciona
- micrófono: no funcionaba hasta que noté que estaba en mute, jeje
- ethernet: funciona
- lector de discos ‘sin charola’: parece tener comportamiento extraño ocasionalmente pero funciona.
- lector de tarjetas sd: funciona
- bluetooth: funciona
Mientras vaya probando iré actualizando la entrada.
Saludos
Update. los babotas de Dell mandaron la laptop con 3gb de ram en lugar de 4gb. Voy a tener que hablar para reclamar.
Update 2: Por error instalé la versió nde 32bits en lugar de 64. por eso solo me aparecián 3gb.
la configuración para el multitouch es sencillo. Creen un archivo con este contenido, denle permisos de ejecución (chmod +x) y ejecutenlo
#!/bin/bash # # list of synaptics device properties http://www.x.org/archive/X11R7.5/doc/man/man4/synaptics.4.html#sect4 # list current synaptics device properties: xinput list-props '"SynPS/2 Synaptics TouchPad"' # sleep 5 #added delay... xinput set-int-prop "SynPS/2 Synaptics TouchPad" "Device Enabled" 8 1 xinput --set-prop --type=int --format=32 "SynPS/2 Synaptics TouchPad" "Synaptics Two-Finger Pressure" 4 xinput --set-prop --type=int --format=32 "SynPS/2 Synaptics TouchPad" "Synaptics Two-Finger Width" 9 # Below width 1 finger touch, above width simulate 2 finger touch. - value=pad-pixels xinput --set-prop --type=int --format=8 "SynPS/2 Synaptics TouchPad" "Synaptics Edge Scrolling" 1 1 0 # vertical, horizontal, corner - values: 0=disable 1=enable xinput --set-prop --type=int --format=32 "SynPS/2 Synaptics TouchPad" "Synaptics Jumpy Cursor Threshold" 250 # stabilize 2 finger actions - value=pad-pixels #xinput --set-prop --type=int --format=8 "SynPS/2 Synaptics TouchPad" "Synaptics Tap Action" 0 0 0 0 1 2 3 # pad corners rt rb lt lb tap fingers 1 2 3 (can't simulate more then 2 tap fingers AFAIK) - values: 0=disable 1=left 2=middle 3=right etc. (in FF 8=back 9=forward) xinput --set-prop --type=int --format=8 "SynPS/2 Synaptics TouchPad" "Synaptics Two-Finger Scrolling" 1 0 # vertical scrolling, horizontal scrolling - values: 0=disable 1=enable #xinput --set-prop --type=int --format=8 "SynPS/2 Synaptics TouchPad" "Synaptics Circular Scrolling" 1 #xinput --set-prop --type=int --format=8 "SynPS/2 Synaptics TouchPad" "Synaptics Circular Scrolling Trigger" 3 exit
El archivo lo conseguí en este post de los foros de Ubuntu.

