Difference between revisions of "Installing Ubuntu 10.04 (Lucid Lynx) on a ThinkPad T61p"

From ThinkWiki
Jump to: navigation, search
(Out-of-the-box Stats)
(Ultranav (Middle Mouse Button) Scrolling)
 
(23 intermediate revisions by 2 users not shown)
Line 6: Line 6:
 
! Status
 
! Status
 
|-
 
|-
| Video || Untested
+
| 3D video || Needs tweaks; see below
 
|-
 
|-
| Wireless (Intel 3945ABG or 4965AGN) || Untested
+
| ultranav scrolling || Needs tweaks; see below
 
|-
 
|-
| Touchpoint || Untested
+
| Fingerprint Reader || Needs tweaks; see below
 
|-
 
|-
| Trackpad || Untested
+
| ACPI - Suspend to Disk (Hibernate) || Needs tweaks; see below
 
|-
 
|-
| Trackpad scrolling || Untested
+
| Harddrive Active Protection || Needs tweaks; see below
 
|-
 
|-
| Sound card || Untested
+
| VGA out || Untested
 +
|-
 +
| Firewire || Untested
 
|-
 
|-
| Volume up/down/mute buttons || Untested
+
| Modem || Untested
 +
|-
 +
| Wireless - Intel 3945ABG || untested
 
|-
 
|-
 
| Audio in || Untested
 
| Audio in || Untested
Line 26: Line 30:
 
| Wired LAN || Untested
 
| Wired LAN || Untested
 
|-
 
|-
| ultranav scrolling || Untested
+
| FN-F5 (Wifi/Bluetooth) || Untested
 
|-
 
|-
| Optical drive || Untested
+
| FN-F7 (VGA) || Untested
 
|-
 
|-
| SD/MMC Memory card reader || Untested
+
| FN-F8 (Ultranav/Trackpad) || Untested
 
|-
 
|-
| FN-F2 (Lock) || Untested
+
| FN-F9 (Eject) || Untested
 
|-
 
|-
| FN-F3 (Battery) || Untested
+
| Thinkvantage Button || Untested
 
|-
 
|-
| FN-Home/End (Brightness) || Untested
+
| FN-Arrows (Media Controls) || Untested
 
|-
 
|-
| FN-PgUp (Thinklight) || Untested
+
| 2D video || Works out-of-box
 
|-
 
|-
| FN-F4 (Sleep) || Untested
+
| Wireless - 4965AGN || Works out-of-box
 
|-
 
|-
| FN-F5 (Wifi/Bluetooth) || Untested
+
| Front wireless killswitch || Works out-of-box
 
|-
 
|-
| FN-F7 (VGA) || Untested
+
| Touchpoint || Works out-of-box
 
|-
 
|-
| FN-F8 (Ultranav/Trackpad) || Untested
+
| Trackpad || Works out-of-box
 
|-
 
|-
| FN-F9 (Eject) || Untested
+
| Trackpad scrolling (side or two-finger) || Works out-of-box
 
|-
 
|-
| FN-F12 (Hibernate) || Untested
+
| Sound card || Works out-of-box
 
|-
 
|-
| Thinkvantage Button || Untested
+
| Volume up/down/mute buttons || Works out-of-box
 
|-
 
|-
| FN-Arrows (Media Controls) || Untested
+
| Optical drive || Works out-of-box
 
|-
 
|-
| ACPI - Lid Open/Close || Untested
+
| USB || Works out-of-box
 
|-
 
|-
| ACPI - Suspend to RAM || Untested
+
| FN-F2 (Lock) || Works out-of-box
 
|-
 
|-
| ACPI - Suspend to Disk || Untested
+
| FN-F3 (Battery) || Works out-of-box
 
|-
 
|-
| VGA out || Untested
+
| FN-F4 (Sleep) || Works out-of-box
 
|-
 
|-
| Front wireless killswitch || Untested
+
| FN-F12 (Hibernate) || Works out-of-box
 
|-
 
|-
| Firewire || Untested
+
| FN-Home/End (Brightness) || Works out-of-box
 
|-
 
|-
| USB || Untested
+
| FN-PgUp (Thinklight) || Works out-of-box
 
|-
 
|-
| Modem || Untested
+
| ACPI - Lid Open/Close || Works out-of-box
 
|-
 
|-
| Fingerprint Reader || Untested
+
| ACPI - Suspend to RAM || Works out-of-box
 
|-
 
|-
| Harddrive Active Protection || Untested
+
| SD/MMC Memory card reader || Working for some, broken for me
 
|}
 
|}
  
 
== Hardware Tweaks ==
 
== Hardware Tweaks ==
 +
=== Video Driver ===
 +
2D video works out of the box. To enable 3D (and compiz),
 +
 +
# go to system -> admin -> hardware drivers. Install "version current" driver (not 173, which seems to break suspend). Reboot
 +
# go to system -> preferences -> appearance and change the setting under the "Visual Effects" tab. A "driver search" window may popup - cancel it.
 +
 +
=== Ultranav (Middle Mouse Button) Scrolling ===
 +
