<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mbeichorn</id>
	<title>ThinkWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mbeichorn"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Mbeichorn"/>
	<updated>2026-05-09T06:45:58Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43269</id>
		<title>Installing Ubuntu 9.04 (Jaunty Jackalope) on an X61 Tablet</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43269"/>
		<updated>2009-05-24T21:52:33Z</updated>

		<summary type="html">&lt;p&gt;Mbeichorn: /* Setup ThinkVantage ActiveProtection */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction =&lt;br /&gt;
&lt;br /&gt;
This page covers the additional hardware setup required after installing Ubuntu 9.04 Jaunty to make the Thinkpad X61 Tablet Fully Functional. All directions are given in the HAL, fdi, and acpi thus avoiding the xorg.conf file completely.&lt;br /&gt;
&lt;br /&gt;
=== What Works ===&lt;br /&gt;
Forward / Back Buttons,&lt;br /&gt;
Audio Buttons,&lt;br /&gt;
Brightness Fn Buttons,&lt;br /&gt;
Radio Fn Button,&lt;br /&gt;
Suspend Fn Button,&lt;br /&gt;
Power Fn Button,&lt;br /&gt;
Lock Fn Button,&lt;br /&gt;
Hibernate Fn Button,&lt;br /&gt;
Tablet L/R/U/D Buttons,&lt;br /&gt;
Tablet Enter Button,&lt;br /&gt;
Tablet Esc Button,&lt;br /&gt;
Media Fn Buttons&lt;br /&gt;
NumberLock Fn Button,&lt;br /&gt;
Tablet Pen,&lt;br /&gt;
Wireless Radio,&lt;br /&gt;
Bluetooth Radio,&lt;br /&gt;
&lt;br /&gt;
=== What Almost Works ===&lt;br /&gt;
Tablet Toolbox Button -  causes lock or suspend,&lt;br /&gt;
Tablet Touch – Requires Calibration,&lt;br /&gt;
&lt;br /&gt;
=== What Does Not Work ===&lt;br /&gt;
Tablet Control-Alt-Delete Button,&lt;br /&gt;
Tablet Rotate Button,&lt;br /&gt;
Middle Mouse Button,&lt;br /&gt;
ThinkVantage Button,&lt;br /&gt;
Magnify Fn Button,&lt;br /&gt;
Fingerprint Reader,&lt;br /&gt;
Automatic Screen Rotation,&lt;br /&gt;
ThinkVantage ActiveProtection,&lt;br /&gt;
&lt;br /&gt;
= Fixing Touch =&lt;br /&gt;
Works out of the box, just needs some calibration.&lt;br /&gt;
&lt;br /&gt;
== Wacomcpl ==&lt;br /&gt;
The Wacom Tablet in the X61t is a serial Wacom tablet. It can be configured by using wacomcpl. Wacomcpl is part of the wacom-tools package and can be retrieved in apt:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install wacom-tools&lt;br /&gt;
&lt;br /&gt;
After this wacomcpl can be run by typing:&lt;br /&gt;
&lt;br /&gt;
 wacomcpl&lt;br /&gt;
&lt;br /&gt;
in Terminal.&lt;br /&gt;
&lt;br /&gt;
=== Helping wacomcpl ===&lt;br /&gt;
Unfortunately HAL assigns names to wacom devices in a way that the recent wacomcpl from jaunty cant find them, to help wacomcpl to find them:&lt;br /&gt;
&lt;br /&gt;
Open a terminal and type :&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/init.d/wacomtohal&lt;br /&gt;
&lt;br /&gt;
and paste this code in:&lt;br /&gt;
&lt;br /&gt;
 #! /bin/sh&lt;br /&gt;
 ## find any wacom devices&lt;br /&gt;
 for udi in `hal-find-by-property --key input.x11_driver --string wacom`&lt;br /&gt;
 do&lt;br /&gt;
 type=`hal-get-property --udi $udi --key input.x11_options.Type`&lt;br /&gt;
 ## rewrite the names that the Xserver will use&lt;br /&gt;
 hal-set-property --udi $udi --key info.product --string $type&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
then run :&lt;br /&gt;
&lt;br /&gt;
 sudo chmod +x /etc/init.d/wacomtohal&lt;br /&gt;
 sudo update-rc.d wacomtohal defaults 27&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now reboot and launch wacomcpl&lt;br /&gt;
&lt;br /&gt;
=== Making Wacomcpl Settings Restore on Reboot ===&lt;br /&gt;
If you lose your calibration after reboot:&lt;br /&gt;
&lt;br /&gt;
In terminal: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit ~/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Find the line that says:&lt;br /&gt;
&lt;br /&gt;
 . /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
and change it to&lt;br /&gt;
&lt;br /&gt;
 #. /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
Save and exit.&lt;br /&gt;
&lt;br /&gt;
Go to System&amp;gt;Preferences&amp;gt;Startup Applications and create a new entry named whatever you want.&lt;br /&gt;
&lt;br /&gt;
The command should be:&lt;br /&gt;
&lt;br /&gt;
 sh /home/yourusername/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Your wacomcpl settings will now restore on reboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Fixing the Tablet Toolbox Button =&lt;br /&gt;
This key needs to be set to a keycode pick any empty one (241 is usually)&lt;br /&gt;
&lt;br /&gt;
sudo setkeycodes 68 241&lt;br /&gt;
&lt;br /&gt;
Now you can bind this key to any command.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Control-Alt-Delete Button =&lt;br /&gt;
This key needs to be set to a keycode pick any empty one (242 is usually)&lt;br /&gt;
&lt;br /&gt;
 sudo setkeycodes 67 242&lt;br /&gt;
&lt;br /&gt;
Now you can bind this key to any command.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Rotate Button =&lt;br /&gt;
This key needs to be set to a keycode pick any empty one (240 is usually)&lt;br /&gt;
&lt;br /&gt;
 sudo setkeycodes 6c 240&lt;br /&gt;
&lt;br /&gt;
Now you can bind this key to any command. (It should be possible to write a script to interact with the autorotate given on this page)&lt;br /&gt;
&lt;br /&gt;
= Setup the Middle Button Scrolling =&lt;br /&gt;
&lt;br /&gt;
Create a new file called /etc/hal/fdi/policy/mouse-wheel.fdi typing: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/hal/fdi/policy/mouse-wheel.fdi&lt;br /&gt;
&lt;br /&gt;
And fill it with this code: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
  &amp;lt;match key=&amp;quot;info.product&amp;quot; string=&amp;quot;TPPS/2 IBM TrackPoint&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheel&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheelButton&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;2&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.XAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;6 7&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.YAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.ZAxsisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.Emulate3Buttons&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
 &amp;lt;/match&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reboot&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage Button =&lt;br /&gt;
The ThinkVantage button does not work only in that it is not bound to anything. To bind it go to System&amp;gt;Preferences&amp;gt;Keyboard Shortcuts and set it to perform any command.&lt;br /&gt;
&lt;br /&gt;
= Setup Magnify Fn Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup Fingerprint Reader =&lt;br /&gt;
&lt;br /&gt;
The Thinkfinger driver works fine on the X61. The following is the paraphrased commands from the installing thinkfinger page that are relevant to the X61 and Ubuntu 9.04.&lt;br /&gt;
&lt;br /&gt;
In terminal, add a key:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com F2A12FABE936A7BBDC4EA33351DB180D1323E149&lt;br /&gt;
&lt;br /&gt;
Add the PPA repositories to your source.list (/etc/apt/source.list):&lt;br /&gt;
&lt;br /&gt;
 deb http://ppa.launchpad.net/jon-oberheide/ppa/ubuntu jaunty main&lt;br /&gt;
 deb-src http://ppa.launchpad.net/jon-oberheide/ppa/ubuntu jaunty main&lt;br /&gt;
&lt;br /&gt;
Update installer:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get update&lt;br /&gt;
&lt;br /&gt;
And install:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install thinkfinger-tools libpam-thinkfinger&lt;br /&gt;
&lt;br /&gt;
Now the driver is installed and should be working. You can try it (as root) with &lt;br /&gt;
&lt;br /&gt;
 sudo tf-tool --acquire &lt;br /&gt;
&lt;br /&gt;
and &lt;br /&gt;
&lt;br /&gt;
 sudo tf-tool --verify &lt;br /&gt;
&lt;br /&gt;
This will ask you to swipe your finger three times, save the fingerprint to /tmp/test.bir and then verify your fingerprint with the bir-file. &lt;br /&gt;
&lt;br /&gt;
Setup Pam:&lt;br /&gt;
&lt;br /&gt;
 sudo /usr/lib/pam-thinkfinger/pam-thinkfinger-enable&lt;br /&gt;
&lt;br /&gt;
Add user:&lt;br /&gt;
&lt;br /&gt;
 tf-tool --acquire $USERNAME&lt;br /&gt;
&lt;br /&gt;
Optional: Change the login screen to allow keyboard-less login:&lt;br /&gt;
&lt;br /&gt;
Go to: System&amp;gt;Administration&amp;gt;Login Window&lt;br /&gt;
&lt;br /&gt;
Click on the 'Local' tab.&lt;br /&gt;
&lt;br /&gt;
Set the drop-down boxes to: 'Themed with face browser' and 'Selected Only' and choose 'Human List' from the list of logins.&lt;br /&gt;
&lt;br /&gt;
Note: it may take some time for the reader to startup, give it 5 seconds before use and before pressing enter to initiate login.&lt;br /&gt;
&lt;br /&gt;
= Setup Automatic Screen Rotation =&lt;br /&gt;
To Be Posted.&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage ActiveProtection =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Disable Bluetooth on Startup =&lt;br /&gt;
These instructions will disable the bluetooth radio being activated during the boot. The radio can then be activated at the users discretion using Fn F5 (Radio Fn Button).&lt;br /&gt;
&lt;br /&gt;
edit /etc/rc.local and add:&lt;br /&gt;
&lt;br /&gt;
 chmod 666 /proc/acpi/ibm/bluetooth &lt;br /&gt;
 echo &amp;quot;disable&amp;quot; &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
&lt;br /&gt;
before the exit0 line&lt;br /&gt;
&lt;br /&gt;
*note chmod 666 makes this file editable by everyone, this may compromise security, try different settings to find the one that suits your needs (655 may work)&lt;br /&gt;
&lt;br /&gt;
*note proc is depreciated and may not work in future releases&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Enable Laptop Mode =&lt;br /&gt;
Laptop mode is a power saving tool that allows the hard drive to spin down to conserve battery power. This is disabled by default as it has been known to cause problems on some computers, but it appears to work on the X61t.&lt;br /&gt;
&lt;br /&gt;
*Warning: Laptop mode stores data in ram teporarily until it needs to write to disk. Power Loss in laptop mode could lead to significant data loss.&lt;br /&gt;
&lt;br /&gt;
*Warning: Excessive spin-up spin-down cycles will wear out your hard drive much more quickly than normal use. Be careful when configuring laptop mode settings.  &lt;br /&gt;
&lt;br /&gt;
*Warning: Do Not Use Laptop Mode if you have a SSD. It is for platter drives only.&lt;br /&gt;
&lt;br /&gt;
Edit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
Set: &amp;quot;ENABLE_LAPTOP_MODE=true&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure Laptop Mode&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/laptop-mode/laptop-mode.conf&lt;br /&gt;
&lt;br /&gt;
= Sources =&lt;br /&gt;
The above is a compilation of my notes from when I installed Jaunty on my X61t. The code and many of the instructions come from various pages and sources around the Internet. I will attempt to document them when time permits. If you see anything that should be added or wish to cite a source I missed, please edit the page.&lt;/div&gt;</summary>
		<author><name>Mbeichorn</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43267</id>
		<title>Installing Ubuntu 9.04 (Jaunty Jackalope) on an X61 Tablet</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43267"/>
		<updated>2009-05-24T21:45:53Z</updated>

		<summary type="html">&lt;p&gt;Mbeichorn: /* Setup ThinkVantage ActiveProtection */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction =&lt;br /&gt;
&lt;br /&gt;
This page covers the additional hardware setup required after installing Ubuntu 9.04 Jaunty to make the Thinkpad X61 Tablet Fully Functional. All directions are given in the HAL, fdi, and acpi thus avoiding the xorg.conf file completely.&lt;br /&gt;
&lt;br /&gt;
=== What Works ===&lt;br /&gt;
Forward / Back Buttons,&lt;br /&gt;
Audio Buttons,&lt;br /&gt;
Brightness Fn Buttons,&lt;br /&gt;
Radio Fn Button,&lt;br /&gt;
Suspend Fn Button,&lt;br /&gt;
Power Fn Button,&lt;br /&gt;
Lock Fn Button,&lt;br /&gt;
Hibernate Fn Button,&lt;br /&gt;
Tablet L/R/U/D Buttons,&lt;br /&gt;
Tablet Enter Button,&lt;br /&gt;
Tablet Esc Button,&lt;br /&gt;
Media Fn Buttons&lt;br /&gt;
NumberLock Fn Button,&lt;br /&gt;
Tablet Pen,&lt;br /&gt;
Wireless Radio,&lt;br /&gt;
Bluetooth Radio,&lt;br /&gt;
&lt;br /&gt;
=== What Almost Works ===&lt;br /&gt;
Tablet Toolbox Button -  causes lock or suspend,&lt;br /&gt;
Tablet Touch – Requires Calibration,&lt;br /&gt;
&lt;br /&gt;
=== What Does Not Work ===&lt;br /&gt;
Tablet Control-Alt-Delete Button,&lt;br /&gt;
Tablet Rotate Button,&lt;br /&gt;
Middle Mouse Button,&lt;br /&gt;
ThinkVantage Button,&lt;br /&gt;
Magnify Fn Button,&lt;br /&gt;
Fingerprint Reader,&lt;br /&gt;
Automatic Screen Rotation,&lt;br /&gt;
ThinkVantage ActiveProtection,&lt;br /&gt;
&lt;br /&gt;
= Fixing Touch =&lt;br /&gt;
Works out of the box, just needs some calibration.&lt;br /&gt;
&lt;br /&gt;
== Wacomcpl ==&lt;br /&gt;
The Wacom Tablet in the X61t is a serial Wacom tablet. It can be configured by using wacomcpl. Wacomcpl is part of the wacom-tools package and can be retrieved in apt:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install wacom-tools&lt;br /&gt;
&lt;br /&gt;
After this wacomcpl can be run by typing:&lt;br /&gt;
&lt;br /&gt;
 wacomcpl&lt;br /&gt;
