Difference between revisions of "Installing Debian 4.0 (Etch) on a Thinkpad x60s"

From ThinkWiki
Jump to: navigation, search
(X60s debian etch installation)
 
Line 34: Line 34:
  
 
At the end, you should also copy the file ''/etc/acpi/start.d/90-hdparm.sh'' from unstable and place it in ''/etc/acpi/{suspend|resume|start}.d''. This prevents an increase of the Load_Cycle_Count (a problem called "HDD laptop killer"). This file only contains a call to "hdparm -B 254" for your hard drive.
 
At the end, you should also copy the file ''/etc/acpi/start.d/90-hdparm.sh'' from unstable and place it in ''/etc/acpi/{suspend|resume|start}.d''. This prevents an increase of the Load_Cycle_Count (a problem called "HDD laptop killer"). This file only contains a call to "hdparm -B 254" for your hard drive.
 +
 +
[[Category:X60s]]

Revision as of 23:11, 5 December 2007

This page describes the installation of Debian Etch, with its standard kernel, on a Thinkpad X60S (Type 1702-3GJ). The aim of this installation is to try to stick to a standard Etch installation.

The standard installation of Debian Etch (i386) goes smoothly. You have to check that "laptop" task is selected into tasksel.

Once, everything has been installed, you must edit /etc/apt/sources.list and add contrib and non-free after main. After this you must update the list of available package:

apt-get update

To enable the wifi, one have to install ipw3945d and firmware-ipw3945. The kernel driver of Etch (ipw3945-source) doesn't work for this version of the laptop. You have to download one from unstable/testing version 1.2.2, at least (http://packages.debian.org/sid/ipw3945-source) and install it through dpkg:

apt-get install debhelper dpatch module-assistant bzip2 make
dpkg -i ipw3945-source[...].deb

Compile it using m-a:

m-a 

In m-a you have to "prepare" and then "select" module ipw3945. Follow instructions given by m-a. At the end of the procedure you should install the generated module.

In order to get NetworkManager working with this laptop you have to remove everything related to bluetooth:

apt-get remove --Purge bluez-utils bluetooth

You also have to edit a file in /etc/modprobe.d/myblacklist and add "blacklist bluetooth". Once done update the initrd image:

update-initramfs -u

After this, you must reboot your computer to be able to load the new module.

A possible remaining problem concerns hda_intel failing to initialize sound. This issue is related to the internal modem of the laptop. You must be sure that this modem is enabled in the BIOS. Typical message for this problem are:

hda_intel: azx_get_response timeout, switching to polling mode…
hda_intel: azx_get_response timeout, switching to single_cmd mode…

At the end, you should also copy the file /etc/acpi/start.d/90-hdparm.sh from unstable and place it in /etc/acpi/{suspend|resume|start}.d. This prevents an increase of the Load_Cycle_Count (a problem called "HDD laptop killer"). This file only contains a call to "hdparm -B 254" for your hard drive.