<?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=Tyler+Oderkirk</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=Tyler+Oderkirk"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Tyler_Oderkirk"/>
	<updated>2026-05-09T07:03:34Z</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=43836</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=43836"/>
		<updated>2009-08-08T14:51:59Z</updated>

		<summary type="html">&lt;p&gt;Tyler Oderkirk: Added page to 'x61 tablet' category&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 empty)&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 empty)&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 empty)&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 'exit 0' 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;br /&gt;
&lt;br /&gt;
[[Category:X61 Tablet]]&lt;/div&gt;</summary>
		<author><name>Tyler Oderkirk</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=43835</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=43835"/>
		<updated>2009-08-08T14:46:25Z</updated>

		<summary type="html">&lt;p&gt;Tyler Oderkirk: Fixed some trivial grammar and formatting.&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 empty)&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 empty)&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 empty)&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 'exit 0' 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>Tyler Oderkirk</name></author>
		
	</entry>
</feed>