&lt;br /&gt;
in Terminal.&lt;br /&gt;
&lt;br /&gt;
=== Helping wacomcpl ===&lt;br /&gt;
Unfortunately HAL assigns names to wacom devices in a way that the recent wacomcpl from jaunty cant find them, to help wacomcpl to find them:&lt;br /&gt;
&lt;br /&gt;
Open a terminal and type :&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/init.d/wacomtohal&lt;br /&gt;
&lt;br /&gt;
and paste this code in:&lt;br /&gt;
&lt;br /&gt;
 #! /bin/sh&lt;br /&gt;
 ## find any wacom devices&lt;br /&gt;
 for udi in `hal-find-by-property --key input.x11_driver --string wacom`&lt;br /&gt;
 do&lt;br /&gt;
 type=`hal-get-property --udi $udi --key input.x11_options.Type`&lt;br /&gt;
 ## rewrite the names that the Xserver will use&lt;br /&gt;
 hal-set-property --udi $udi --key info.product --string $type&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
then run :&lt;br /&gt;
&lt;br /&gt;
 sudo chmod +x /etc/init.d/wacomtohal&lt;br /&gt;
 sudo update-rc.d wacomtohal defaults 27&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now reboot and launch wacomcpl&lt;br /&gt;
&lt;br /&gt;
=== Making Wacomcpl Settings Restore on Reboot ===&lt;br /&gt;
If you lose your calibration after reboot:&lt;br /&gt;
&lt;br /&gt;
In terminal: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit ~/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Find the line that says:&lt;br /&gt;
&lt;br /&gt;
 . /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
and change it to&lt;br /&gt;
&lt;br /&gt;
 #. /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
Save and exit.&lt;br /&gt;
&lt;br /&gt;
Go to System&amp;gt;Preferences&amp;gt;Startup Applications and create a new entry named whatever you want.&lt;br /&gt;
&lt;br /&gt;
The command should be:&lt;br /&gt;
&lt;br /&gt;
 sh /home/yourusername/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Your wacomcpl settings will now restore on reboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Fixing the Tablet Toolbox Button =&lt;br /&gt;
This key needs to be set to a keycode pick any empty one (241 is usually)&lt;br /&gt;
&lt;br /&gt;
sudo setkeycodes 68 241&lt;br /&gt;
&lt;br /&gt;
Now you can bind this key to any command.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Control-Alt-Delete Button =&lt;br /&gt;
This key needs to be set to a keycode pick any empty one (242 is usually)&lt;br /&gt;
&lt;br /&gt;
 sudo setkeycodes 67 242&lt;br /&gt;
&lt;br /&gt;
Now you can bind this key to any command.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Rotate Button =&lt;br /&gt;
This key needs to be set to a keycode pick any empty one (240 is usually)&lt;br /&gt;
&lt;br /&gt;
 sudo setkeycodes 6c 240&lt;br /&gt;
&lt;br /&gt;
Now you can bind this key to any command. (It should be possible to write a script to interact with the autorotate given on this page)&lt;br /&gt;
&lt;br /&gt;
= Setup the Middle Button Scrolling =&lt;br /&gt;
&lt;br /&gt;
Create a new file called /etc/hal/fdi/policy/mouse-wheel.fdi typing: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/hal/fdi/policy/mouse-wheel.fdi&lt;br /&gt;
&lt;br /&gt;
And fill it with this code: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
  &amp;lt;match key=&amp;quot;info.product&amp;quot; string=&amp;quot;TPPS/2 IBM TrackPoint&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheel&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheelButton&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;2&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.XAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;6 7&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.YAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.ZAxsisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.Emulate3Buttons&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
 &amp;lt;/match&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reboot&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage Button =&lt;br /&gt;
The ThinkVantage button does not work only in that it is not bound to anything. To bind it go to System&amp;gt;Preferences&amp;gt;Keyboard Shortcuts and set it to perform any command.&lt;br /&gt;
&lt;br /&gt;
= Setup Magnify Fn Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup Fingerprint Reader =&lt;br /&gt;
&lt;br /&gt;
The Thinkfinger driver works fine on the X61. The following is the paraphrased commands from the installing thinkfinger page that are relevant to the X61 and Ubuntu 9.04.&lt;br /&gt;
&lt;br /&gt;
In terminal, add a key:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com F2A12FABE936A7BBDC4EA33351DB180D1323E149&lt;br /&gt;
&lt;br /&gt;
Add the PPA repositories to your source.list (/etc/apt/source.list):&lt;br /&gt;
&lt;br /&gt;
 deb http://ppa.launchpad.net/jon-oberheide/ppa/ubuntu jaunty main&lt;br /&gt;
 deb-src http://ppa.launchpad.net/jon-oberheide/ppa/ubuntu jaunty main&lt;br /&gt;
&lt;br /&gt;
Update installer:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get update&lt;br /&gt;
&lt;br /&gt;
And install:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install thinkfinger-tools libpam-thinkfinger&lt;br /&gt;
&lt;br /&gt;
Now the driver is installed and should be working. You can try it (as root) with &lt;br /&gt;
&lt;br /&gt;
 sudo tf-tool --acquire &lt;br /&gt;
&lt;br /&gt;
and &lt;br /&gt;
&lt;br /&gt;
 sudo tf-tool --verify &lt;br /&gt;
&lt;br /&gt;
This will ask you to swipe your finger three times, save the fingerprint to /tmp/test.bir and then verify your fingerprint with the bir-file. &lt;br /&gt;
&lt;br /&gt;
Setup Pam:&lt;br /&gt;
&lt;br /&gt;
 sudo /usr/lib/pam-thinkfinger/pam-thinkfinger-enable&lt;br /&gt;
&lt;br /&gt;
Add user:&lt;br /&gt;
&lt;br /&gt;
 tf-tool --acquire $USERNAME&lt;br /&gt;
&lt;br /&gt;
Optional: Change the login screen to allow keyboard-less login:&lt;br /&gt;
&lt;br /&gt;
Go to: System&amp;gt;Administration&amp;gt;Login Window&lt;br /&gt;
&lt;br /&gt;
Click on the 'Local' tab.&lt;br /&gt;
&lt;br /&gt;
Set the drop-down boxes to: 'Themed with face browser' and 'Selected Only' and choose 'Human List' from the list of logins.&lt;br /&gt;
&lt;br /&gt;
Note: it may take some time for the reader to startup, give it 5 seconds before use and before pressing enter to initiate login.&lt;br /&gt;
&lt;br /&gt;
= Setup Automatic Screen Rotation =&lt;br /&gt;
To Be Posted.&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage ActiveProtection =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
Hadaps is still broken in Jaunty and I could not get any workarounds to function, maybe in 9.10?&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Disable Bluetooth on Startup =&lt;br /&gt;
These instructions will disable the bluetooth radio being activated during the boot. The radio can then be activated at the users discretion using Fn F5 (Radio Fn Button).&lt;br /&gt;
&lt;br /&gt;
edit /etc/rc.local and add:&lt;br /&gt;
&lt;br /&gt;
 chmod 666 /proc/acpi/ibm/bluetooth &lt;br /&gt;
 echo &amp;quot;disable&amp;quot; &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
&lt;br /&gt;
before the exit0 line&lt;br /&gt;
&lt;br /&gt;
*note chmod 666 makes this file editable by everyone, this may compromise security, try different settings to find the one that suits your needs (655 may work)&lt;br /&gt;
&lt;br /&gt;
*note proc is depreciated and may not work in future releases&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Enable Laptop Mode =&lt;br /&gt;
Laptop mode is a power saving tool that allows the hard drive to spin down to conserve battery power. This is disabled by default as it has been known to cause problems on some computers, but it appears to work on the X61t.&lt;br /&gt;
&lt;br /&gt;
*Warning: Laptop mode stores data in ram teporarily until it needs to write to disk. Power Loss in laptop mode could lead to significant data loss.&lt;br /&gt;
&lt;br /&gt;
*Warning: Excessive spin-up spin-down cycles will wear out your hard drive much more quickly than normal use. Be careful when configuring laptop mode settings.  &lt;br /&gt;
&lt;br /&gt;
*Warning: Do Not Use Laptop Mode if you have a SSD. It is for platter drives only.&lt;br /&gt;
&lt;br /&gt;
Edit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
Set: &amp;quot;ENABLE_LAPTOP_MODE=true&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure Laptop Mode&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/laptop-mode/laptop-mode.conf&lt;br /&gt;
&lt;br /&gt;
= Sources =&lt;br /&gt;
The above is a compilation of my notes from when I installed Jaunty on my X61t. The code and many of the instructions come from various pages and sources around the Internet. I will attempt to document them when time permits. If you see anything that should be added or wish to cite a source I missed, please edit the page.&lt;/div&gt;</summary>
		<author><name>Mbeichorn</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43266</id>
		<title>Installing Ubuntu 9.04 (Jaunty Jackalope) on an X61 Tablet</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43266"/>
		<updated>2009-05-24T21:43:41Z</updated>

		<summary type="html">&lt;p&gt;Mbeichorn: /* Fixing the Tablet Toolbox Button */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction =&lt;br /&gt;
&lt;br /&gt;
This page covers the additional hardware setup required after installing Ubuntu 9.04 Jaunty to make the Thinkpad X61 Tablet Fully Functional. All directions are given in the HAL, fdi, and acpi thus avoiding the xorg.conf file completely.&lt;br /&gt;
&lt;br /&gt;
=== What Works ===&lt;br /&gt;
Forward / Back Buttons,&lt;br /&gt;
Audio Buttons,&lt;br /&gt;
Brightness Fn Buttons,&lt;br /&gt;
Radio Fn Button,&lt;br /&gt;
Suspend Fn Button,&lt;br /&gt;
Power Fn Button,&lt;br /&gt;
Lock Fn Button,&lt;br /&gt;
Hibernate Fn Button,&lt;br /&gt;
Tablet L/R/U/D Buttons,&lt;br /&gt;
Tablet Enter Button,&lt;br /&gt;
Tablet Esc Button,&lt;br /&gt;
Media Fn Buttons&lt;br /&gt;
NumberLock Fn Button,&lt;br /&gt;
Tablet Pen,&lt;br /&gt;
Wireless Radio,&lt;br /&gt;
Bluetooth Radio,&lt;br /&gt;
&lt;br /&gt;
=== What Almost Works ===&lt;br /&gt;
Tablet Toolbox Button -  causes lock or suspend,&lt;br /&gt;
Tablet Touch – Requires Calibration,&lt;br /&gt;
&lt;br /&gt;
=== What Does Not Work ===&lt;br /&gt;
Tablet Control-Alt-Delete Button,&lt;br /&gt;
Tablet Rotate Button,&lt;br /&gt;
Middle Mouse Button,&lt;br /&gt;
ThinkVantage Button,&lt;br /&gt;
Magnify Fn Button,&lt;br /&gt;
Fingerprint Reader,&lt;br /&gt;
Automatic Screen Rotation,&lt;br /&gt;
ThinkVantage ActiveProtection,&lt;br /&gt;
&lt;br /&gt;
= Fixing Touch =&lt;br /&gt;
Works out of the box, just needs some calibration.&lt;br /&gt;
&lt;br /&gt;
== Wacomcpl ==&lt;br /&gt;
The Wacom Tablet in the X61t is a serial Wacom tablet. It can be configured by using wacomcpl. Wacomcpl is part of the wacom-tools package and can be retrieved in apt:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install wacom-tools&lt;br /&gt;
&lt;br /&gt;
After this wacomcpl can be run by typing:&lt;br /&gt;
&lt;br /&gt;
 wacomcpl&lt;br /&gt;
&lt;br /&gt;
in Terminal.&lt;br /&gt;
&lt;br /&gt;
=== Helping wacomcpl ===&lt;br /&gt;
Unfortunately HAL assigns names to wacom devices in a way that the recent wacomcpl from jaunty cant find them, to help wacomcpl to find them:&lt;br /&gt;
&lt;br /&gt;
Open a terminal and type :&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/init.d/wacomtohal&lt;br /&gt;
&lt;br /&gt;
and paste this code in:&lt;br /&gt;
&lt;br /&gt;
 #! /bin/sh&lt;br /&gt;
 ## find any wacom devices&lt;br /&gt;
 for udi in `hal-find-by-property --key input.x11_driver --string wacom`&lt;br /&gt;
 do&lt;br /&gt;
 type=`hal-get-property --udi $udi --key input.x11_options.Type`&lt;br /&gt;
 ## rewrite the names that the Xserver will use&lt;br /&gt;
 hal-set-property --udi $udi --key info.product --string $type&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
then run :&lt;br /&gt;
&lt;br /&gt;
 sudo chmod +x /etc/init.d/wacomtohal&lt;br /&gt;
 sudo update-rc.d wacomtohal defaults 27&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now reboot and launch wacomcpl&lt;br /&gt;