* run the command (press alt+f2) "gksudo gedit /usr/lib/X11/xorg.conf.d/20-thinkpad.conf" (for Ubuntu 10.10 this should be: "gksudo gedit /usr/share/X11/xorg.conf.d/20-thinkpad.conf")
 +
* paste this into the file
 +
<pre>
 +
Section "InputClass"
 +
Identifier "Trackpoint Wheel Emulation"
 +
MatchProduct "TPPS/2 IBM TrackPoint|DualPoint Stick|Synaptics Inc. Composite TouchPad / TrackPoint|ThinkPad USB Keyboard with TrackPoint"
 +
MatchDevicePath "/dev/input/event*"
 +
Option "EmulateWheel" "true"
 +
Option "EmulateWheelButton" "2"
 +
Option "Emulate3Buttons" "false"
 +
Option "XAxisMapping" "6 7"
 +
Option "YAxisMapping" "4 5"
 +
Option "ButtonMapping" "1 1 3 4 5"
 +
EndSection
 +
</pre>
 +
* Restart X (logout and back in)
 +
 +
* If you want to disable horizontal scrolling, remove the line
 +
<pre>
 +
Option "XAxisMapping" "6 7"
 +
</pre>
 +
 +
* The above also disables middle button pasting and makes the middle button act the same as the left button. If you wish to enable it, remove the line
 +
<pre>
 +
Option "ButtonMapping" "1 1 3 4 5"
 +
</pre>
 +
 +
=== Harddrive Active Protection ===
 +
=== Fingerprint Reader ===
 +
=== SD/MMC Card Reader ===
 +
=== Hibernate ===
  
 
== Other Issues ==
 
== Other Issues ==

Latest revision as of 19:06, 6 January 2011

Out-of-the-box Stats

Component Status
3D video Needs tweaks; see below
ultranav scrolling Needs tweaks; see below
Fingerprint Reader Needs tweaks; see below
ACPI - Suspend to Disk (Hibernate) Needs tweaks; see below
Harddrive Active Protection Needs tweaks; see below
VGA out Untested
Firewire Untested
Modem Untested
Wireless - Intel 3945ABG untested
Audio in Untested
Audio out Untested
Wired LAN Untested
FN-F5 (Wifi/Bluetooth) Untested
FN-F7 (VGA) Untested
FN-F8 (Ultranav/Trackpad) Untested
FN-F9 (Eject) Untested
Thinkvantage Button Untested
FN-Arrows (Media Controls) Untested
2D video Works out-of-box
Wireless - 4965AGN Works out-of-box
Front wireless killswitch Works out-of-box
Touchpoint Works out-of-box
Trackpad Works out-of-box
Trackpad scrolling (side or two-finger) Works out-of-box
Sound card Works out-of-box
Volume up/down/mute buttons Works out-of-box
Optical drive Works out-of-box
USB Works out-of-box
FN-F2 (Lock) Works out-of-box
FN-F3 (Battery) Works out-of-box
FN-F4 (Sleep) Works out-of-box
FN-F12 (Hibernate) Works out-of-box
FN-Home/End (Brightness) Works out-of-box
FN-PgUp (Thinklight) Works out-of-box
ACPI - Lid Open/Close Works out-of-box
ACPI - Suspend to RAM Works out-of-box
SD/MMC Memory card reader Working for some, broken for me

Hardware Tweaks

Video Driver

2D video works out of the box. To enable 3D (and compiz),

  1. go to system -> admin -> hardware drivers. Install "version current" driver (not 173, which seems to break suspend). Reboot
  2. go to system -> preferences -> appearance and change the setting under the "Visual Effects" tab. A "driver search" window may popup - cancel it.

Ultranav (Middle Mouse Button) Scrolling

  • run the command (press alt+f2) "gksudo gedit /usr/lib/X11/xorg.conf.d/20-thinkpad.conf" (for Ubuntu 10.10 this should be: "gksudo gedit /usr/share/X11/xorg.conf.d/20-thinkpad.conf")
  • paste this into the file
Section "InputClass"
	Identifier	"Trackpoint Wheel Emulation"
	MatchProduct	"TPPS/2 IBM TrackPoint|DualPoint Stick|Synaptics Inc. Composite TouchPad / TrackPoint|ThinkPad USB Keyboard with TrackPoint"
	MatchDevicePath	"/dev/input/event*"
	Option		"EmulateWheel"		"true"
	Option		"EmulateWheelButton"	"2"
	Option		"Emulate3Buttons"	"false"
	Option		"XAxisMapping"		"6 7"
	Option		"YAxisMapping"		"4 5"
	Option		"ButtonMapping"		"1 1 3 4 5"
EndSection
  • Restart X (logout and back in)
  • If you want to disable horizontal scrolling, remove the line
	Option		"XAxisMapping"		"6 7"
  • The above also disables middle button pasting and makes the middle button act the same as the left button. If you wish to enable it, remove the line
	Option		"ButtonMapping"		"1 1 3 4 5"

Harddrive Active Protection

Fingerprint Reader

SD/MMC Card Reader

Hibernate

Other Issues