Difference between revisions of "Installation instructions for the ThinkPad T60p"

From ThinkWiki
Jump to: navigation, search
 
(Installing Linux on an IBM T60p)
Line 1: Line 1:
 +
==Installing Ubuntu Dapper==
 +
 +
To get it going:
 +
 +
* Get Dapper i386 (I used the Daily ISO DVD).
 +
 +
* Install the default distribution.
 +
 +
It will work, but you need an SMP kernel, and accelerated and higher resolution graphics, so:
 +
 +
* Install the i686-smp kernel (search for 'linux-kernel' in synaptic).
 +
 +
* Search for fglrx in synaptic, and install the fglrx modules, X driver and ATI control panel.
 +
 +
* Edit /etc/X11/xorg.conf, so each of the "Modeline" entries contains a 1600x1200 resolution as well (or whatever the top resolution of your LCD panel is), and change the driver section as follows:
 +
 +
Section "Device"
 +
    Identifier "ATI Technologies, Inc. ATI Default Card"
 +
    Driver "fglrx"              <----- ADD THIS LINE
 +
    #Driver "vesa"              <---- COMMENT OUT THIS LINE
 +
    BusID "PCI:1:0:0"
 +
    ChipID 0x71c5                <----- ADD THIS LINE
 +
EndSection
 +
 +
Reboot, and you should be done. Check "cat /proc/cpuinfo" shows two CPUs, and run fgl_glxgears and check you get around 580 frames a second.
 +
 +
I've reported [https://launchpad.net/distros/ubuntu/+bug/46527 bug 46527] on the lack of screen driver detection, so hopefully this will get even easier.
 +
 +
Note you do NOT need to install ATI drivers from the ATI site. The Ubuntu drivers are sufficient.
 +
 +
Thanks to Rich Tango-Lowy (see below) for the hint re chip detection.
 +
 
==External Sources==
 
==External Sources==
 
*[http://arscognita.com/~richtl/T60p/index.html Rich Tango-Lowy's Mandriva 2007 Cooker on T60p page]
 
*[http://arscognita.com/~richtl/T60p/index.html Rich Tango-Lowy's Mandriva 2007 Cooker on T60p page]

Revision as of 11:16, 25 May 2006

Installing Ubuntu Dapper

To get it going:

  • Get Dapper i386 (I used the Daily ISO DVD).
  • Install the default distribution.

It will work, but you need an SMP kernel, and accelerated and higher resolution graphics, so:

  • Install the i686-smp kernel (search for 'linux-kernel' in synaptic).
  • Search for fglrx in synaptic, and install the fglrx modules, X driver and ATI control panel.
  • Edit /etc/X11/xorg.conf, so each of the "Modeline" entries contains a 1600x1200 resolution as well (or whatever the top resolution of your LCD panel is), and change the driver section as follows:
Section "Device"
    Identifier "ATI Technologies, Inc. ATI Default Card"
    Driver "fglrx"               <----- ADD THIS LINE
    #Driver "vesa"               <---- COMMENT OUT THIS LINE
    BusID "PCI:1:0:0"
    ChipID 0x71c5                <----- ADD THIS LINE
EndSection

Reboot, and you should be done. Check "cat /proc/cpuinfo" shows two CPUs, and run fgl_glxgears and check you get around 580 frames a second.

I've reported bug 46527 on the lack of screen driver detection, so hopefully this will get even easier.

Note you do NOT need to install ATI drivers from the ATI site. The Ubuntu drivers are sufficient.

Thanks to Rich Tango-Lowy (see below) for the hint re chip detection.

External Sources