&lt;br /&gt;
=== Making Wacomcpl Settings Restore on Reboot ===&lt;br /&gt;
If you lose your calibration after reboot:&lt;br /&gt;
&lt;br /&gt;
In terminal: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit ~/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Find the line that says:&lt;br /&gt;
&lt;br /&gt;
 . /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
and change it to&lt;br /&gt;
&lt;br /&gt;
 #. /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
Save and exit.&lt;br /&gt;
&lt;br /&gt;
Go to System&amp;gt;Preferences&amp;gt;Startup Applications and create a new entry named whatever you want.&lt;br /&gt;
&lt;br /&gt;
The command should be:&lt;br /&gt;
&lt;br /&gt;
 sh /home/yourusername/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Your wacomcpl settings will now restore on reboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Fixing the Tablet Toolbox Button =&lt;br /&gt;
This key needs to be set to a keycode pick any empty one (241 is usually)&lt;br /&gt;
&lt;br /&gt;
sudo setkeycodes 68 241&lt;br /&gt;
&lt;br /&gt;
Now you can bind this key to any command.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Control-Alt-Delete Button =&lt;br /&gt;
This key needs to be set to a keycode pick any empty one (242 is usually)&lt;br /&gt;
&lt;br /&gt;
 sudo setkeycodes 67 242&lt;br /&gt;
&lt;br /&gt;
Now you can bind this key to any command.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Rotate Button =&lt;br /&gt;
This key needs to be set to a keycode pick any empty one (240 is usually)&lt;br /&gt;
&lt;br /&gt;
 sudo setkeycodes 6c 240&lt;br /&gt;
&lt;br /&gt;
Now you can bind this key to any command. (It should be possible to write a script to interact with the autorotate given on this page)&lt;br /&gt;
&lt;br /&gt;
= Setup the Middle Button Scrolling =&lt;br /&gt;
&lt;br /&gt;
Create a new file called /etc/hal/fdi/policy/mouse-wheel.fdi typing: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/hal/fdi/policy/mouse-wheel.fdi&lt;br /&gt;
&lt;br /&gt;
And fill it with this code: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
  &amp;lt;match key=&amp;quot;info.product&amp;quot; string=&amp;quot;TPPS/2 IBM TrackPoint&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheel&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheelButton&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;2&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.XAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;6 7&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.YAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.ZAxsisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.Emulate3Buttons&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
 &amp;lt;/match&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reboot&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage Button =&lt;br /&gt;
The ThinkVantage button does not work only in that it is not bound to anything. To bind it go to System&amp;gt;Preferences&amp;gt;Keyboard Shortcuts and set it to perform any command.&lt;br /&gt;
&lt;br /&gt;
= Setup Magnify Fn Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup Fingerprint Reader =&lt;br /&gt;
&lt;br /&gt;
The Thinkfinger driver works fine on the X61. The following is the paraphrased commands from the installing thinkfinger page that are relevant to the X61 and Ubuntu 9.04.&lt;br /&gt;
&lt;br /&gt;
In terminal, add a key:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com F2A12FABE936A7BBDC4EA33351DB180D1323E149&lt;br /&gt;
&lt;br /&gt;
Add the PPA repositories to your source.list (/etc/apt/source.list):&lt;br /&gt;
&lt;br /&gt;
 deb http://ppa.launchpad.net/jon-oberheide/ppa/ubuntu jaunty main&lt;br /&gt;
 deb-src http://ppa.launchpad.net/jon-oberheide/ppa/ubuntu jaunty main&lt;br /&gt;
&lt;br /&gt;
Update installer:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get update&lt;br /&gt;
&lt;br /&gt;
And install:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install thinkfinger-tools libpam-thinkfinger&lt;br /&gt;
&lt;br /&gt;
Now the driver is installed and should be working. You can try it (as root) with &lt;br /&gt;
&lt;br /&gt;
 sudo tf-tool --acquire &lt;br /&gt;
&lt;br /&gt;
and &lt;br /&gt;
&lt;br /&gt;
 sudo tf-tool --verify &lt;br /&gt;
&lt;br /&gt;
This will ask you to swipe your finger three times, save the fingerprint to /tmp/test.bir and then verify your fingerprint with the bir-file. &lt;br /&gt;
&lt;br /&gt;
Setup Pam:&lt;br /&gt;
&lt;br /&gt;
 sudo /usr/lib/pam-thinkfinger/pam-thinkfinger-enable&lt;br /&gt;
&lt;br /&gt;
Add user:&lt;br /&gt;
&lt;br /&gt;
 tf-tool --acquire $USERNAME&lt;br /&gt;
&lt;br /&gt;
Optional: Change the login screen to allow keyboard-less login:&lt;br /&gt;
&lt;br /&gt;
Go to: System&amp;gt;Administration&amp;gt;Login Window&lt;br /&gt;
&lt;br /&gt;
Click on the 'Local' tab.&lt;br /&gt;
&lt;br /&gt;
Set the drop-down boxes to: 'Themed with face browser' and 'Selected Only' and choose 'Human List' from the list of logins.&lt;br /&gt;
&lt;br /&gt;
Note: it may take some time for the reader to startup, give it 5 seconds before use and before pressing enter to initiate login.&lt;br /&gt;
&lt;br /&gt;
= Setup Automatic Screen Rotation =&lt;br /&gt;
To Be Posted.&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage ActiveProtection =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Disable Bluetooth on Startup =&lt;br /&gt;
These instructions will disable the bluetooth radio being activated during the boot. The radio can then be activated at the users discretion using Fn F5 (Radio Fn Button).&lt;br /&gt;
&lt;br /&gt;
edit /etc/rc.local and add:&lt;br /&gt;
&lt;br /&gt;
 chmod 666 /proc/acpi/ibm/bluetooth &lt;br /&gt;
 echo &amp;quot;disable&amp;quot; &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
&lt;br /&gt;
before the exit0 line&lt;br /&gt;
&lt;br /&gt;
*note chmod 666 makes this file editable by everyone, this may compromise security, try different settings to find the one that suits your needs (655 may work)&lt;br /&gt;
&lt;br /&gt;
*note proc is depreciated and may not work in future releases&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Enable Laptop Mode =&lt;br /&gt;
Laptop mode is a power saving tool that allows the hard drive to spin down to conserve battery power. This is disabled by default as it has been known to cause problems on some computers, but it appears to work on the X61t.&lt;br /&gt;
&lt;br /&gt;
*Warning: Laptop mode stores data in ram teporarily until it needs to write to disk. Power Loss in laptop mode could lead to significant data loss.&lt;br /&gt;
&lt;br /&gt;
*Warning: Excessive spin-up spin-down cycles will wear out your hard drive much more quickly than normal use. Be careful when configuring laptop mode settings.  &lt;br /&gt;
&lt;br /&gt;
*Warning: Do Not Use Laptop Mode if you have a SSD. It is for platter drives only.&lt;br /&gt;
&lt;br /&gt;
Edit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
Set: &amp;quot;ENABLE_LAPTOP_MODE=true&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure Laptop Mode&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/laptop-mode/laptop-mode.conf&lt;br /&gt;
&lt;br /&gt;
= Sources =&lt;br /&gt;
The above is a compilation of my notes from when I installed Jaunty on my X61t. The code and many of the instructions come from various pages and sources around the Internet. I will attempt to document them when time permits. If you see anything that should be added or wish to cite a source I missed, please edit the page.&lt;/div&gt;</summary>
		<author><name>Mbeichorn</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43265</id>
		<title>Installing Ubuntu 9.04 (Jaunty Jackalope) on an X61 Tablet</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43265"/>
		<updated>2009-05-24T21:42:52Z</updated>

		<summary type="html">&lt;p&gt;Mbeichorn: /* Setup the Tablet Control-Alt-Delete Button */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction =&lt;br /&gt;
&lt;br /&gt;
This page covers the additional hardware setup required after installing Ubuntu 9.04 Jaunty to make the Thinkpad X61 Tablet Fully Functional. All directions are given in the HAL, fdi, and acpi thus avoiding the xorg.conf file completely.&lt;br /&gt;
&lt;br /&gt;
=== What Works ===&lt;br /&gt;
Forward / Back Buttons,&lt;br /&gt;
Audio Buttons,&lt;br /&gt;
Brightness Fn Buttons,&lt;br /&gt;
Radio Fn Button,&lt;br /&gt;
Suspend Fn Button,&lt;br /&gt;
Power Fn Button,&lt;br /&gt;
Lock Fn Button,&lt;br /&gt;
Hibernate Fn Button,&lt;br /&gt;
Tablet L/R/U/D Buttons,&lt;br /&gt;
Tablet Enter Button,&lt;br /&gt;
Tablet Esc Button,&lt;br /&gt;
Media Fn Buttons&lt;br /&gt;
NumberLock Fn Button,&lt;br /&gt;
Tablet Pen,&lt;br /&gt;
Wireless Radio,&lt;br /&gt;
Bluetooth Radio,&lt;br /&gt;
&lt;br /&gt;
=== What Almost Works ===&lt;br /&gt;
Tablet Toolbox Button -  causes lock or suspend,&lt;br /&gt;
Tablet Touch – Requires Calibration,&lt;br /&gt;
&lt;br /&gt;
=== What Does Not Work ===&lt;br /&gt;
Tablet Control-Alt-Delete Button,&lt;br /&gt;
Tablet Rotate Button,&lt;br /&gt;
Middle Mouse Button,&lt;br /&gt;
ThinkVantage Button,&lt;br /&gt;
Magnify Fn Button,&lt;br /&gt;
Fingerprint Reader,&lt;br /&gt;
Automatic Screen Rotation,&lt;br /&gt;
ThinkVantage ActiveProtection,&lt;br /&gt;
&lt;br /&gt;
= Fixing Touch =&lt;br /&gt;
Works out of the box, just needs some calibration.&lt;br /&gt;
&lt;br /&gt;
== Wacomcpl ==&lt;br /&gt;
The Wacom Tablet in the X61t is a serial Wacom tablet. It can be configured by using wacomcpl. Wacomcpl is part of the wacom-tools package and can be retrieved in apt:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install wacom-tools&lt;br /&gt;
&lt;br /&gt;
After this wacomcpl can be run by typing:&lt;br /&gt;
&lt;br /&gt;
 wacomcpl&lt;br /&gt;
&lt;br /&gt;
in Terminal.&lt;br /&gt;
&lt;br /&gt;
=== Helping wacomcpl ===&lt;br /&gt;
Unfortunately HAL assigns names to wacom devices in a way that the recent wacomcpl from jaunty cant find them, to help wacomcpl to find them:&lt;br /&gt;
&lt;br /&gt;
Open a terminal and type :&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/init.d/wacomtohal&lt;br /&gt;
&lt;br /&gt;
and paste this code in:&lt;br /&gt;
&lt;br /&gt;
 #! /bin/sh&lt;br /&gt;
 ## find any wacom devices&lt;br /&gt;
 for udi in `hal-find-by-property --key input.x11_driver --string wacom`&lt;br /&gt;
 do&lt;br /&gt;
 type=`hal-get-property --udi $udi --key input.x11_options.Type`&lt;br /&gt;
 ## rewrite the names that the Xserver will use&lt;br /&gt;
 hal-set-property --udi $udi --key info.product --string $type&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
then run :&lt;br /&gt;
&lt;br /&gt;
 sudo chmod +x /etc/init.d/wacomtohal&lt;br /&gt;
 sudo update-rc.d wacomtohal defaults 27&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now reboot and launch wacomcpl&lt;br /&gt;
&lt;br /&gt;
=== Making Wacomcpl Settings Restore on Reboot ===&lt;br /&gt;
If you lose your calibration after reboot:&lt;br /&gt;
&lt;br /&gt;
In terminal: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit ~/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Find the line that says:&lt;br /&gt;
&lt;br /&gt;
 . /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
and change it to&lt;br /&gt;
&lt;br /&gt;
 #. /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
Save and exit.&lt;br /&gt;
&lt;br /&gt;
Go to System&amp;gt;Preferences&amp;gt;Startup Applications and create a new entry named whatever you want.&lt;br /&gt;
&lt;br /&gt;
The command should be:&lt;br /&gt;
&lt;br /&gt;
 sh /home/yourusername/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Your wacomcpl settings will now restore on reboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Fixing the Tablet Toolbox Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Control-Alt-Delete Button =&lt;br /&gt;
This key needs to be set to a keycode pick any empty one (242 is usually)&lt;br /&gt;
&lt;br /&gt;
 sudo setkeycodes 67 242&lt;br /&gt;
&lt;br /&gt;
Now you can bind this key to any command.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Rotate Button =&lt;br /&gt;
This key needs to be set to a keycode pick any empty one (240 is usually)&lt;br /&gt;
&lt;br /&gt;
 sudo setkeycodes 6c 240&lt;br /&gt;
&lt;br /&gt;
Now you can bind this key to any command. (It should be possible to write a script to interact with the autorotate given on this page)&lt;br /&gt;
&lt;br /&gt;
= Setup the Middle Button Scrolling =&lt;br /&gt;
&lt;br /&gt;
Create a new file called /etc/hal/fdi/policy/mouse-wheel.fdi typing: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/hal/fdi/policy/mouse-wheel.fdi&lt;br /&gt;
&lt;br /&gt;
And fill it with this code: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
  &amp;lt;match key=&amp;quot;info.product&amp;quot; string=&amp;quot;TPPS/2 IBM TrackPoint&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheel&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheelButton&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;2&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.XAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;6 7&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.YAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.ZAxsisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.Emulate3Buttons&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
 &amp;lt;/match&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reboot&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage Button =&lt;br /&gt;
