Linux en Acer Aspire 3610

Bueno, pues ya que me he comprado este portatil, ire escribiendo aqui mis andanzas con el, aqui van sus caracteristicas:
- CPU: Intel Celeron M 380
- Velocidad: 1,6Ghz
- FSB: 400Mhz
- Chipset:Intel 910GML
- RAM: 512Mb DDR II (1x512)
- HDD:80GB
- Pantalla: 15,0´´ XGA
- Gráficos:Intel 910GML integrado con gráficos 3D de hasta 128Mg no dedicada
- Óptico: DVD-Dual Doble capa
- Sistema Operativo: XP Home
- Puertos USB: 4
- Lector PcCard: 1
- Lector Tarj de Memoria: No
- Lan: 10/100
- Wifi: 802.11b/g
- Modem integrado
- Peso: 2.75Kg
acer aspire 3614
Un lspci:

CODE:
  1. 0000:00:00.0 Host bridge: Intel Corporation Mobile 915GM/PM/GMS/910GML Express Processor to DRAM Controller (rev 03)
  2. 0000:00:02.0 VGA compatible controller: Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller (rev 03)
  3. 0000:00:02.1 Display controller: Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller (rev 03)
  4. 0000:00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (rev 03)
  5. 0000:00:1d.1 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 (rev 03)
  6. 0000:00:1d.2 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 (rev 03)
  7. 0000:00:1d.3 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #4 (rev 03)
  8. 0000:00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (rev 03)
  9. 0000:00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev d3)
  10. 0000:00:1e.2 Multimedia audio controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller (rev 03)
  11. 0000:00:1e.3 Modem: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Modem Controller (rev 03)
  12. 0000:00:1f.0 ISA bridge: Intel Corporation 82801FBM (ICH6M) LPC Interface Bridge (rev 03)
  13. 0000:00:1f.1 IDE interface: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller (rev 03)
  14. 0000:00:1f.3 SMBus: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) SMBus Controller (rev 03)
  15. 0000:06:05.0 Ethernet controller: Atheros Communications, Inc.: Unknown device 001a (rev 01)
  16. 0000:06:07.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)
  17. 0000:06:09.0 CardBus bridge: ENE Technology Inc CB1410 Cardbus Controller (rev 01)

De momento he probado dos distribuciones, aunque en realidad es una, primero ubuntu y luego debian, y con esta es con la que se ha quedado.

La wifi tiene chipset atheros, ubuntu la reconoce sin mas problemas y en debian solo me ha hecho falta instalar madwifi y cargar el modulo ath_pci.

El touchpad es un alps, en ubuntu ya lo deja funcionando, tanto la especie de joystick que tiene como el scroll por la parte derecha del touchpad, en debian ha sido cosa de instalar el driver de synaptics para xorg y añadirle la configuracion al xorg.conf:

CODE:
  1. Section "InputDevice"
  2.     Identifier  "Touchpad"
  3.     Driver      "synaptics"
  4.     Option "Protocol"    "Auto"
  5.     Option "Device"      "/dev/input/mice"
  6.     Option      "LeftEdge"        "1700"
  7.     Option      "RightEdge"       "5300"
  8.     Option      "TopEdge"         "1700"
  9.     Option      "BottomEdge"      "4200"
  10.     Option      "FingerLow"       "25"
  11.     Option      "FingerHigh"      "30"
  12.     Option      "MaxTapTime"      "180"
  13.     Option      "MaxTapMove"      "220"
  14.     Option      "VertScrollDelta" "100"
  15.     Option      "MinSpeed"        "0.06"
  16.     Option      "MaxSpeed"        "0.12"
  17.     Option      "AccelFActor"     "0.0010"
  18.     Option      "SendCoreEvents"  "true"
  19. EndSection