<?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=Kkrizka</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=Kkrizka"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Kkrizka"/>
	<updated>2026-04-12T12:07:57Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_8.04_(Hardy_Heron)_on_a_ThinkPad_X61_Tablet&amp;diff=38125</id>
		<title>Installing Ubuntu 8.04 (Hardy Heron) on a ThinkPad X61 Tablet</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_8.04_(Hardy_Heron)_on_a_ThinkPad_X61_Tablet&amp;diff=38125"/>
		<updated>2008-07-04T01:02:19Z</updated>

		<summary type="html">&lt;p&gt;Kkrizka: You no longer need to compile the hdaps module.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Installed from the alternate version CD. &lt;br /&gt;
&lt;br /&gt;
= Graphic =&lt;br /&gt;
== Graphics Card ==&lt;br /&gt;
3D acceleration and Compiz Fusion worked out of the box.&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
Edit /etc/X11/xorg.conf and add to Section Screen&lt;br /&gt;
&lt;br /&gt;
 SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
 	Virtual 3000 2250&lt;br /&gt;
 EndSubSection&lt;br /&gt;
&lt;br /&gt;
The Parameters behind Virtual must be bigger than all your Displays added together (3000 = 1400 + 1600)&lt;br /&gt;
Now you can adust you settings with xrandr. e.g.:&lt;br /&gt;
&lt;br /&gt;
 xrandr --output LVDS --rotate left&lt;br /&gt;
 xrandr --output LVDS --rotate normal&lt;br /&gt;
 xrandr --output VGA --auto --right-of LVDS&lt;br /&gt;
 …&lt;br /&gt;
&lt;br /&gt;
== Konsole ==&lt;br /&gt;
&lt;br /&gt;
Edit /etc/modprobe.d/blacklist-framebuffer and comment this out:&lt;br /&gt;
&lt;br /&gt;
 #blacklist vesafb&lt;br /&gt;
 #blacklist vga16fb&lt;br /&gt;
&lt;br /&gt;
Add to /etc/initramfs-tools/modules&lt;br /&gt;
&lt;br /&gt;
 fbcon&lt;br /&gt;
 vesafb&lt;br /&gt;
 vga16fb&lt;br /&gt;
&lt;br /&gt;
Run&lt;br /&gt;
&lt;br /&gt;
 sudo update-initramfs -u&lt;br /&gt;
&lt;br /&gt;
Edit /boot/grub/menu.lst and change at defoptions:&lt;br /&gt;
&lt;br /&gt;
 vga=0x31b&lt;br /&gt;
&lt;br /&gt;
Run&lt;br /&gt;
&lt;br /&gt;
 sudo update-grub&lt;br /&gt;
&lt;br /&gt;
= Input Devices = &lt;br /&gt;
== Keyboard ==&lt;br /&gt;
&lt;br /&gt;
In some cases the mute button won't work.&lt;br /&gt;
&lt;br /&gt;
For this add in the /boot/grub/menu.lst file following kernel parameter:&lt;br /&gt;
&lt;br /&gt;
 acpi_osi=&amp;quot;Linux&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Run&lt;br /&gt;
&lt;br /&gt;
 sudo update-grub&lt;br /&gt;
&lt;br /&gt;
== Stylus ==&lt;br /&gt;
Enable it as described in [[Wacom_Serial_Tablet_PC_Stylus]]:&lt;br /&gt;
Add to /etc/X11/xorg.conf:&lt;br /&gt;
&lt;br /&gt;
   Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
     Driver        &amp;quot;wacom&amp;quot;&lt;br /&gt;
     Identifier    &amp;quot;cursor&amp;quot;&lt;br /&gt;
     Option        &amp;quot;Device&amp;quot;        &amp;quot;/dev/ttyS0&amp;quot;&lt;br /&gt;
     Option        &amp;quot;Type&amp;quot;          &amp;quot;cursor&amp;quot;&lt;br /&gt;
     Option        &amp;quot;ForceDevice&amp;quot;   &amp;quot;ISDV4&amp;quot;     &lt;br /&gt;
     Option        &amp;quot;Mode&amp;quot;          &amp;quot;Absolute&amp;quot;&lt;br /&gt;
   EndSection&lt;br /&gt;
   &lt;br /&gt;
   Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
     Driver        &amp;quot;wacom&amp;quot;&lt;br /&gt;
     Identifier    &amp;quot;stylus&amp;quot;&lt;br /&gt;
     Option        &amp;quot;Device&amp;quot;        &amp;quot;/dev/ttyS0&amp;quot;&lt;br /&gt;
     Option        &amp;quot;Type&amp;quot;          &amp;quot;stylus&amp;quot;&lt;br /&gt;
     Option        &amp;quot;ForceDevice&amp;quot;   &amp;quot;ISDV4&amp;quot;&lt;br /&gt;
   EndSection&lt;br /&gt;
   &lt;br /&gt;
   Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
     Driver        &amp;quot;wacom&amp;quot;&lt;br /&gt;
     Identifier    &amp;quot;eraser&amp;quot;&lt;br /&gt;
     Option        &amp;quot;Device&amp;quot;        &amp;quot;/dev/ttyS0&amp;quot;&lt;br /&gt;
     Option        &amp;quot;Type&amp;quot;          &amp;quot;eraser&amp;quot;&lt;br /&gt;
     Option        &amp;quot;ForceDevice&amp;quot;   &amp;quot;ISDV4&amp;quot;&lt;br /&gt;
   EndSection&lt;br /&gt;
&lt;br /&gt;
and in Section ServerLayout:&lt;br /&gt;
&lt;br /&gt;
   InputDevice    &amp;quot;cursor&amp;quot; &amp;quot;SendCoreEvents&amp;quot;&lt;br /&gt;
   InputDevice    &amp;quot;stylus&amp;quot; &amp;quot;SendCoreEvents&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Trackpoint ==&lt;br /&gt;
The three mouse buttons and trackpoint nipple/stick/nub work out of the box.&lt;br /&gt;
&lt;br /&gt;
If you want the middle mouse button and the nipple to function together as a mouse wheel, add the following to the ''Configured Mouse'' Input Device section in /etc/X11/xorg.config:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;Option &amp;quot;EmulateWheel&amp;quot; &amp;quot;true&amp;quot;&lt;br /&gt;
Option &amp;quot;EmulateWheelButton&amp;quot; &amp;quot;2&amp;quot; &amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Tilt Detection =&lt;br /&gt;
Ubuntu Hardy Heron supports the tilt detection via the hdaps_ec module.&lt;br /&gt;
&lt;br /&gt;
1) Add the following line to the bottom of the /etc/modules file. This will ensure that the module will be loaded the next time you start-up your laptop.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;hdaps_ec&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2) And update your initramfs:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;sudo update-initramfs -u&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3) Load the module manually so you do not have to restart your laptop.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;sudo modprobe hdaps_ec&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
4) Install hdaps-utils in order to test the new module:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;sudo aptitude install hdaps-utils&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
5) Run a test.  hdaps-gl should open up a new window showing the tablet's orientation.  If you don't want to use a graphical tool, hdaps-pivot prints its output to the command line:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;hdaps-gl&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
[http://blog.aliencam.net/?page_id=438 Customized Ubuntu Hardy Setup Guide on X61t Hardware].&lt;br /&gt;
&lt;br /&gt;
[[Category:X61 Tablet]]&lt;/div&gt;</summary>
		<author><name>Kkrizka</name></author>
		
	</entry>
</feed>