The ThinkVantage button does not work only in that it is not bound to anything. To bind it go to System&amp;gt;Preferences&amp;gt;Keyboard Shortcuts and set it to perform any command.&lt;br /&gt;
&lt;br /&gt;
= Setup Magnify Fn Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup Fingerprint Reader =&lt;br /&gt;
&lt;br /&gt;
The Thinkfinger driver works fine on the X61. The following is the paraphrased commands from the installing thinkfinger page that are relevant to the X61 and Ubuntu 9.04.&lt;br /&gt;
&lt;br /&gt;
In terminal, add a key:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com F2A12FABE936A7BBDC4EA33351DB180D1323E149&lt;br /&gt;
&lt;br /&gt;
Add the PPA repositories to your source.list (/etc/apt/source.list):&lt;br /&gt;
&lt;br /&gt;
 deb http://ppa.launchpad.net/jon-oberheide/ppa/ubuntu jaunty main&lt;br /&gt;
 deb-src http://ppa.launchpad.net/jon-oberheide/ppa/ubuntu jaunty main&lt;br /&gt;
&lt;br /&gt;
Update installer:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get update&lt;br /&gt;
&lt;br /&gt;
And install:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install thinkfinger-tools libpam-thinkfinger&lt;br /&gt;
&lt;br /&gt;
Now the driver is installed and should be working. You can try it (as root) with &lt;br /&gt;
&lt;br /&gt;
 sudo tf-tool --acquire &lt;br /&gt;
&lt;br /&gt;
and &lt;br /&gt;
&lt;br /&gt;
 sudo tf-tool --verify &lt;br /&gt;
&lt;br /&gt;
This will ask you to swipe your finger three times, save the fingerprint to /tmp/test.bir and then verify your fingerprint with the bir-file. &lt;br /&gt;
&lt;br /&gt;
Setup Pam:&lt;br /&gt;
&lt;br /&gt;
 sudo /usr/lib/pam-thinkfinger/pam-thinkfinger-enable&lt;br /&gt;
&lt;br /&gt;
Add user:&lt;br /&gt;
&lt;br /&gt;
 tf-tool --acquire $USERNAME&lt;br /&gt;
&lt;br /&gt;
Optional: Change the login screen to allow keyboard-less login:&lt;br /&gt;
&lt;br /&gt;
Go to: System&amp;gt;Administration&amp;gt;Login Window&lt;br /&gt;
&lt;br /&gt;
Click on the 'Local' tab.&lt;br /&gt;
&lt;br /&gt;
Set the drop-down boxes to: 'Themed with face browser' and 'Selected Only' and choose 'Human List' from the list of logins.&lt;br /&gt;
&lt;br /&gt;
Note: it may take some time for the reader to startup, give it 5 seconds before use and before pressing enter to initiate login.&lt;br /&gt;
&lt;br /&gt;
= Setup Automatic Screen Rotation =&lt;br /&gt;
To Be Posted.&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage ActiveProtection =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Disable Bluetooth on Startup =&lt;br /&gt;
These instructions will disable the bluetooth radio being activated during the boot. The radio can then be activated at the users discretion using Fn F5 (Radio Fn Button).&lt;br /&gt;
&lt;br /&gt;
edit /etc/rc.local and add:&lt;br /&gt;
&lt;br /&gt;
 chmod 666 /proc/acpi/ibm/bluetooth &lt;br /&gt;
 echo &amp;quot;disable&amp;quot; &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
&lt;br /&gt;
before the exit0 line&lt;br /&gt;
&lt;br /&gt;
*note chmod 666 makes this file editable by everyone, this may compromise security, try different settings to find the one that suits your needs (655 may work)&lt;br /&gt;
&lt;br /&gt;
*note proc is depreciated and may not work in future releases&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Enable Laptop Mode =&lt;br /&gt;
Laptop mode is a power saving tool that allows the hard drive to spin down to conserve battery power. This is disabled by default as it has been known to cause problems on some computers, but it appears to work on the X61t.&lt;br /&gt;
&lt;br /&gt;
*Warning: Laptop mode stores data in ram teporarily until it needs to write to disk. Power Loss in laptop mode could lead to significant data loss.&lt;br /&gt;
&lt;br /&gt;
*Warning: Excessive spin-up spin-down cycles will wear out your hard drive much more quickly than normal use. Be careful when configuring laptop mode settings.  &lt;br /&gt;
&lt;br /&gt;
*Warning: Do Not Use Laptop Mode if you have a SSD. It is for platter drives only.&lt;br /&gt;
&lt;br /&gt;
Edit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
Set: &amp;quot;ENABLE_LAPTOP_MODE=true&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure Laptop Mode&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/laptop-mode/laptop-mode.conf&lt;br /&gt;
&lt;br /&gt;
= Sources =&lt;br /&gt;
The above is a compilation of my notes from when I installed Jaunty on my X61t. The code and many of the instructions come from various pages and sources around the Internet. I will attempt to document them when time permits. If you see anything that should be added or wish to cite a source I missed, please edit the page.&lt;/div&gt;</summary>
		<author><name>Mbeichorn</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43264</id>
		<title>Installing Ubuntu 9.04 (Jaunty Jackalope) on an X61 Tablet</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43264"/>
		<updated>2009-05-24T21:42:30Z</updated>

		<summary type="html">&lt;p&gt;Mbeichorn: /* Setup the Tablet Control-Alt-Delete Button */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction =&lt;br /&gt;
&lt;br /&gt;
This page covers the additional hardware setup required after installing Ubuntu 9.04 Jaunty to make the Thinkpad X61 Tablet Fully Functional. All directions are given in the HAL, fdi, and acpi thus avoiding the xorg.conf file completely.&lt;br /&gt;
&lt;br /&gt;
=== What Works ===&lt;br /&gt;
Forward / Back Buttons,&lt;br /&gt;
Audio Buttons,&lt;br /&gt;
Brightness Fn Buttons,&lt;br /&gt;
Radio Fn Button,&lt;br /&gt;
Suspend Fn Button,&lt;br /&gt;
Power Fn Button,&lt;br /&gt;
Lock Fn Button,&lt;br /&gt;
Hibernate Fn Button,&lt;br /&gt;
Tablet L/R/U/D Buttons,&lt;br /&gt;
Tablet Enter Button,&lt;br /&gt;
Tablet Esc Button,&lt;br /&gt;
Media Fn Buttons&lt;br /&gt;
NumberLock Fn Button,&lt;br /&gt;
Tablet Pen,&lt;br /&gt;
Wireless Radio,&lt;br /&gt;
Bluetooth Radio,&lt;br /&gt;
&lt;br /&gt;
=== What Almost Works ===&lt;br /&gt;
Tablet Toolbox Button -  causes lock or suspend,&lt;br /&gt;
Tablet Touch – Requires Calibration,&lt;br /&gt;
&lt;br /&gt;
=== What Does Not Work ===&lt;br /&gt;
Tablet Control-Alt-Delete Button,&lt;br /&gt;
Tablet Rotate Button,&lt;br /&gt;
Middle Mouse Button,&lt;br /&gt;
ThinkVantage Button,&lt;br /&gt;
Magnify Fn Button,&lt;br /&gt;
Fingerprint Reader,&lt;br /&gt;
Automatic Screen Rotation,&lt;br /&gt;
ThinkVantage ActiveProtection,&lt;br /&gt;
&lt;br /&gt;
= Fixing Touch =&lt;br /&gt;
Works out of the box, just needs some calibration.&lt;br /&gt;
&lt;br /&gt;
== Wacomcpl ==&lt;br /&gt;
The Wacom Tablet in the X61t is a serial Wacom tablet. It can be configured by using wacomcpl. Wacomcpl is part of the wacom-tools package and can be retrieved in apt:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install wacom-tools&lt;br /&gt;
&lt;br /&gt;
After this wacomcpl can be run by typing:&lt;br /&gt;
&lt;br /&gt;
 wacomcpl&lt;br /&gt;
&lt;br /&gt;
in Terminal.&lt;br /&gt;
&lt;br /&gt;
=== Helping wacomcpl ===&lt;br /&gt;
Unfortunately HAL assigns names to wacom devices in a way that the recent wacomcpl from jaunty cant find them, to help wacomcpl to find them:&lt;br /&gt;
&lt;br /&gt;
Open a terminal and type :&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/init.d/wacomtohal&lt;br /&gt;
&lt;br /&gt;
and paste this code in:&lt;br /&gt;
&lt;br /&gt;
 #! /bin/sh&lt;br /&gt;
 ## find any wacom devices&lt;br /&gt;
 for udi in `hal-find-by-property --key input.x11_driver --string wacom`&lt;br /&gt;
 do&lt;br /&gt;
 type=`hal-get-property --udi $udi --key input.x11_options.Type`&lt;br /&gt;
 ## rewrite the names that the Xserver will use&lt;br /&gt;
 hal-set-property --udi $udi --key info.product --string $type&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
then run :&lt;br /&gt;
&lt;br /&gt;
 sudo chmod +x /etc/init.d/wacomtohal&lt;br /&gt;
 sudo update-rc.d wacomtohal defaults 27&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now reboot and launch wacomcpl&lt;br /&gt;
&lt;br /&gt;
=== Making Wacomcpl Settings Restore on Reboot ===&lt;br /&gt;
If you lose your calibration after reboot:&lt;br /&gt;
&lt;br /&gt;
In terminal: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit ~/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Find the line that says:&lt;br /&gt;
&lt;br /&gt;
 . /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
and change it to&lt;br /&gt;
&lt;br /&gt;
 #. /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
Save and exit.&lt;br /&gt;
&lt;br /&gt;
Go to System&amp;gt;Preferences&amp;gt;Startup Applications and create a new entry named whatever you want.&lt;br /&gt;
&lt;br /&gt;
The command should be:&lt;br /&gt;
&lt;br /&gt;
 sh /home/yourusername/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Your wacomcpl settings will now restore on reboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Fixing the Tablet Toolbox Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Control-Alt-Delete Button =&lt;br /&gt;
This key needs to be set to a keycode pick any empty one (242 is usually)&lt;br /&gt;
&lt;br /&gt;
sudo setkeycodes 67 242&lt;br /&gt;
&lt;br /&gt;
Now you can bind this key to any command.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Rotate Button =&lt;br /&gt;
This key needs to be set to a keycode pick any empty one (240 is usually)&lt;br /&gt;
&lt;br /&gt;
 sudo setkeycodes 6c 240&lt;br /&gt;
&lt;br /&gt;
Now you can bind this key to any command. (It should be possible to write a script to interact with the autorotate given on this page)&lt;br /&gt;
&lt;br /&gt;
= Setup the Middle Button Scrolling =&lt;br /&gt;
&lt;br /&gt;
Create a new file called /etc/hal/fdi/policy/mouse-wheel.fdi typing: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/hal/fdi/policy/mouse-wheel.fdi&lt;br /&gt;
&lt;br /&gt;
And fill it with this code: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
  &amp;lt;match key=&amp;quot;info.product&amp;quot; string=&amp;quot;TPPS/2 IBM TrackPoint&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheel&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheelButton&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;2&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.XAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;6 7&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.YAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.ZAxsisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.Emulate3Buttons&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
 &amp;lt;/match&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reboot&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage Button =&lt;br /&gt;
The ThinkVantage button does not work only in that it is not bound to anything. To bind it go to System&amp;gt;Preferences&amp;gt;Keyboard Shortcuts and set it to perform any command.&lt;br /&gt;
&lt;br /&gt;
= Setup Magnify Fn Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup Fingerprint Reader =&lt;br /&gt;
&lt;br /&gt;
The Thinkfinger driver works fine on the X61. The following is the paraphrased commands from the installing thinkfinger page that are relevant to the X61 and Ubuntu 9.04.&lt;br /&gt;
&lt;br /&gt;
In terminal, add a key:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com F2A12FABE936A7BBDC4EA33351DB180D1323E149&lt;br /&gt;
&lt;br /&gt;
Add the PPA repositories to your source.list (/etc/apt/source.list):&lt;br /&gt;
&lt;br /&gt;
 deb http://ppa.launchpad.net/jon-oberheide/ppa/ubuntu jaunty main&lt;br /&gt;
 deb-src http://ppa.launchpad.net/jon-oberheide/ppa/ubuntu jaunty main&lt;br /&gt;
&lt;br /&gt;
Update installer:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get update&lt;br /&gt;
&lt;br /&gt;
And install:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install thinkfinger-tools libpam-thinkfinger&lt;br /&gt;
&lt;br /&gt;
Now the driver is installed and should be working. You can try it (as root) with &lt;br /&gt;
&lt;br /&gt;
 sudo tf-tool --acquire &lt;br /&gt;
&lt;br /&gt;
and &lt;br /&gt;
&lt;br /&gt;
 sudo tf-tool --verify &lt;br /&gt;
&lt;br /&gt;
This will ask you to swipe your finger three times, save the fingerprint to /tmp/test.bir and then verify your fingerprint with the bir-file. &lt;br /&gt;
&lt;br /&gt;
Setup Pam:&lt;br /&gt;
&lt;br /&gt;
 sudo /usr/lib/pam-thinkfinger/pam-thinkfinger-enable&lt;br /&gt;
&lt;br /&gt;
Add user:&lt;br /&gt;
&lt;br /&gt;
 tf-tool --acquire $USERNAME&lt;br /&gt;
&lt;br /&gt;
Optional: Change the login screen to allow keyboard-less login:&lt;br /&gt;
&lt;br /&gt;
Go to: System&amp;gt;Administration&amp;gt;Login Window&lt;br /&gt;
&lt;br /&gt;
Click on the 'Local' tab.&lt;br /&gt;
&lt;br /&gt;
Set the drop-down boxes to: 'Themed with face browser' and 'Selected Only' and choose 'Human List' from the list of logins.&lt;br /&gt;
&lt;br /&gt;
Note: it may take some time for the reader to startup, give it 5 seconds before use and before pressing enter to initiate login.&lt;br /&gt;
&lt;br /&gt;
= Setup Automatic Screen Rotation =&lt;br /&gt;
To Be Posted.&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage ActiveProtection =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Disable Bluetooth on Startup =&lt;br /&gt;
These instructions will disable the bluetooth radio being activated during the boot. The radio can then be activated at the users discretion using Fn F5 (Radio Fn Button).&lt;br /&gt;
&lt;br /&gt;
edit /etc/rc.local and add:&lt;br /&gt;
&lt;br /&gt;
 chmod 666 /proc/acpi/ibm/bluetooth &lt;br /&gt;
 echo &amp;quot;disable&amp;quot; &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
&lt;br /&gt;
before the exit0 line&lt;br /&gt;
&lt;br /&gt;
*note chmod 666 makes this file editable by everyone, this may compromise security, try different settings to find the one that suits your needs (655 may work)&lt;br /&gt;
&lt;br /&gt;
*note proc is depreciated and may not work in future releases&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Enable Laptop Mode =&lt;br /&gt;
Laptop mode is a power saving tool that allows the hard drive to spin down to conserve battery power. This is disabled by default as it has been known to cause problems on some computers, but it appears to work on the X61t.&lt;br /&gt;
&lt;br /&gt;
*Warning: Laptop mode stores data in ram teporarily until it needs to write to disk. Power Loss in laptop mode could lead to significant data loss.&lt;br /&gt;
&lt;br /&gt;
*Warning: Excessive spin-up spin-down cycles will wear out your hard drive much more quickly than normal use. Be careful when configuring laptop mode settings.  &lt;br /&gt;
&lt;br /&gt;
*Warning: Do Not Use Laptop Mode if you have a SSD. It is for platter drives only.&lt;br /&gt;
&lt;br /&gt;
Edit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
Set: &amp;quot;ENABLE_LAPTOP_MODE=true&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure Laptop Mode&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/laptop-mode/laptop-mode.conf&lt;br /&gt;
&lt;br /&gt;
= Sources =&lt;br /&gt;
The above is a compilation of my notes from when I installed Jaunty on my X61t. The code and many of the instructions come from various pages and sources around the Internet. I will attempt to document them when time permits. If you see anything that should be added or wish to cite a source I missed, please edit the page.&lt;/div&gt;</summary>
		<author><name>Mbeichorn</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43263</id>
		<title>Installing Ubuntu 9.04 (Jaunty Jackalope) on an X61 Tablet</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43263"/>
		<updated>2009-05-24T21:41:29Z</updated>

		<summary type="html">&lt;p&gt;Mbeichorn: /* Setup the Tablet Rotate Button */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction =&lt;br /&gt;
&lt;br /&gt;
This page covers the additional hardware setup required after installing Ubuntu 9.04 Jaunty to make the Thinkpad X61 Tablet Fully Functional. All directions are given in the HAL, fdi, and acpi thus avoiding the xorg.conf file completely.&lt;br /&gt;
&lt;br /&gt;
=== What Works ===&lt;br /&gt;
Forward / Back Buttons,&lt;br /&gt;
Audio Buttons,&lt;br /&gt;
Brightness Fn Buttons,&lt;br /&gt;
Radio Fn Button,&lt;br /&gt;
Suspend Fn Button,&lt;br /&gt;
Power Fn Button,&lt;br /&gt;
Lock Fn Button,&lt;br /&gt;
Hibernate Fn Button,&lt;br /&gt;
Tablet L/R/U/D Buttons,&lt;br /&gt;
Tablet Enter Button,&lt;br /&gt;
Tablet Esc Button,&lt;br /&gt;
Media Fn Buttons&lt;br /&gt;
NumberLock Fn Button,&lt;br /&gt;
Tablet Pen,&lt;br /&gt;
Wireless Radio,&lt;br /&gt;
Bluetooth Radio,&lt;br /&gt;
&lt;br /&gt;
=== What Almost Works ===&lt;br /&gt;
Tablet Toolbox Button -  causes lock or suspend,&lt;br /&gt;
Tablet Touch – Requires Calibration,&lt;br /&gt;
&lt;br /&gt;
=== What Does Not Work ===&lt;br /&gt;
Tablet Control-Alt-Delete Button,&lt;br /&gt;
Tablet Rotate Button,&lt;br /&gt;
Middle Mouse Button,&lt;br /&gt;
ThinkVantage Button,&lt;br /&gt;
Magnify Fn Button,&lt;br /&gt;
Fingerprint Reader,&lt;br /&gt;
Automatic Screen Rotation,&lt;br /&gt;
ThinkVantage ActiveProtection,&lt;br /&gt;
&lt;br /&gt;
= Fixing Touch =&lt;br /&gt;
Works out of the box, just needs some calibration.&lt;br /&gt;
&lt;br /&gt;
== Wacomcpl ==&lt;br /&gt;
The Wacom Tablet in the X61t is a serial Wacom tablet. It can be configured by using wacomcpl. Wacomcpl is part of the wacom-tools package and can be retrieved in apt:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install wacom-tools&lt;br /&gt;
&lt;br /&gt;
After this wacomcpl can be run by typing:&lt;br /&gt;
&lt;br /&gt;
 wacomcpl&lt;br /&gt;
&lt;br /&gt;
in Terminal.&lt;br /&gt;
&lt;br /&gt;
=== Helping wacomcpl ===&lt;br /&gt;
Unfortunately HAL assigns names to wacom devices in a way that the recent wacomcpl from jaunty cant find them, to help wacomcpl to find them:&lt;br /&gt;
&lt;br /&gt;
Open a terminal and type :&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/init.d/wacomtohal&lt;br /&gt;
&lt;br /&gt;
and paste this code in:&lt;br /&gt;
&lt;br /&gt;
 #! /bin/sh&lt;br /&gt;
 ## find any wacom devices&lt;br /&gt;
 for udi in `hal-find-by-property --key input.x11_driver --string wacom`&lt;br /&gt;
 do&lt;br /&gt;
 type=`hal-get-property --udi $udi --key input.x11_options.Type`&lt;br /&gt;
 ## rewrite the names that the Xserver will use&lt;br /&gt;
 hal-set-property --udi $udi --key info.product --string $type&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
then run :&lt;br /&gt;
&lt;br /&gt;
 sudo chmod +x /etc/init.d/wacomtohal&lt;br /&gt;
 sudo update-rc.d wacomtohal defaults 27&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now reboot and launch wacomcpl&lt;br /&gt;
&lt;br /&gt;
=== Making Wacomcpl Settings Restore on Reboot ===&lt;br /&gt;
If you lose your calibration after reboot:&lt;br /&gt;
&lt;br /&gt;
In terminal: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit ~/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Find the line that says:&lt;br /&gt;
&lt;br /&gt;
 . /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
and change it to&lt;br /&gt;
&lt;br /&gt;
 #. /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
Save and exit.&lt;br /&gt;
&lt;br /&gt;
Go to System&amp;gt;Preferences&amp;gt;Startup Applications and create a new entry named whatever you want.&lt;br /&gt;
&lt;br /&gt;
The command should be:&lt;br /&gt;
&lt;br /&gt;
 sh /home/yourusername/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Your wacomcpl settings will now restore on reboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Fixing the Tablet Toolbox Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Control-Alt-Delete Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Rotate Button =&lt;br /&gt;
This key needs to be set to a keycode pick any empty one (240 is usually)&lt;br /&gt;
&lt;br /&gt;
 sudo setkeycodes 6c 240&lt;br /&gt;
&lt;br /&gt;
Now you can bind this key to any command. (It should be possible to write a script to interact with the autorotate given on this page)&lt;br /&gt;
&lt;br /&gt;
= Setup the Middle Button Scrolling =&lt;br /&gt;
&lt;br /&gt;
Create a new file called /etc/hal/fdi/policy/mouse-wheel.fdi typing: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/hal/fdi/policy/mouse-wheel.fdi&lt;br /&gt;
&lt;br /&gt;
And fill it with this code: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
  &amp;lt;match key=&amp;quot;info.product&amp;quot; string=&amp;quot;TPPS/2 IBM TrackPoint&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheel&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheelButton&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;2&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.XAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;6 7&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.YAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.ZAxsisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.Emulate3Buttons&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
 &amp;lt;/match&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reboot&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage Button =&lt;br /&gt;
The ThinkVantage button does not work only in that it is not bound to anything. To bind it go to System&amp;gt;Preferences&amp;gt;Keyboard Shortcuts and set it to perform any command.&lt;br /&gt;
&lt;br /&gt;
= Setup Magnify Fn Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup Fingerprint Reader =&lt;br /&gt;
&lt;br /&gt;
The Thinkfinger driver works fine on the X61. The following is the paraphrased commands from the installing thinkfinger page that are relevant to the X61 and Ubuntu 9.04.&lt;br /&gt;
&lt;br /&gt;
In terminal, add a key:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com F2A12FABE936A7BBDC4EA33351DB180D1323E149&lt;br /&gt;
&lt;br /&gt;
Add the PPA repositories to your source.list (/etc/apt/source.list):&lt;br /&gt;
&lt;br /&gt;
 deb http://ppa.launchpad.net/jon-oberheide/ppa/ubuntu jaunty main&lt;br /&gt;
 deb-src http://ppa.launchpad.net/jon-oberheide/ppa/ubuntu jaunty main&lt;br /&gt;
&lt;br /&gt;
Update installer:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get update&lt;br /&gt;
&lt;br /&gt;
And install:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install thinkfinger-tools libpam-thinkfinger&lt;br /&gt;
&lt;br /&gt;
Now the driver is installed and should be working. You can try it (as root) with &lt;br /&gt;
&lt;br /&gt;
 sudo tf-tool --acquire &lt;br /&gt;
&lt;br /&gt;
and &lt;br /&gt;
&lt;br /&gt;
 sudo tf-tool --verify &lt;br /&gt;
&lt;br /&gt;
This will ask you to swipe your finger three times, save the fingerprint to /tmp/test.bir and then verify your fingerprint with the bir-file. &lt;br /&gt;
&lt;br /&gt;
Setup Pam:&lt;br /&gt;
&lt;br /&gt;
 sudo /usr/lib/pam-thinkfinger/pam-thinkfinger-enable&lt;br /&gt;
&lt;br /&gt;
Add user:&lt;br /&gt;
&lt;br /&gt;
 tf-tool --acquire $USERNAME&lt;br /&gt;
&lt;br /&gt;
Optional: Change the login screen to allow keyboard-less login:&lt;br /&gt;
&lt;br /&gt;
Go to: System&amp;gt;Administration&amp;gt;Login Window&lt;br /&gt;
&lt;br /&gt;
Click on the 'Local' tab.&lt;br /&gt;
&lt;br /&gt;
Set the drop-down boxes to: 'Themed with face browser' and 'Selected Only' and choose 'Human List' from the list of logins.&lt;br /&gt;
&lt;br /&gt;
Note: it may take some time for the reader to startup, give it 5 seconds before use and before pressing enter to initiate login.&lt;br /&gt;
&lt;br /&gt;
= Setup Automatic Screen Rotation =&lt;br /&gt;
To Be Posted.&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage ActiveProtection =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Disable Bluetooth on Startup =&lt;br /&gt;
These instructions will disable the bluetooth radio being activated during the boot. The radio can then be activated at the users discretion using Fn F5 (Radio Fn Button).&lt;br /&gt;
&lt;br /&gt;
edit /etc/rc.local and add:&lt;br /&gt;
&lt;br /&gt;
 chmod 666 /proc/acpi/ibm/bluetooth &lt;br /&gt;
 echo &amp;quot;disable&amp;quot; &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
&lt;br /&gt;
before the exit0 line&lt;br /&gt;
&lt;br /&gt;
*note chmod 666 makes this file editable by everyone, this may compromise security, try different settings to find the one that suits your needs (655 may work)&lt;br /&gt;
&lt;br /&gt;
*note proc is depreciated and may not work in future releases&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Enable Laptop Mode =&lt;br /&gt;
Laptop mode is a power saving tool that allows the hard drive to spin down to conserve battery power. This is disabled by default as it has been known to cause problems on some computers, but it appears to work on the X61t.&lt;br /&gt;
&lt;br /&gt;
*Warning: Laptop mode stores data in ram teporarily until it needs to write to disk. Power Loss in laptop mode could lead to significant data loss.&lt;br /&gt;
&lt;br /&gt;
*Warning: Excessive spin-up spin-down cycles will wear out your hard drive much more quickly than normal use. Be careful when configuring laptop mode settings.  &lt;br /&gt;
&lt;br /&gt;
*Warning: Do Not Use Laptop Mode if you have a SSD. It is for platter drives only.&lt;br /&gt;
&lt;br /&gt;
Edit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
Set: &amp;quot;ENABLE_LAPTOP_MODE=true&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure Laptop Mode&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/laptop-mode/laptop-mode.conf&lt;br /&gt;
&lt;br /&gt;
= Sources =&lt;br /&gt;
The above is a compilation of my notes from when I installed Jaunty on my X61t. The code and many of the instructions come from various pages and sources around the Internet. I will attempt to document them when time permits. If you see anything that should be added or wish to cite a source I missed, please edit the page.&lt;/div&gt;</summary>
		<author><name>Mbeichorn</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43252</id>
		<title>Installing Ubuntu 9.04 (Jaunty Jackalope) on an X61 Tablet</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43252"/>
		<updated>2009-05-24T02:33:24Z</updated>

		<summary type="html">&lt;p&gt;Mbeichorn: /* Setup Fingerprint Reader */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction =&lt;br /&gt;
&lt;br /&gt;
This page covers the additional hardware setup required after installing Ubuntu 9.04 Jaunty to make the Thinkpad X61 Tablet Fully Functional. All directions are given in the HAL, fdi, and acpi thus avoiding the xorg.conf file completely.&lt;br /&gt;
&lt;br /&gt;
=== What Works ===&lt;br /&gt;
Forward / Back Buttons,&lt;br /&gt;
Audio Buttons,&lt;br /&gt;
Brightness Fn Buttons,&lt;br /&gt;
Radio Fn Button,&lt;br /&gt;
Suspend Fn Button,&lt;br /&gt;
Power Fn Button,&lt;br /&gt;
Lock Fn Button,&lt;br /&gt;
Hibernate Fn Button,&lt;br /&gt;
Tablet L/R/U/D Buttons,&lt;br /&gt;
Tablet Enter Button,&lt;br /&gt;
Tablet Esc Button,&lt;br /&gt;
Media Fn Buttons&lt;br /&gt;
NumberLock Fn Button,&lt;br /&gt;
Tablet Pen,&lt;br /&gt;
Wireless Radio,&lt;br /&gt;
Bluetooth Radio,&lt;br /&gt;
&lt;br /&gt;
=== What Almost Works ===&lt;br /&gt;
Tablet Toolbox Button -  causes lock or suspend,&lt;br /&gt;
Tablet Touch – Requires Calibration,&lt;br /&gt;
&lt;br /&gt;
=== What Does Not Work ===&lt;br /&gt;
Tablet Control-Alt-Delete Button,&lt;br /&gt;
Tablet Rotate Button,&lt;br /&gt;
Middle Mouse Button,&lt;br /&gt;
ThinkVantage Button,&lt;br /&gt;
Magnify Fn Button,&lt;br /&gt;
Fingerprint Reader,&lt;br /&gt;
Automatic Screen Rotation,&lt;br /&gt;
ThinkVantage ActiveProtection,&lt;br /&gt;
&lt;br /&gt;
= Fixing Touch =&lt;br /&gt;
Works out of the box, just needs some calibration.&lt;br /&gt;
&lt;br /&gt;
== Wacomcpl ==&lt;br /&gt;
The Wacom Tablet in the X61t is a serial Wacom tablet. It can be configured by using wacomcpl. Wacomcpl is part of the wacom-tools package and can be retrieved in apt:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install wacom-tools&lt;br /&gt;
&lt;br /&gt;
After this wacomcpl can be run by typing:&lt;br /&gt;
&lt;br /&gt;
 wacomcpl&lt;br /&gt;
&lt;br /&gt;
in Terminal.&lt;br /&gt;
&lt;br /&gt;
=== Helping wacomcpl ===&lt;br /&gt;
Unfortunately HAL assigns names to wacom devices in a way that the recent wacomcpl from jaunty cant find them, to help wacomcpl to find them:&lt;br /&gt;
&lt;br /&gt;
Open a terminal and type :&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/init.d/wacomtohal&lt;br /&gt;
&lt;br /&gt;
and paste this code in:&lt;br /&gt;
&lt;br /&gt;
 #! /bin/sh&lt;br /&gt;
 ## find any wacom devices&lt;br /&gt;
 for udi in `hal-find-by-property --key input.x11_driver --string wacom`&lt;br /&gt;
 do&lt;br /&gt;
 type=`hal-get-property --udi $udi --key input.x11_options.Type`&lt;br /&gt;
 ## rewrite the names that the Xserver will use&lt;br /&gt;
 hal-set-property --udi $udi --key info.product --string $type&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
then run :&lt;br /&gt;
&lt;br /&gt;
 sudo chmod +x /etc/init.d/wacomtohal&lt;br /&gt;
 sudo update-rc.d wacomtohal defaults 27&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now reboot and launch wacomcpl&lt;br /&gt;
&lt;br /&gt;
=== Making Wacomcpl Settings Restore on Reboot ===&lt;br /&gt;
If you lose your calibration after reboot:&lt;br /&gt;
&lt;br /&gt;
In terminal: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit ~/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Find the line that says:&lt;br /&gt;
&lt;br /&gt;
 . /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
and change it to&lt;br /&gt;
&lt;br /&gt;
 #. /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
Save and exit.&lt;br /&gt;
&lt;br /&gt;
Go to System&amp;gt;Preferences&amp;gt;Startup Applications and create a new entry named whatever you want.&lt;br /&gt;
&lt;br /&gt;
The command should be:&lt;br /&gt;
&lt;br /&gt;
 sh /home/yourusername/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Your wacomcpl settings will now restore on reboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Fixing the Tablet Toolbox Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Control-Alt-Delete Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Rotate Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Middle Button Scrolling =&lt;br /&gt;
&lt;br /&gt;
Create a new file called /etc/hal/fdi/policy/mouse-wheel.fdi typing: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/hal/fdi/policy/mouse-wheel.fdi&lt;br /&gt;
&lt;br /&gt;
And fill it with this code: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
  &amp;lt;match key=&amp;quot;info.product&amp;quot; string=&amp;quot;TPPS/2 IBM TrackPoint&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheel&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheelButton&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;2&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.XAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;6 7&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.YAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.ZAxsisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.Emulate3Buttons&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
 &amp;lt;/match&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reboot&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage Button =&lt;br /&gt;
The ThinkVantage button does not work only in that it is not bound to anything. To bind it go to System&amp;gt;Preferences&amp;gt;Keyboard Shortcuts and set it to perform any command.&lt;br /&gt;
&lt;br /&gt;
= Setup Magnify Fn Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup Fingerprint Reader =&lt;br /&gt;
&lt;br /&gt;
The Thinkfinger driver works fine on the X61. The following is the paraphrased commands from the installing thinkfinger page that are relevant to the X61 and Ubuntu 9.04.&lt;br /&gt;
&lt;br /&gt;
In terminal, add a key:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com F2A12FABE936A7BBDC4EA33351DB180D1323E149&lt;br /&gt;
&lt;br /&gt;
Add the PPA repositories to your source.list (/etc/apt/source.list):&lt;br /&gt;
&lt;br /&gt;
 deb http://ppa.launchpad.net/jon-oberheide/ppa/ubuntu jaunty main&lt;br /&gt;
 deb-src http://ppa.launchpad.net/jon-oberheide/ppa/ubuntu jaunty main&lt;br /&gt;
&lt;br /&gt;
Update installer:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get update&lt;br /&gt;
&lt;br /&gt;
And install:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install thinkfinger-tools libpam-thinkfinger&lt;br /&gt;
&lt;br /&gt;
Now the driver is installed and should be working. You can try it (as root) with &lt;br /&gt;
&lt;br /&gt;
 sudo tf-tool --acquire &lt;br /&gt;
&lt;br /&gt;
and &lt;br /&gt;
&lt;br /&gt;
 sudo tf-tool --verify &lt;br /&gt;
&lt;br /&gt;
This will ask you to swipe your finger three times, save the fingerprint to /tmp/test.bir and then verify your fingerprint with the bir-file. &lt;br /&gt;
&lt;br /&gt;
Setup Pam:&lt;br /&gt;
&lt;br /&gt;
 sudo /usr/lib/pam-thinkfinger/pam-thinkfinger-enable&lt;br /&gt;
&lt;br /&gt;
Add user:&lt;br /&gt;
&lt;br /&gt;
 tf-tool --acquire $USERNAME&lt;br /&gt;
&lt;br /&gt;
Optional: Change the login screen to allow keyboard-less login:&lt;br /&gt;
&lt;br /&gt;
Go to: System&amp;gt;Administration&amp;gt;Login Window&lt;br /&gt;
&lt;br /&gt;
Click on the 'Local' tab.&lt;br /&gt;
&lt;br /&gt;
Set the drop-down boxes to: 'Themed with face browser' and 'Selected Only' and choose 'Human List' from the list of logins.&lt;br /&gt;
&lt;br /&gt;
Note: it may take some time for the reader to startup, give it 5 seconds before use and before pressing enter to initiate login.&lt;br /&gt;
&lt;br /&gt;
= Setup Automatic Screen Rotation =&lt;br /&gt;
To Be Posted.&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage ActiveProtection =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Disable Bluetooth on Startup =&lt;br /&gt;
These instructions will disable the bluetooth radio being activated during the boot. The radio can then be activated at the users discretion using Fn F5 (Radio Fn Button).&lt;br /&gt;
&lt;br /&gt;
edit /etc/rc.local and add:&lt;br /&gt;
&lt;br /&gt;
 chmod 666 /proc/acpi/ibm/bluetooth &lt;br /&gt;
 echo &amp;quot;disable&amp;quot; &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
&lt;br /&gt;
before the exit0 line&lt;br /&gt;
&lt;br /&gt;
*note chmod 666 makes this file editable by everyone, this may compromise security, try different settings to find the one that suits your needs (655 may work)&lt;br /&gt;
&lt;br /&gt;
*note proc is depreciated and may not work in future releases&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Enable Laptop Mode =&lt;br /&gt;
Laptop mode is a power saving tool that allows the hard drive to spin down to conserve battery power. This is disabled by default as it has been known to cause problems on some computers, but it appears to work on the X61t.&lt;br /&gt;
&lt;br /&gt;
*Warning: Laptop mode stores data in ram teporarily until it needs to write to disk. Power Loss in laptop mode could lead to significant data loss.&lt;br /&gt;
&lt;br /&gt;
*Warning: Excessive spin-up spin-down cycles will wear out your hard drive much more quickly than normal use. Be careful when configuring laptop mode settings.  &lt;br /&gt;
&lt;br /&gt;
*Warning: Do Not Use Laptop Mode if you have a SSD. It is for platter drives only.&lt;br /&gt;
&lt;br /&gt;
Edit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
Set: &amp;quot;ENABLE_LAPTOP_MODE=true&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure Laptop Mode&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/laptop-mode/laptop-mode.conf&lt;br /&gt;
&lt;br /&gt;
= Sources =&lt;br /&gt;
The above is a compilation of my notes from when I installed Jaunty on my X61t. The code and many of the instructions come from various pages and sources around the Internet. I will attempt to document them when time permits. If you see anything that should be added or wish to cite a source I missed, please edit the page.&lt;/div&gt;</summary>
		<author><name>Mbeichorn</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43251</id>
		<title>Installing Ubuntu 9.04 (Jaunty Jackalope) on an X61 Tablet</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43251"/>
		<updated>2009-05-24T02:20:10Z</updated>

		<summary type="html">&lt;p&gt;Mbeichorn: /* Making Wacomcpl Settings Restore on Resume */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction =&lt;br /&gt;
&lt;br /&gt;
This page covers the additional hardware setup required after installing Ubuntu 9.04 Jaunty to make the Thinkpad X61 Tablet Fully Functional. All directions are given in the HAL, fdi, and acpi thus avoiding the xorg.conf file completely.&lt;br /&gt;
&lt;br /&gt;
=== What Works ===&lt;br /&gt;
Forward / Back Buttons,&lt;br /&gt;
Audio Buttons,&lt;br /&gt;
Brightness Fn Buttons,&lt;br /&gt;
Radio Fn Button,&lt;br /&gt;
Suspend Fn Button,&lt;br /&gt;
Power Fn Button,&lt;br /&gt;
Lock Fn Button,&lt;br /&gt;
Hibernate Fn Button,&lt;br /&gt;
Tablet L/R/U/D Buttons,&lt;br /&gt;
Tablet Enter Button,&lt;br /&gt;
Tablet Esc Button,&lt;br /&gt;
Media Fn Buttons&lt;br /&gt;
NumberLock Fn Button,&lt;br /&gt;
Tablet Pen,&lt;br /&gt;
Wireless Radio,&lt;br /&gt;
Bluetooth Radio,&lt;br /&gt;
&lt;br /&gt;
=== What Almost Works ===&lt;br /&gt;
Tablet Toolbox Button -  causes lock or suspend,&lt;br /&gt;
Tablet Touch – Requires Calibration,&lt;br /&gt;
&lt;br /&gt;
=== What Does Not Work ===&lt;br /&gt;
Tablet Control-Alt-Delete Button,&lt;br /&gt;
Tablet Rotate Button,&lt;br /&gt;
Middle Mouse Button,&lt;br /&gt;
ThinkVantage Button,&lt;br /&gt;
Magnify Fn Button,&lt;br /&gt;
Fingerprint Reader,&lt;br /&gt;
Automatic Screen Rotation,&lt;br /&gt;
ThinkVantage ActiveProtection,&lt;br /&gt;
&lt;br /&gt;
= Fixing Touch =&lt;br /&gt;
Works out of the box, just needs some calibration.&lt;br /&gt;
&lt;br /&gt;
== Wacomcpl ==&lt;br /&gt;
The Wacom Tablet in the X61t is a serial Wacom tablet. It can be configured by using wacomcpl. Wacomcpl is part of the wacom-tools package and can be retrieved in apt:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install wacom-tools&lt;br /&gt;
&lt;br /&gt;
After this wacomcpl can be run by typing:&lt;br /&gt;
&lt;br /&gt;
 wacomcpl&lt;br /&gt;
&lt;br /&gt;
in Terminal.&lt;br /&gt;
&lt;br /&gt;
=== Helping wacomcpl ===&lt;br /&gt;
Unfortunately HAL assigns names to wacom devices in a way that the recent wacomcpl from jaunty cant find them, to help wacomcpl to find them:&lt;br /&gt;
&lt;br /&gt;
Open a terminal and type :&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/init.d/wacomtohal&lt;br /&gt;
&lt;br /&gt;
and paste this code in:&lt;br /&gt;
&lt;br /&gt;
 #! /bin/sh&lt;br /&gt;
 ## find any wacom devices&lt;br /&gt;
 for udi in `hal-find-by-property --key input.x11_driver --string wacom`&lt;br /&gt;
 do&lt;br /&gt;
 type=`hal-get-property --udi $udi --key input.x11_options.Type`&lt;br /&gt;
 ## rewrite the names that the Xserver will use&lt;br /&gt;
 hal-set-property --udi $udi --key info.product --string $type&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
then run :&lt;br /&gt;
&lt;br /&gt;
 sudo chmod +x /etc/init.d/wacomtohal&lt;br /&gt;
 sudo update-rc.d wacomtohal defaults 27&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now reboot and launch wacomcpl&lt;br /&gt;
&lt;br /&gt;
=== Making Wacomcpl Settings Restore on Reboot ===&lt;br /&gt;
If you lose your calibration after reboot:&lt;br /&gt;
&lt;br /&gt;
In terminal: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit ~/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Find the line that says:&lt;br /&gt;
&lt;br /&gt;
 . /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
and change it to&lt;br /&gt;
&lt;br /&gt;
 #. /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
Save and exit.&lt;br /&gt;
&lt;br /&gt;
Go to System&amp;gt;Preferences&amp;gt;Startup Applications and create a new entry named whatever you want.&lt;br /&gt;
&lt;br /&gt;
The command should be:&lt;br /&gt;
&lt;br /&gt;
 sh /home/yourusername/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Your wacomcpl settings will now restore on reboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Fixing the Tablet Toolbox Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Control-Alt-Delete Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Rotate Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Middle Button Scrolling =&lt;br /&gt;
&lt;br /&gt;
Create a new file called /etc/hal/fdi/policy/mouse-wheel.fdi typing: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/hal/fdi/policy/mouse-wheel.fdi&lt;br /&gt;
&lt;br /&gt;
And fill it with this code: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
  &amp;lt;match key=&amp;quot;info.product&amp;quot; string=&amp;quot;TPPS/2 IBM TrackPoint&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheel&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheelButton&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;2&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.XAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;6 7&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.YAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.ZAxsisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.Emulate3Buttons&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
 &amp;lt;/match&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reboot&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage Button =&lt;br /&gt;
The ThinkVantage button does not work only in that it is not bound to anything. To bind it go to System&amp;gt;Preferences&amp;gt;Keyboard Shortcuts and set it to perform any command.&lt;br /&gt;
&lt;br /&gt;
= Setup Magnify Fn Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup Fingerprint Reader =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup Automatic Screen Rotation =&lt;br /&gt;
To Be Posted.&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage ActiveProtection =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Disable Bluetooth on Startup =&lt;br /&gt;
These instructions will disable the bluetooth radio being activated during the boot. The radio can then be activated at the users discretion using Fn F5 (Radio Fn Button).&lt;br /&gt;
&lt;br /&gt;
edit /etc/rc.local and add:&lt;br /&gt;
&lt;br /&gt;
 chmod 666 /proc/acpi/ibm/bluetooth &lt;br /&gt;
 echo &amp;quot;disable&amp;quot; &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
&lt;br /&gt;
before the exit0 line&lt;br /&gt;
&lt;br /&gt;
*note chmod 666 makes this file editable by everyone, this may compromise security, try different settings to find the one that suits your needs (655 may work)&lt;br /&gt;
&lt;br /&gt;
*note proc is depreciated and may not work in future releases&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Enable Laptop Mode =&lt;br /&gt;
Laptop mode is a power saving tool that allows the hard drive to spin down to conserve battery power. This is disabled by default as it has been known to cause problems on some computers, but it appears to work on the X61t.&lt;br /&gt;
&lt;br /&gt;
*Warning: Laptop mode stores data in ram teporarily until it needs to write to disk. Power Loss in laptop mode could lead to significant data loss.&lt;br /&gt;
&lt;br /&gt;
*Warning: Excessive spin-up spin-down cycles will wear out your hard drive much more quickly than normal use. Be careful when configuring laptop mode settings.  &lt;br /&gt;
&lt;br /&gt;
*Warning: Do Not Use Laptop Mode if you have a SSD. It is for platter drives only.&lt;br /&gt;
&lt;br /&gt;
Edit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
Set: &amp;quot;ENABLE_LAPTOP_MODE=true&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure Laptop Mode&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/laptop-mode/laptop-mode.conf&lt;br /&gt;
&lt;br /&gt;
= Sources =&lt;br /&gt;
The above is a compilation of my notes from when I installed Jaunty on my X61t. The code and many of the instructions come from various pages and sources around the Internet. I will attempt to document them when time permits. If you see anything that should be added or wish to cite a source I missed, please edit the page.&lt;/div&gt;</summary>
		<author><name>Mbeichorn</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43229</id>
		<title>Installing Ubuntu 9.04 (Jaunty Jackalope) on an X61 Tablet</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43229"/>
		<updated>2009-05-20T16:32:39Z</updated>

		<summary type="html">&lt;p&gt;Mbeichorn: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction =&lt;br /&gt;
&lt;br /&gt;
This page covers the additional hardware setup required after installing Ubuntu 9.04 Jaunty to make the Thinkpad X61 Tablet Fully Functional. All directions are given in the HAL, fdi, and acpi thus avoiding the xorg.conf file completely.&lt;br /&gt;
&lt;br /&gt;
=== What Works ===&lt;br /&gt;
Forward / Back Buttons,&lt;br /&gt;
Audio Buttons,&lt;br /&gt;
Brightness Fn Buttons,&lt;br /&gt;
Radio Fn Button,&lt;br /&gt;
Suspend Fn Button,&lt;br /&gt;
Power Fn Button,&lt;br /&gt;
Lock Fn Button,&lt;br /&gt;
Hibernate Fn Button,&lt;br /&gt;
Tablet L/R/U/D Buttons,&lt;br /&gt;
Tablet Enter Button,&lt;br /&gt;
Tablet Esc Button,&lt;br /&gt;
Media Fn Buttons&lt;br /&gt;
NumberLock Fn Button,&lt;br /&gt;
Tablet Pen,&lt;br /&gt;
Wireless Radio,&lt;br /&gt;
Bluetooth Radio,&lt;br /&gt;
&lt;br /&gt;
=== What Almost Works ===&lt;br /&gt;
Tablet Toolbox Button -  causes lock or suspend,&lt;br /&gt;
Tablet Touch – Requires Calibration,&lt;br /&gt;
&lt;br /&gt;
=== What Does Not Work ===&lt;br /&gt;
Tablet Control-Alt-Delete Button,&lt;br /&gt;
Tablet Rotate Button,&lt;br /&gt;
Middle Mouse Button,&lt;br /&gt;
ThinkVantage Button,&lt;br /&gt;
Magnify Fn Button,&lt;br /&gt;
Fingerprint Reader,&lt;br /&gt;
Automatic Screen Rotation,&lt;br /&gt;
ThinkVantage ActiveProtection,&lt;br /&gt;
&lt;br /&gt;
= Fixing Touch =&lt;br /&gt;
Works out of the box, just needs some calibration.&lt;br /&gt;
&lt;br /&gt;
== Wacomcpl ==&lt;br /&gt;
The Wacom Tablet in the X61t is a serial Wacom tablet. It can be configured by using wacomcpl. Wacomcpl is part of the wacom-tools package and can be retrieved in apt:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install wacom-tools&lt;br /&gt;
&lt;br /&gt;
After this wacomcpl can be run by typing:&lt;br /&gt;
&lt;br /&gt;
 wacomcpl&lt;br /&gt;
&lt;br /&gt;
in Terminal.&lt;br /&gt;
&lt;br /&gt;
=== Helping wacomcpl ===&lt;br /&gt;
Unfortunately HAL assigns names to wacom devices in a way that the recent wacomcpl from jaunty cant find them, to help wacomcpl to find them:&lt;br /&gt;
&lt;br /&gt;
Open a terminal and type :&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/init.d/wacomtohal&lt;br /&gt;
&lt;br /&gt;
and paste this code in:&lt;br /&gt;
&lt;br /&gt;
 #! /bin/sh&lt;br /&gt;
 ## find any wacom devices&lt;br /&gt;
 for udi in `hal-find-by-property --key input.x11_driver --string wacom`&lt;br /&gt;
 do&lt;br /&gt;
 type=`hal-get-property --udi $udi --key input.x11_options.Type`&lt;br /&gt;
 ## rewrite the names that the Xserver will use&lt;br /&gt;
 hal-set-property --udi $udi --key info.product --string $type&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
then run :&lt;br /&gt;
&lt;br /&gt;
 sudo chmod +x /etc/init.d/wacomtohal&lt;br /&gt;
 sudo update-rc.d wacomtohal defaults 27&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now reboot and launch wacomcpl&lt;br /&gt;
&lt;br /&gt;
=== Making Wacomcpl Settings Restore on Reboot ===&lt;br /&gt;
If you lose your calibration after reboot:&lt;br /&gt;
&lt;br /&gt;
In terminal: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit ~/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Find the line that says:&lt;br /&gt;
&lt;br /&gt;
 . /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
and change it to&lt;br /&gt;
&lt;br /&gt;
 #. /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
Save and exit.&lt;br /&gt;
&lt;br /&gt;
Go to System&amp;gt;Preferences&amp;gt;Startup Applications and create a new entry named whatever you want.&lt;br /&gt;
&lt;br /&gt;
The command should be:&lt;br /&gt;
&lt;br /&gt;
 sh /home/yourusername/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Your wacomcpl settings will now restore on reboot&lt;br /&gt;
&lt;br /&gt;
=== Making Wacomcpl Settings Restore on Resume ===&lt;br /&gt;
&lt;br /&gt;
If you lose your configuration after resume from standby or hibernate follow these instructions to create a binary daemon that will restore your settings:&lt;br /&gt;
&lt;br /&gt;
In Terminal&lt;br /&gt;
&lt;br /&gt;
 gedit monitor_wacom.c&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Enter the following code:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
 #include &amp;lt;stdlib.h&amp;gt;&lt;br /&gt;
 #include &amp;lt;string.h&amp;gt;&lt;br /&gt;
 #include &amp;lt;unistd.h&amp;gt;&lt;br /&gt;
 #include &amp;lt;assert.h&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
 char method_line[1024];&lt;br /&gt;
 &lt;br /&gt;
 int main(int argc, char **argv) {&lt;br /&gt;
 &lt;br /&gt;
         if (argc != 2) {&lt;br /&gt;
                 printf(&amp;quot;Usage: %s [script to run]\n&amp;quot;, argv[0]);&lt;br /&gt;
                 return 1;&lt;br /&gt;
         }&lt;br /&gt;
 &lt;br /&gt;
         FILE* in = popen(&amp;quot;dbus-monitor --session  type='signal',interface='org.gnome.ScreenSaver',member='ActiveChanged'&amp;quot;, &amp;quot;r&amp;quot;);&lt;br /&gt;
 &lt;br /&gt;
         while (1) {&lt;br /&gt;
                 char buf[1024];&lt;br /&gt;
                 assert(fgets(buf, 1023, in));&lt;br /&gt;
                 &lt;br /&gt;
                 if (buf[0] == 's' /* early exit optimization */ &amp;amp;&amp;amp; strstr(buf, &amp;quot;ActiveChanged&amp;quot;) != NULL) {&lt;br /&gt;
                         assert(fgets(buf, 1023, in));&lt;br /&gt;
                         if (strstr(buf, &amp;quot;false&amp;quot;) != NULL) {&lt;br /&gt;
                                 /* resumed */&lt;br /&gt;
                                 assert(system(argv[1]) == 0);&lt;br /&gt;
                         } else {&lt;br /&gt;
                                 /* put to sleep */&lt;br /&gt;
                         }&lt;br /&gt;
                 } &lt;br /&gt;
         }&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Save and Close&lt;br /&gt;
&lt;br /&gt;
In Terminal:&lt;br /&gt;
&lt;br /&gt;
 gcc -O2 monitor_wacom.c -o .monitor_wacom&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Go to System&amp;gt;Preferences&amp;gt;Startup Applications and create a new entry named whatever you want.&lt;br /&gt;
&lt;br /&gt;
Its command should be:&lt;br /&gt;
&lt;br /&gt;
 /home/yourusername/.monitor_wacom /home/yourusername/.xinitrc&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reboot.&lt;br /&gt;
&lt;br /&gt;
= Fixing the Tablet Toolbox Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Control-Alt-Delete Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Rotate Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Middle Button Scrolling =&lt;br /&gt;
&lt;br /&gt;
Create a new file called /etc/hal/fdi/policy/mouse-wheel.fdi typing: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/hal/fdi/policy/mouse-wheel.fdi&lt;br /&gt;
&lt;br /&gt;
And fill it with this code: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
  &amp;lt;match key=&amp;quot;info.product&amp;quot; string=&amp;quot;TPPS/2 IBM TrackPoint&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheel&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheelButton&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;2&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.XAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;6 7&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.YAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.ZAxsisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.Emulate3Buttons&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
 &amp;lt;/match&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reboot&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage Button =&lt;br /&gt;
The ThinkVantage button does not work only in that it is not bound to anything. To bind it go to System&amp;gt;Preferences&amp;gt;Keyboard Shortcuts and set it to perform any command.&lt;br /&gt;
&lt;br /&gt;
= Setup Magnify Fn Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup Fingerprint Reader =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup Automatic Screen Rotation =&lt;br /&gt;
To Be Posted.&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage ActiveProtection =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Disable Bluetooth on Startup =&lt;br /&gt;
These instructions will disable the bluetooth radio being activated during the boot. The radio can then be activated at the users discretion using Fn F5 (Radio Fn Button).&lt;br /&gt;
&lt;br /&gt;
edit /etc/rc.local and add:&lt;br /&gt;
&lt;br /&gt;
 chmod 666 /proc/acpi/ibm/bluetooth &lt;br /&gt;
 echo &amp;quot;disable&amp;quot; &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
&lt;br /&gt;
before the exit0 line&lt;br /&gt;
&lt;br /&gt;
*note chmod 666 makes this file editable by everyone, this may compromise security, try different settings to find the one that suits your needs (655 may work)&lt;br /&gt;
&lt;br /&gt;
*note proc is depreciated and may not work in future releases&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Enable Laptop Mode =&lt;br /&gt;
Laptop mode is a power saving tool that allows the hard drive to spin down to conserve battery power. This is disabled by default as it has been known to cause problems on some computers, but it appears to work on the X61t.&lt;br /&gt;
&lt;br /&gt;
*Warning: Laptop mode stores data in ram teporarily until it needs to write to disk. Power Loss in laptop mode could lead to significant data loss.&lt;br /&gt;
&lt;br /&gt;
*Warning: Excessive spin-up spin-down cycles will wear out your hard drive much more quickly than normal use. Be careful when configuring laptop mode settings.  &lt;br /&gt;
&lt;br /&gt;
*Warning: Do Not Use Laptop Mode if you have a SSD. It is for platter drives only.&lt;br /&gt;
&lt;br /&gt;
Edit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
Set: &amp;quot;ENABLE_LAPTOP_MODE=true&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure Laptop Mode&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/laptop-mode/laptop-mode.conf&lt;br /&gt;
&lt;br /&gt;
= Sources =&lt;br /&gt;
The above is a compilation of my notes from when I installed Jaunty on my X61t. The code and many of the instructions come from various pages and sources around the Internet. I will attempt to document them when time permits. If you see anything that should be added or wish to cite a source I missed, please edit the page.&lt;/div&gt;</summary>
		<author><name>Mbeichorn</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43228</id>
		<title>Installing Ubuntu 9.04 (Jaunty Jackalope) on an X61 Tablet</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_9.04_(Jaunty_Jackalope)_on_an_X61_Tablet&amp;diff=43228"/>
		<updated>2009-05-20T16:30:39Z</updated>

		<summary type="html">&lt;p&gt;Mbeichorn: â†Created page with '= Introduction =  This page covers the additional hardware setup required after installing Ubuntu 9.04 Jaunty to make the Thinkpad X61 Tablet Fully Functional. All directi...'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction =&lt;br /&gt;
&lt;br /&gt;
This page covers the additional hardware setup required after installing Ubuntu 9.04 Jaunty to make the Thinkpad X61 Tablet Fully Functional. All directions are given in the HAL, fdi, and acpi thus avoiding the xorg.conf file completely.&lt;br /&gt;
&lt;br /&gt;
== What Works ==&lt;br /&gt;
Forward / Back Buttons,&lt;br /&gt;
Audio Buttons,&lt;br /&gt;
Brightness Fn Buttons,&lt;br /&gt;
Radio Fn Button,&lt;br /&gt;
Suspend Fn Button,&lt;br /&gt;
Power Fn Button,&lt;br /&gt;
Lock Fn Button,&lt;br /&gt;
Hibernate Fn Button,&lt;br /&gt;
Tablet L/R/U/D Buttons,&lt;br /&gt;
Tablet Enter Button,&lt;br /&gt;
Tablet Esc Button,&lt;br /&gt;
Media Fn Buttons&lt;br /&gt;
NumberLock Fn Button,&lt;br /&gt;
Tablet Pen,&lt;br /&gt;
Wireless Radio,&lt;br /&gt;
Bluetooth Radio,&lt;br /&gt;
&lt;br /&gt;
== What Almost Works ==&lt;br /&gt;
Tablet Toolbox Button -  causes lock or suspend,&lt;br /&gt;
Tablet Touch – Requires Calibration,&lt;br /&gt;
&lt;br /&gt;
== What Does Not Work ==&lt;br /&gt;
Tablet Control-Alt-Delete Button,&lt;br /&gt;
Tablet Rotate Button,&lt;br /&gt;
Middle Mouse Button,&lt;br /&gt;
ThinkVantage Button,&lt;br /&gt;
Magnify Fn Button,&lt;br /&gt;
Fingerprint Reader,&lt;br /&gt;
Automatic Screen Rotation,&lt;br /&gt;
ThinkVantage ActiveProtection,&lt;br /&gt;
&lt;br /&gt;
= Fixing Touch =&lt;br /&gt;
Works out of the box, just needs some calibration.&lt;br /&gt;
&lt;br /&gt;
== Wacomcpl ==&lt;br /&gt;
The Wacom Tablet in the X61t is a serial Wacom tablet. It can be configured by using wacomcpl. Wacomcpl is part of the wacom-tools package and can be retrieved in apt:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install wacom-tools&lt;br /&gt;
&lt;br /&gt;
After this wacomcpl can be run by typing:&lt;br /&gt;
&lt;br /&gt;
 wacomcpl&lt;br /&gt;
&lt;br /&gt;
in Terminal.&lt;br /&gt;
&lt;br /&gt;
=== Helping wacomcpl ===&lt;br /&gt;
Unfortunately HAL assigns names to wacom devices in a way that the recent wacomcpl from jaunty cant find them, to help wacomcpl to find them:&lt;br /&gt;
&lt;br /&gt;
Open a terminal and type :&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/init.d/wacomtohal&lt;br /&gt;
&lt;br /&gt;
and paste this code in:&lt;br /&gt;
&lt;br /&gt;
 #! /bin/sh&lt;br /&gt;
 ## find any wacom devices&lt;br /&gt;
 for udi in `hal-find-by-property --key input.x11_driver --string wacom`&lt;br /&gt;
 do&lt;br /&gt;
 type=`hal-get-property --udi $udi --key input.x11_options.Type`&lt;br /&gt;
 ## rewrite the names that the Xserver will use&lt;br /&gt;
 hal-set-property --udi $udi --key info.product --string $type&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
then run :&lt;br /&gt;
&lt;br /&gt;
 sudo chmod +x /etc/init.d/wacomtohal&lt;br /&gt;
 sudo update-rc.d wacomtohal defaults 27&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now reboot and launch wacomcpl&lt;br /&gt;
&lt;br /&gt;
=== Making Wacomcpl Settings Restore on Reboot ===&lt;br /&gt;
If you lose your calibration after reboot:&lt;br /&gt;
&lt;br /&gt;
In terminal: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit ~/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Find the line that says:&lt;br /&gt;
&lt;br /&gt;
 . /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
and change it to&lt;br /&gt;
&lt;br /&gt;
 #. /etc/X11/xinit/xinitrc&lt;br /&gt;
&lt;br /&gt;
Save and exit.&lt;br /&gt;
&lt;br /&gt;
Go to System&amp;gt;Preferences&amp;gt;Startup Applications and create a new entry named whatever you want.&lt;br /&gt;
&lt;br /&gt;
The command should be:&lt;br /&gt;
&lt;br /&gt;
 sh /home/yourusername/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Your wacomcpl settings will now restore on reboot&lt;br /&gt;
&lt;br /&gt;
=== Making Wacomcpl Settings Restore on Resume ===&lt;br /&gt;
&lt;br /&gt;
If you lose your configuration after resume from standby or hibernate follow these instructions to create a binary daemon that will restore your settings:&lt;br /&gt;
&lt;br /&gt;
In Terminal&lt;br /&gt;
&lt;br /&gt;
 gedit monitor_wacom.c&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Enter the following code:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
 #include &amp;lt;stdlib.h&amp;gt;&lt;br /&gt;
 #include &amp;lt;string.h&amp;gt;&lt;br /&gt;
 #include &amp;lt;unistd.h&amp;gt;&lt;br /&gt;
 #include &amp;lt;assert.h&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
 char method_line[1024];&lt;br /&gt;
 &lt;br /&gt;
 int main(int argc, char **argv) {&lt;br /&gt;
 &lt;br /&gt;
         if (argc != 2) {&lt;br /&gt;
                 printf(&amp;quot;Usage: %s [script to run]\n&amp;quot;, argv[0]);&lt;br /&gt;
                 return 1;&lt;br /&gt;
         }&lt;br /&gt;
 &lt;br /&gt;
         FILE* in = popen(&amp;quot;dbus-monitor --session  type='signal',interface='org.gnome.ScreenSaver',member='ActiveChanged'&amp;quot;, &amp;quot;r&amp;quot;);&lt;br /&gt;
 &lt;br /&gt;
         while (1) {&lt;br /&gt;
                 char buf[1024];&lt;br /&gt;
                 assert(fgets(buf, 1023, in));&lt;br /&gt;
                 &lt;br /&gt;
                 if (buf[0] == 's' /* early exit optimization */ &amp;amp;&amp;amp; strstr(buf, &amp;quot;ActiveChanged&amp;quot;) != NULL) {&lt;br /&gt;
                         assert(fgets(buf, 1023, in));&lt;br /&gt;
                         if (strstr(buf, &amp;quot;false&amp;quot;) != NULL) {&lt;br /&gt;
                                 /* resumed */&lt;br /&gt;
                                 assert(system(argv[1]) == 0);&lt;br /&gt;
                         } else {&lt;br /&gt;
                                 /* put to sleep */&lt;br /&gt;
                         }&lt;br /&gt;
                 } &lt;br /&gt;
         }&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Save and Close&lt;br /&gt;
&lt;br /&gt;
In Terminal:&lt;br /&gt;
&lt;br /&gt;
 gcc -O2 monitor_wacom.c -o .monitor_wacom&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Go to System&amp;gt;Preferences&amp;gt;Startup Applications and create a new entry named whatever you want.&lt;br /&gt;
&lt;br /&gt;
Its command should be:&lt;br /&gt;
&lt;br /&gt;
 /home/yourusername/.monitor_wacom /home/yourusername/.xinitrc&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reboot.&lt;br /&gt;
&lt;br /&gt;
= Fixing the Tablet Toolbox Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Control-Alt-Delete Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Tablet Rotate Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup the Middle Button Scrolling =&lt;br /&gt;
&lt;br /&gt;
Create a new file called /etc/hal/fdi/policy/mouse-wheel.fdi typing: &lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/hal/fdi/policy/mouse-wheel.fdi&lt;br /&gt;
&lt;br /&gt;
And fill it with this code: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
  &amp;lt;match key=&amp;quot;info.product&amp;quot; string=&amp;quot;TPPS/2 IBM TrackPoint&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheel&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.EmulateWheelButton&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;2&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.XAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;6 7&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.YAxisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.ZAxsisMapping&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;4 5&amp;lt;/merge&amp;gt;&lt;br /&gt;
  &amp;lt;merge key=&amp;quot;input.x11_options.Emulate3Buttons&amp;quot; type=&amp;quot;string&amp;quot;&amp;gt;true&amp;lt;/merge&amp;gt;&lt;br /&gt;
 &amp;lt;/match&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reboot&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage Button =&lt;br /&gt;
The ThinkVantage button does not work only in that it is not bound to anything. To bind it go to System&amp;gt;Preferences&amp;gt;Keyboard Shortcuts and set it to perform any command.&lt;br /&gt;
&lt;br /&gt;
= Setup Magnify Fn Button =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup Fingerprint Reader =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Setup Automatic Screen Rotation =&lt;br /&gt;
To Be Posted.&lt;br /&gt;
&lt;br /&gt;
= Setup ThinkVantage ActiveProtection =&lt;br /&gt;
No Solution Yet.&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Disable Bluetooth on Startup =&lt;br /&gt;
These instructions will disable the bluetooth radio being activated during the boot. The radio can then be activated at the users discretion using Fn F5 (Radio Fn Button).&lt;br /&gt;
&lt;br /&gt;
edit /etc/rc.local and add:&lt;br /&gt;
&lt;br /&gt;
 chmod 666 /proc/acpi/ibm/bluetooth &lt;br /&gt;
 echo &amp;quot;disable&amp;quot; &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
&lt;br /&gt;
before the exit0 line&lt;br /&gt;
&lt;br /&gt;
*note chmod 666 makes this file editable by everyone, this may compromise security, try different settings to find the one that suits your needs (655 may work)&lt;br /&gt;
&lt;br /&gt;
*note proc is depreciated and may not work in future releases&lt;br /&gt;
&lt;br /&gt;
= Useful Task: Enable Laptop Mode =&lt;br /&gt;
Laptop mode is a power saving tool that allows the hard drive to spin down to conserve battery power. This is disabled by default as it has been known to cause problems on some computers, but it appears to work on the X61t.&lt;br /&gt;
&lt;br /&gt;
*Warning: Laptop mode stores data in ram teporarily until it needs to write to disk. Power Loss in laptop mode could lead to significant data loss.&lt;br /&gt;
&lt;br /&gt;
*Warning: Excessive spin-up spin-down cycles will wear out your hard drive much more quickly than normal use. Be careful when configuring laptop mode settings.  &lt;br /&gt;
&lt;br /&gt;
*Warning: Do Not Use Laptop Mode if you have a SSD. It is for platter drives only.&lt;br /&gt;
&lt;br /&gt;
Edit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
Set: &amp;quot;ENABLE_LAPTOP_MODE=true&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure Laptop Mode&lt;br /&gt;
&lt;br /&gt;
 sudo gedit /etc/laptop-mode/laptop-mode.conf&lt;br /&gt;
&lt;br /&gt;
= Sources =&lt;br /&gt;
The above is a compilation of my notes from when I installed Jaunty on my X61t. The code and many of the instructions come from various pages and sources around the Internet. I will attempt to document them when time permits. If you see anything that should be added or wish to cite a source I missed, please edit the page.&lt;/div&gt;</summary>
		<author><name>Mbeichorn</name></author>
		
	</entry>
</feed>