<?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=Nin</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=Nin"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Nin"/>
	<updated>2026-05-15T17:11:38Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35411</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35411"/>
		<updated>2007-12-27T23:10:44Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Grapics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
SKIP_CHECK=yes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I was unsuccessful to get the modem working with the linuxant drivers.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
This can easily be done by putting the following at the end of the file &amp;lt;/etc/hdparm.conf&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Disable power saving functions of harddrive, as it may limit it's&lt;br /&gt;
# lifespan.&lt;br /&gt;
command_line {&lt;br /&gt;
       hdparm -B 255 /dev/sda&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
TODO: There are still 4 keys without functions attached: The &amp;lt;Fn+Space&amp;gt; key and the two additional keys beside the cursor keys. Also the &amp;lt;ThinkVantage&amp;gt; key has no function attached at the moment.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend did not work out of the box for me.&lt;br /&gt;
I had to change &amp;lt;/etc/default/acpi-support&amp;gt; to get it working.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/default/acpi-support&lt;br /&gt;
MODULES_WHITELIST=&amp;quot;ipw3945&amp;quot;&lt;br /&gt;
SAVE_VBE_STATE=false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then everything (suspend to ram, suspend to disk) were working.&lt;br /&gt;
&lt;br /&gt;
NOTE: When waking up, network-manager is crashing.&lt;br /&gt;
&lt;br /&gt;
== Graphics ==&lt;br /&gt;
When using an Intel GM965 card, external monitor on VGA port work using xrandr.&lt;br /&gt;
I was not able to get TV out (SVIDEO) working at all.&lt;br /&gt;
&lt;br /&gt;
== Fingerprint Reader ==&lt;br /&gt;
To use the fingerprint reader, refer to https://wiki.ubuntu.com/ThinkFinger&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;br /&gt;
&lt;br /&gt;
FireWire works.&lt;br /&gt;
&lt;br /&gt;
Not Tested: Cardbus (or what is the name of it now) and SD-Card reader.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35410</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35410"/>
		<updated>2007-12-27T23:08:31Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Modem */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
SKIP_CHECK=yes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I was unsuccessful to get the modem working with the linuxant drivers.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
This can easily be done by putting the following at the end of the file &amp;lt;/etc/hdparm.conf&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Disable power saving functions of harddrive, as it may limit it's&lt;br /&gt;
# lifespan.&lt;br /&gt;
command_line {&lt;br /&gt;
       hdparm -B 255 /dev/sda&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
TODO: There are still 4 keys without functions attached: The &amp;lt;Fn+Space&amp;gt; key and the two additional keys beside the cursor keys. Also the &amp;lt;ThinkVantage&amp;gt; key has no function attached at the moment.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend did not work out of the box for me.&lt;br /&gt;
I had to change &amp;lt;/etc/default/acpi-support&amp;gt; to get it working.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/default/acpi-support&lt;br /&gt;
MODULES_WHITELIST=&amp;quot;ipw3945&amp;quot;&lt;br /&gt;
SAVE_VBE_STATE=false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then everything (suspend to ram, suspend to disk) were working.&lt;br /&gt;
&lt;br /&gt;
NOTE: When waking up, network-manager is crashing.&lt;br /&gt;
&lt;br /&gt;
== Grapics ==&lt;br /&gt;
When using an Intel GM965 card, external monitor on VGA port work using xrandr.&lt;br /&gt;
I was not able to get TV out (SVIDEO) working at all.&lt;br /&gt;
&lt;br /&gt;
== Fingerprint Reader ==&lt;br /&gt;
To use the fingerprint reader, refer to https://wiki.ubuntu.com/ThinkFinger&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;br /&gt;
&lt;br /&gt;
FireWire works.&lt;br /&gt;
&lt;br /&gt;
Not Tested: Cardbus (or what is the name of it now) and SD-Card reader.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35409</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35409"/>
		<updated>2007-12-27T22:57:58Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Compiz */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
SKIP_CHECK=yes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I found a howto here &amp;lt;http://ubuntu-utah.ubuntuforums.org/showthread.php?p=3799761&amp;gt; to get the modem working on x86_64 (probably also works with x86).&lt;br /&gt;
I installed the driver and the module loads, the devices are created (/dev/ttySHSF*).&lt;br /&gt;
&lt;br /&gt;
Looks like it does not work for me and disables sound, as long as the driver is installed. But maybe someone else is lucky (especially the 32 Bit crowd)&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
This can easily be done by putting the following at the end of the file &amp;lt;/etc/hdparm.conf&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Disable power saving functions of harddrive, as it may limit it's&lt;br /&gt;
# lifespan.&lt;br /&gt;
command_line {&lt;br /&gt;
       hdparm -B 255 /dev/sda&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
TODO: There are still 4 keys without functions attached: The &amp;lt;Fn+Space&amp;gt; key and the two additional keys beside the cursor keys. Also the &amp;lt;ThinkVantage&amp;gt; key has no function attached at the moment.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend did not work out of the box for me.&lt;br /&gt;
I had to change &amp;lt;/etc/default/acpi-support&amp;gt; to get it working.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/default/acpi-support&lt;br /&gt;
MODULES_WHITELIST=&amp;quot;ipw3945&amp;quot;&lt;br /&gt;
SAVE_VBE_STATE=false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then everything (suspend to ram, suspend to disk) were working.&lt;br /&gt;
&lt;br /&gt;
NOTE: When waking up, network-manager is crashing.&lt;br /&gt;
&lt;br /&gt;
== Grapics ==&lt;br /&gt;
When using an Intel GM965 card, external monitor on VGA port work using xrandr.&lt;br /&gt;
I was not able to get TV out (SVIDEO) working at all.&lt;br /&gt;
&lt;br /&gt;
== Fingerprint Reader ==&lt;br /&gt;
To use the fingerprint reader, refer to https://wiki.ubuntu.com/ThinkFinger&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;br /&gt;
&lt;br /&gt;
FireWire works.&lt;br /&gt;
&lt;br /&gt;
Not Tested: Cardbus (or what is the name of it now) and SD-Card reader.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Intel_Graphics_Media_Accelerator_X3100&amp;diff=35407</id>
		<title>Intel Graphics Media Accelerator X3100</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Intel_Graphics_Media_Accelerator_X3100&amp;diff=35407"/>
		<updated>2007-12-27T17:49:23Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* SVideo port */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{| width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|style=&amp;quot;vertical-align:top&amp;quot; |&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 0; margin-right:10px; border: 1px solid #dfdfdf; padding: 0em 1em 1em 1em; background-color:#F8F8FF; align:right;&amp;quot;&amp;gt;&lt;br /&gt;
=== Intel Graphics Media Accelerator X3100 ===&lt;br /&gt;
This is an Intel video adapter&lt;br /&gt;
&lt;br /&gt;
=== Features ===&lt;br /&gt;
* Integrated into the following chipsets:&lt;br /&gt;
** [[Intel 965]]&lt;br /&gt;
* PCI ID: 8086:2A02&lt;br /&gt;
* Uses part of main memory for video usage&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|style=&amp;quot;vertical-align:top&amp;quot; |&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Linux X.Org driver ===&lt;br /&gt;
Supported by Xorg [http://www.x.org/wiki/IntelGraphicsDriver?highlight=%28intel%29%7C%28driver%29]. The driver supports hardware accelerated 3D via the Direct Rendering Infrastructure (DRI), but only in depths 16 and 24.&lt;br /&gt;
&lt;br /&gt;
Version 2.1.1 of the driver fixes a TV output problem.  Use xrandr to view the enabled screens in X.&lt;br /&gt;
&lt;br /&gt;
=== Linux Intel driver ===&lt;br /&gt;
There is a Graphics driver for the Mobile Intel 965 Express Chipset Family at [http://downloadfinder.intel.com/scripts-df-external/filter_results.aspx?strTypes=all&amp;amp;ProductID=2301&amp;amp;OSFullName=Linux*&amp;amp;lang=eng&amp;amp;strOSs=39&amp;amp;submit=Go%21 Intels Support Site]. This driver is just a snapshot of the Xorg/XFree86 driver.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== ThinkPad LCD ====&lt;br /&gt;
Display on the internal LCD works as long as you set the monitor settings correct.&lt;br /&gt;
&lt;br /&gt;
==== External VGA port ====&lt;br /&gt;
Works.  Dualhead is supported.  &lt;br /&gt;
&lt;br /&gt;
===== Dynamic configuration: XRandR =====&lt;br /&gt;
Since xorg&amp;gt;=7.3 and 2.2 intel driver, XRandR 1.2 works for adding/removing monitors on the fly. The only hard-coded thing is virtual desktop size in xorg.conf, which must always encompass all monitors and may not be changed at X runtime.&lt;br /&gt;
&lt;br /&gt;
 Section &amp;quot;Screen&amp;quot;&lt;br /&gt;
    [...]&lt;br /&gt;
    SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
       [...]&lt;br /&gt;
       Virtual 3072 3072 ## should be enough&lt;br /&gt;
    EndSubSection &lt;br /&gt;
 EndSection&lt;br /&gt;
&lt;br /&gt;
For the rest, see man xrandr, I have a script to turn on dual-head at work (self-explanatory):&lt;br /&gt;
&lt;br /&gt;
 xrandr --newmode &amp;quot;1440x900&amp;quot; 106.5 1440 1520 1672 1904 900 901 904 932 -HSync +VSync&lt;br /&gt;
 xrandr --addmode VGA 1440x900&lt;br /&gt;
 xrandr --output VGA --mode 1440x900&lt;br /&gt;
 xrandr --output VGA --right-of LVDS&lt;br /&gt;
&lt;br /&gt;
To disable external (VGA) screen,&lt;br /&gt;
 &lt;br /&gt;
 xrands --output VGA --off&lt;br /&gt;
&lt;br /&gt;
===== Static configuration via /etc/X11/xorg.conf =====&lt;br /&gt;
&lt;br /&gt;
There are two options for running the external VGA port - either as a copy of the LCD (clone) or as a separate workspace. Here is an example for the separate workspace mode for xorg.conf for the X60s:&lt;br /&gt;
      Be warned that making the following changes to xorg.conf &lt;br /&gt;
      on an X61 with the Intel 465 chipset           &lt;br /&gt;
      kills x and must be removed to regain a graphical display. &lt;br /&gt;
&lt;br /&gt;
    Section &amp;quot;Device&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Intel Corporation Mobile Integrated Graphics Controller&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;intel&amp;quot;&lt;br /&gt;
        BusID           &amp;quot;PCI:0:2:0&amp;quot;&lt;br /&gt;
        Option &amp;quot;MonitorLayout&amp;quot; &amp;quot;CRT,LFP&amp;quot;&lt;br /&gt;
        Option &amp;quot;DevicePresence&amp;quot; &amp;quot;true&amp;quot; &lt;br /&gt;
        Screen 1&lt;br /&gt;
    EndSection&lt;br /&gt;
    Section &amp;quot;Device&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Intel Corporation Mobile Integrated Graphics Controller External CRT&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;intel&amp;quot;&lt;br /&gt;
        BusID           &amp;quot;PCI:0:2:0&amp;quot;&lt;br /&gt;
        Screen 0&lt;br /&gt;
    EndSection&lt;br /&gt;
    Section &amp;quot;Monitor&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;LCD&amp;quot;&lt;br /&gt;
        Option          &amp;quot;DPMS&amp;quot;&lt;br /&gt;
    EndSection&lt;br /&gt;
&lt;br /&gt;
    Section &amp;quot;Monitor&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;External CRT&amp;quot;&lt;br /&gt;
        Option          &amp;quot;DPMS&amp;quot;&lt;br /&gt;
        HorizSync 28-75&lt;br /&gt;
        VertRefresh 43-100&lt;br /&gt;
    EndSection&lt;br /&gt;
&lt;br /&gt;
    Section &amp;quot;Screen&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;External Screen&amp;quot;&lt;br /&gt;
        Device          &amp;quot;Intel Corporation Mobile Integrated Graphics Controller External CRT&amp;quot;&lt;br /&gt;
        Monitor         &amp;quot;External CRT&amp;quot;&lt;br /&gt;
        DefaultDepth    24&lt;br /&gt;
        SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
                Depth           24&lt;br /&gt;
                Modes           &amp;quot;1280x1024&amp;quot;&lt;br /&gt;
        EndSubSection&lt;br /&gt;
    EndSection&lt;br /&gt;
&lt;br /&gt;
    Section &amp;quot;Screen&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Default Screen&amp;quot;&lt;br /&gt;
        Device          &amp;quot;Intel Corporation Mobile Integrated Graphics Controller&amp;quot;&lt;br /&gt;
        Monitor         &amp;quot;LCD&amp;quot;&lt;br /&gt;
        DefaultDepth    24&lt;br /&gt;
        SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
                Depth           1&lt;br /&gt;
                Modes           &amp;quot;1024x768&amp;quot;&lt;br /&gt;
        EndSubSection&lt;br /&gt;
    EndSection&lt;br /&gt;
&lt;br /&gt;
    Section &amp;quot;ServerLayout&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Default Layout&amp;quot;&lt;br /&gt;
        Screen          0 &amp;quot;Default Screen&amp;quot; 0 0&lt;br /&gt;
        Screen          1 &amp;quot;External Screen&amp;quot; RightOf &amp;quot;Default Screen&amp;quot;&lt;br /&gt;
        InputDevice     &amp;quot;Generic Keyboard&amp;quot;&lt;br /&gt;
        InputDevice     &amp;quot;Configured Mouse&amp;quot;&lt;br /&gt;
        InputDevice     &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
    EndSection&lt;br /&gt;
&lt;br /&gt;
Or try:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Section &amp;quot;ServerLayout&amp;quot;&lt;br /&gt;
  Identifier     &amp;quot;Default Layout&amp;quot;&lt;br /&gt;
  Option         &amp;quot;Xinerama&amp;quot;&lt;br /&gt;
  Screen      0  &amp;quot;Screen0&amp;quot; 0 0&lt;br /&gt;
  Screen      1  &amp;quot;Screen1&amp;quot; LeftOf &amp;quot;Screen0&amp;quot;&lt;br /&gt;
  InputDevice    &amp;quot;Keyboard0&amp;quot; &amp;quot;CoreKeyboard&amp;quot;&lt;br /&gt;
 EndSection&lt;br /&gt;
 &lt;br /&gt;
 Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
  Identifier  &amp;quot;Keyboard0&amp;quot;&lt;br /&gt;
  Driver      &amp;quot;kbd&amp;quot;&lt;br /&gt;
  Option	    &amp;quot;XkbModel&amp;quot; &amp;quot;pc105&amp;quot;&lt;br /&gt;
  Option	    &amp;quot;XkbLayout&amp;quot; &amp;quot;de&amp;quot;&lt;br /&gt;
  Option	    &amp;quot;XkbVariant&amp;quot; &amp;quot;nodeadkeys&amp;quot;&lt;br /&gt;
 EndSection&lt;br /&gt;
 &lt;br /&gt;
 Section &amp;quot;Monitor&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;Monitor2&amp;quot;&lt;br /&gt;
  ModelName    &amp;quot;Belinea 1905 G1&amp;quot;&lt;br /&gt;
  HorizSync    30.0 - 83.0&lt;br /&gt;
  VertRefresh  50.0 - 76.0&lt;br /&gt;
  Option	    &amp;quot;dpms&amp;quot;&lt;br /&gt;
 EndSection&lt;br /&gt;
 &lt;br /&gt;
 Section &amp;quot;Device&amp;quot;&lt;br /&gt;
  Identifier  &amp;quot;Videocard0&amp;quot;&lt;br /&gt;
  Driver      &amp;quot;intel&amp;quot;&lt;br /&gt;
  BusID       &amp;quot;PCI:0:2:0&amp;quot;&lt;br /&gt;
  Option      &amp;quot;MonitorLayout&amp;quot; &amp;quot;CRT,LFP&amp;quot;&lt;br /&gt;
  Option      &amp;quot;DevicePresence&amp;quot; &amp;quot;true&amp;quot;&lt;br /&gt;
  Screen      0&lt;br /&gt;
 EndSection&lt;br /&gt;
 &lt;br /&gt;
 Section &amp;quot;Screen&amp;quot;&lt;br /&gt;
  Identifier &amp;quot;Screen0&amp;quot;&lt;br /&gt;
  Device     &amp;quot;Videocard0&amp;quot;&lt;br /&gt;
  DefaultDepth     24&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
   Viewport   0 0&lt;br /&gt;
   Depth     24&lt;br /&gt;
   Modes    &amp;quot;1024x768&amp;quot; &amp;quot;800x600&amp;quot; &amp;quot;640x480&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
 EndSection&lt;br /&gt;
 &lt;br /&gt;
 Section &amp;quot;Device&amp;quot;&lt;br /&gt;
  Identifier  &amp;quot;Videocard1&amp;quot;&lt;br /&gt;
  Driver      &amp;quot;intel&amp;quot;&lt;br /&gt;
  BusID       &amp;quot;PCI:0:2:0&amp;quot;&lt;br /&gt;
  Option      &amp;quot;MonitorLayout&amp;quot; &amp;quot;CRT,LFP&amp;quot;&lt;br /&gt;
  Option      &amp;quot;DevicePresence&amp;quot; &amp;quot;true&amp;quot;&lt;br /&gt;
  Screen      1&lt;br /&gt;
 EndSection&lt;br /&gt;
 &lt;br /&gt;
 Section &amp;quot;Screen&amp;quot;&lt;br /&gt;
  Identifier &amp;quot;Screen1&amp;quot;&lt;br /&gt;
  Device     &amp;quot;Videocard1&amp;quot;&lt;br /&gt;
  DefaultDepth     24&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
   Viewport   0 0&lt;br /&gt;
   Depth     24&lt;br /&gt;
   Modes    &amp;quot;1280x1024&amp;quot; &amp;quot;1024x768&amp;quot; &amp;quot;800x600&amp;quot; &amp;quot;640x480&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
 EndSection&lt;br /&gt;
&lt;br /&gt;
Here is the relevant text for running the VGA port as a true clone (so even things like Xine video playback appears on both screens) of the internal LCD display:&lt;br /&gt;
&lt;br /&gt;
    Section &amp;quot;Device&amp;quot;&lt;br /&gt;
         Identifier &amp;quot;Videocard0&amp;quot;&lt;br /&gt;
         Driver &amp;quot;intel&amp;quot;&lt;br /&gt;
         BusID &amp;quot;PCI:0:2:0&amp;quot;&lt;br /&gt;
         Option &amp;quot;MonitorLayout&amp;quot; &amp;quot;NONE,LFP+CRT&amp;quot;&lt;br /&gt;
         Option &amp;quot;DevicePresence&amp;quot; &amp;quot;true&amp;quot;&lt;br /&gt;
         Option &amp;quot;CheckLid&amp;quot; &amp;quot;false&amp;quot;&lt;br /&gt;
         VendorName &amp;quot;Lenovo&amp;quot;&lt;br /&gt;
         BoardName &amp;quot;Intel Corporation Mobile Integrated Graphics Controller&amp;quot;&lt;br /&gt;
    EndSection&lt;br /&gt;
&lt;br /&gt;
==== SVideo port ====&lt;br /&gt;
&lt;br /&gt;
Does not work with Ubuntu 7.10.&lt;br /&gt;
See https://bugs.launchpad.net/ubuntu/+bug/178910&lt;br /&gt;
&lt;br /&gt;
==== DVI port ====&lt;br /&gt;
??&lt;br /&gt;
&lt;br /&gt;
Linux support status is unknown&lt;br /&gt;
&lt;br /&gt;
==== Suspend behaviour ====&lt;br /&gt;
* Required kernel parameters for suspend to ram: none&lt;br /&gt;
Nevertheless, you may get a blank screen on resume (for example on T61 with Ubuntu Gutsy). See [https://bugs.launchpad.net/ubuntu/+bug/134391 launchpad bug] for details.&lt;br /&gt;
&lt;br /&gt;
=== ThinkPads this chip may be found in ===&lt;br /&gt;
* {{X61}}, {{X61s}}, {{X61_Tablet}}, {{T61}}, {{R61}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Components]]&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35376</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35376"/>
		<updated>2007-12-26T17:43:43Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Modem */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I found a howto here &amp;lt;http://ubuntu-utah.ubuntuforums.org/showthread.php?p=3799761&amp;gt; to get the modem working on x86_64 (probably also works with x86).&lt;br /&gt;
I installed the driver and the module loads, the devices are created (/dev/ttySHSF*).&lt;br /&gt;
&lt;br /&gt;
Looks like it does not work for me and disables sound, as long as the driver is installed. But maybe someone else is lucky (especially the 32 Bit crowd)&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
This can easily be done by putting the following at the end of the file &amp;lt;/etc/hdparm.conf&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Disable power saving functions of harddrive, as it may limit it's&lt;br /&gt;
# lifespan.&lt;br /&gt;
command_line {&lt;br /&gt;
       hdparm -B 255 /dev/sda&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
TODO: There are still 4 keys without functions attached: The &amp;lt;Fn+Space&amp;gt; key and the two additional keys beside the cursor keys. Also the &amp;lt;ThinkVantage&amp;gt; key has no function attached at the moment.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend did not work out of the box for me.&lt;br /&gt;
I had to change &amp;lt;/etc/default/acpi-support&amp;gt; to get it working.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/default/acpi-support&lt;br /&gt;
MODULES_WHITELIST=&amp;quot;ipw3945&amp;quot;&lt;br /&gt;
SAVE_VBE_STATE=false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then everything (suspend to ram, suspend to disk) were working.&lt;br /&gt;
&lt;br /&gt;
NOTE: When waking up, network-manager is crashing.&lt;br /&gt;
&lt;br /&gt;
== Grapics ==&lt;br /&gt;
When using an Intel GM965 card, external monitor on VGA port work using xrandr.&lt;br /&gt;
I was not able to get TV out (SVIDEO) working at all.&lt;br /&gt;
&lt;br /&gt;
== Fingerprint Reader ==&lt;br /&gt;
To use the fingerprint reader, refer to https://wiki.ubuntu.com/ThinkFinger&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;br /&gt;
&lt;br /&gt;
FireWire works.&lt;br /&gt;
&lt;br /&gt;
Not Tested: Cardbus (or what is the name of it now) and SD-Card reader.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35375</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35375"/>
		<updated>2007-12-26T16:35:54Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Modem */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I found a howto here &amp;lt;http://ubuntu-utah.ubuntuforums.org/showthread.php?p=3799761&amp;gt; to get the modem working on x86_64 (probably also works with x86).&lt;br /&gt;
I installed the driver and the module loads, the devices are created (/dev/ttySHSF*).&lt;br /&gt;
&lt;br /&gt;
I was not able to test the functionality of the modem, but will report back after I had the chance of testing it.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
This can easily be done by putting the following at the end of the file &amp;lt;/etc/hdparm.conf&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Disable power saving functions of harddrive, as it may limit it's&lt;br /&gt;
# lifespan.&lt;br /&gt;
command_line {&lt;br /&gt;
       hdparm -B 255 /dev/sda&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
TODO: There are still 4 keys without functions attached: The &amp;lt;Fn+Space&amp;gt; key and the two additional keys beside the cursor keys. Also the &amp;lt;ThinkVantage&amp;gt; key has no function attached at the moment.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend did not work out of the box for me.&lt;br /&gt;
I had to change &amp;lt;/etc/default/acpi-support&amp;gt; to get it working.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/default/acpi-support&lt;br /&gt;
MODULES_WHITELIST=&amp;quot;ipw3945&amp;quot;&lt;br /&gt;
SAVE_VBE_STATE=false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then everything (suspend to ram, suspend to disk) were working.&lt;br /&gt;
&lt;br /&gt;
NOTE: When waking up, network-manager is crashing.&lt;br /&gt;
&lt;br /&gt;
== Grapics ==&lt;br /&gt;
When using an Intel GM965 card, external monitor on VGA port work using xrandr.&lt;br /&gt;
I was not able to get TV out (SVIDEO) working at all.&lt;br /&gt;
&lt;br /&gt;
== Fingerprint Reader ==&lt;br /&gt;
To use the fingerprint reader, refer to https://wiki.ubuntu.com/ThinkFinger&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;br /&gt;
&lt;br /&gt;
FireWire works.&lt;br /&gt;
&lt;br /&gt;
Not Tested: Cardbus (or what is the name of it now) and SD-Card reader.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35373</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35373"/>
		<updated>2007-12-26T14:35:51Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Suspend */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
When using a 64 bit installation, the modem does not work.&lt;br /&gt;
&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I haven't tested it.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
This can easily be done by putting the following at the end of the file &amp;lt;/etc/hdparm.conf&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Disable power saving functions of harddrive, as it may limit it's&lt;br /&gt;
# lifespan.&lt;br /&gt;
command_line {&lt;br /&gt;
       hdparm -B 255 /dev/sda&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
TODO: There are still 4 keys without functions attached: The &amp;lt;Fn+Space&amp;gt; key and the two additional keys beside the cursor keys. Also the &amp;lt;ThinkVantage&amp;gt; key has no function attached at the moment.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend did not work out of the box for me.&lt;br /&gt;
I had to change &amp;lt;/etc/default/acpi-support&amp;gt; to get it working.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/default/acpi-support&lt;br /&gt;
MODULES_WHITELIST=&amp;quot;ipw3945&amp;quot;&lt;br /&gt;
SAVE_VBE_STATE=false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then everything (suspend to ram, suspend to disk) were working.&lt;br /&gt;
&lt;br /&gt;
NOTE: When waking up, network-manager is crashing.&lt;br /&gt;
&lt;br /&gt;
== Grapics ==&lt;br /&gt;
When using an Intel GM965 card, external monitor on VGA port work using xrandr.&lt;br /&gt;
I was not able to get TV out (SVIDEO) working at all.&lt;br /&gt;
&lt;br /&gt;
== Fingerprint Reader ==&lt;br /&gt;
To use the fingerprint reader, refer to https://wiki.ubuntu.com/ThinkFinger&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;br /&gt;
&lt;br /&gt;
FireWire works.&lt;br /&gt;
&lt;br /&gt;
Not Tested: Cardbus (or what is the name of it now) and SD-Card reader.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35372</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35372"/>
		<updated>2007-12-26T14:34:08Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Misc Hardware */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
When using a 64 bit installation, the modem does not work.&lt;br /&gt;
&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I haven't tested it.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
This can easily be done by putting the following at the end of the file &amp;lt;/etc/hdparm.conf&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Disable power saving functions of harddrive, as it may limit it's&lt;br /&gt;
# lifespan.&lt;br /&gt;
command_line {&lt;br /&gt;
       hdparm -B 255 /dev/sda&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
TODO: There are still 4 keys without functions attached: The &amp;lt;Fn+Space&amp;gt; key and the two additional keys beside the cursor keys. Also the &amp;lt;ThinkVantage&amp;gt; key has no function attached at the moment.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend did not work out of the box for me.&lt;br /&gt;
I had to change &amp;lt;/etc/default/acpi-support&amp;gt; to get it working.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/default/acpi-support&lt;br /&gt;
MODULES_WHITELIST=&amp;quot;ipw3945&amp;quot;&lt;br /&gt;
SAVE_VBE_STATE=false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then everything (suspend to ram, suspend to disk) were working.&lt;br /&gt;
&lt;br /&gt;
== Grapics ==&lt;br /&gt;
When using an Intel GM965 card, external monitor on VGA port work using xrandr.&lt;br /&gt;
I was not able to get TV out (SVIDEO) working at all.&lt;br /&gt;
&lt;br /&gt;
== Fingerprint Reader ==&lt;br /&gt;
To use the fingerprint reader, refer to https://wiki.ubuntu.com/ThinkFinger&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;br /&gt;
&lt;br /&gt;
FireWire works.&lt;br /&gt;
&lt;br /&gt;
Not Tested: Cardbus (or what is the name of it now) and SD-Card reader.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35371</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35371"/>
		<updated>2007-12-26T14:31:18Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Thinkpad Buttons */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
When using a 64 bit installation, the modem does not work.&lt;br /&gt;
&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I haven't tested it.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
This can easily be done by putting the following at the end of the file &amp;lt;/etc/hdparm.conf&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Disable power saving functions of harddrive, as it may limit it's&lt;br /&gt;
# lifespan.&lt;br /&gt;
command_line {&lt;br /&gt;
       hdparm -B 255 /dev/sda&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
TODO: There are still 4 keys without functions attached: The &amp;lt;Fn+Space&amp;gt; key and the two additional keys beside the cursor keys. Also the &amp;lt;ThinkVantage&amp;gt; key has no function attached at the moment.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend did not work out of the box for me.&lt;br /&gt;
I had to change &amp;lt;/etc/default/acpi-support&amp;gt; to get it working.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/default/acpi-support&lt;br /&gt;
MODULES_WHITELIST=&amp;quot;ipw3945&amp;quot;&lt;br /&gt;
SAVE_VBE_STATE=false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then everything (suspend to ram, suspend to disk) were working.&lt;br /&gt;
&lt;br /&gt;
== Grapics ==&lt;br /&gt;
When using an Intel GM965 card, external monitor on VGA port work using xrandr.&lt;br /&gt;
I was not able to get TV out (SVIDEO) working at all.&lt;br /&gt;
&lt;br /&gt;
== Fingerprint Reader ==&lt;br /&gt;
To use the fingerprint reader, refer to https://wiki.ubuntu.com/ThinkFinger&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35370</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35370"/>
		<updated>2007-12-26T14:30:58Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Thinkpad Buttons */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
When using a 64 bit installation, the modem does not work.&lt;br /&gt;
&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I haven't tested it.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
This can easily be done by putting the following at the end of the file &amp;lt;/etc/hdparm.conf&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Disable power saving functions of harddrive, as it may limit it's&lt;br /&gt;
# lifespan.&lt;br /&gt;
command_line {&lt;br /&gt;
       hdparm -B 255 /dev/sda&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
TODO: There are still 4 keys without functions attached: The &amp;lt;Fn+Space&amp;gt; key and the two additional keys bedide the cursor keys. Also the &amp;lt;ThinkVantage&amp;gt; key has no function attached at the moment.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend did not work out of the box for me.&lt;br /&gt;
I had to change &amp;lt;/etc/default/acpi-support&amp;gt; to get it working.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/default/acpi-support&lt;br /&gt;
MODULES_WHITELIST=&amp;quot;ipw3945&amp;quot;&lt;br /&gt;
SAVE_VBE_STATE=false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then everything (suspend to ram, suspend to disk) were working.&lt;br /&gt;
&lt;br /&gt;
== Grapics ==&lt;br /&gt;
When using an Intel GM965 card, external monitor on VGA port work using xrandr.&lt;br /&gt;
I was not able to get TV out (SVIDEO) working at all.&lt;br /&gt;
&lt;br /&gt;
== Fingerprint Reader ==&lt;br /&gt;
To use the fingerprint reader, refer to https://wiki.ubuntu.com/ThinkFinger&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35369</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35369"/>
		<updated>2007-12-26T14:30:34Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Thinkpad Buttons */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
When using a 64 bit installation, the modem does not work.&lt;br /&gt;
&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I haven't tested it.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
This can easily be done by putting the following at the end of the file &amp;lt;/etc/hdparm.conf&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Disable power saving functions of harddrive, as it may limit it's&lt;br /&gt;
# lifespan.&lt;br /&gt;
command_line {&lt;br /&gt;
       hdparm -B 255 /dev/sda&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
TODO: There are still 4 keys without functions attached: The &amp;lt;Fn+Space&amp;gt; key and the two additional keys bedide the cursor keys. Also the &amp;lt;ThinkVantage&amp;gt; key has no function attached at the moment.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend did not work out of the box for me.&lt;br /&gt;
I had to change &amp;lt;/etc/default/acpi-support&amp;gt; to get it working.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/default/acpi-support&lt;br /&gt;
MODULES_WHITELIST=&amp;quot;ipw3945&amp;quot;&lt;br /&gt;
SAVE_VBE_STATE=false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then everything (suspend to ram, suspend to disk) were working.&lt;br /&gt;
&lt;br /&gt;
== Grapics ==&lt;br /&gt;
When using an Intel GM965 card, external monitor on VGA port work using xrandr.&lt;br /&gt;
I was not able to get TV out (SVIDEO) working at all.&lt;br /&gt;
&lt;br /&gt;
== Fingerprint Reader ==&lt;br /&gt;
To use the fingerprint reader, refer to https://wiki.ubuntu.com/ThinkFinger&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35368</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35368"/>
		<updated>2007-12-26T14:21:14Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Misc Hardware */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
When using a 64 bit installation, the modem does not work.&lt;br /&gt;
&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I haven't tested it.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
This can easily be done by putting the following at the end of the file &amp;lt;/etc/hdparm.conf&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Disable power saving functions of harddrive, as it may limit it's&lt;br /&gt;
# lifespan.&lt;br /&gt;
command_line {&lt;br /&gt;
       hdparm -B 255 /dev/sda&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend did not work out of the box for me.&lt;br /&gt;
I had to change &amp;lt;/etc/default/acpi-support&amp;gt; to get it working.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/default/acpi-support&lt;br /&gt;
MODULES_WHITELIST=&amp;quot;ipw3945&amp;quot;&lt;br /&gt;
SAVE_VBE_STATE=false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then everything (suspend to ram, suspend to disk) were working.&lt;br /&gt;
&lt;br /&gt;
== Grapics ==&lt;br /&gt;
When using an Intel GM965 card, external monitor on VGA port work using xrandr.&lt;br /&gt;
I was not able to get TV out (SVIDEO) working at all.&lt;br /&gt;
&lt;br /&gt;
== Fingerprint Reader ==&lt;br /&gt;
To use the fingerprint reader, refer to https://wiki.ubuntu.com/ThinkFinger&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35367</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35367"/>
		<updated>2007-12-26T14:19:55Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Grapics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
When using a 64 bit installation, the modem does not work.&lt;br /&gt;
&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I haven't tested it.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
This can easily be done by putting the following at the end of the file &amp;lt;/etc/hdparm.conf&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Disable power saving functions of harddrive, as it may limit it's&lt;br /&gt;
# lifespan.&lt;br /&gt;
command_line {&lt;br /&gt;
       hdparm -B 255 /dev/sda&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend did not work out of the box for me.&lt;br /&gt;
I had to change &amp;lt;/etc/default/acpi-support&amp;gt; to get it working.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/default/acpi-support&lt;br /&gt;
MODULES_WHITELIST=&amp;quot;ipw3945&amp;quot;&lt;br /&gt;
SAVE_VBE_STATE=false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then everything (suspend to ram, suspend to disk) were working.&lt;br /&gt;
&lt;br /&gt;
== Grapics ==&lt;br /&gt;
When using an Intel GM965 card, external monitor on VGA port work using xrandr.&lt;br /&gt;
I was not able to get TV out (SVIDEO) working at all.&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35366</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35366"/>
		<updated>2007-12-26T14:19:42Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Misc Hardware */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
When using a 64 bit installation, the modem does not work.&lt;br /&gt;
&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I haven't tested it.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
This can easily be done by putting the following at the end of the file &amp;lt;/etc/hdparm.conf&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Disable power saving functions of harddrive, as it may limit it's&lt;br /&gt;
# lifespan.&lt;br /&gt;
command_line {&lt;br /&gt;
       hdparm -B 255 /dev/sda&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend did not work out of the box for me.&lt;br /&gt;
I had to change &amp;lt;/etc/default/acpi-support&amp;gt; to get it working.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/default/acpi-support&lt;br /&gt;
MODULES_WHITELIST=&amp;quot;ipw3945&amp;quot;&lt;br /&gt;
SAVE_VBE_STATE=false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then everything (suspend to ram, suspend to disk) were working.&lt;br /&gt;
&lt;br /&gt;
== Grapics ==&lt;br /&gt;
When using an Intel GM965 card, external monitor on VGA port work using xrandr.&lt;br /&gt;
I was not able to get TV out (SVIDEO) working properly.&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35365</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35365"/>
		<updated>2007-12-26T14:17:34Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Hard disk */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
When using a 64 bit installation, the modem does not work.&lt;br /&gt;
&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I haven't tested it.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
This can easily be done by putting the following at the end of the file &amp;lt;/etc/hdparm.conf&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Disable power saving functions of harddrive, as it may limit it's&lt;br /&gt;
# lifespan.&lt;br /&gt;
command_line {&lt;br /&gt;
       hdparm -B 255 /dev/sda&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend did not work out of the box for me.&lt;br /&gt;
I had to change &amp;lt;/etc/default/acpi-support&amp;gt; to get it working.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/default/acpi-support&lt;br /&gt;
MODULES_WHITELIST=&amp;quot;ipw3945&amp;quot;&lt;br /&gt;
SAVE_VBE_STATE=false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then everything (suspend to ram, suspend to disk) were working.&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35364</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35364"/>
		<updated>2007-12-26T14:15:41Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Misc Hardware */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
When using a 64 bit installation, the modem does not work.&lt;br /&gt;
&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I haven't tested it.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend did not work out of the box for me.&lt;br /&gt;
I had to change &amp;lt;/etc/default/acpi-support&amp;gt; to get it working.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/default/acpi-support&lt;br /&gt;
MODULES_WHITELIST=&amp;quot;ipw3945&amp;quot;&lt;br /&gt;
SAVE_VBE_STATE=false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then everything (suspend to ram, suspend to disk) were working.&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35363</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35363"/>
		<updated>2007-12-26T14:12:58Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Misc Hardware */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
When using a 64 bit installation, the modem does not work.&lt;br /&gt;
&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I haven't tested it.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Thinkpad Buttons ==&lt;br /&gt;
&lt;br /&gt;
Most of the buttons of the thinkpad are already configured correctly, with two exceptions: the &amp;lt;Fn+F7&amp;gt; key and the &amp;lt;Fn+F9&amp;gt; key.&lt;br /&gt;
They can be activated quite easily.&lt;br /&gt;
&lt;br /&gt;
First edit /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/modprobe.d/thinkpad_acpi.modprobe&lt;br /&gt;
#options thinkpad_acpi hotkey=enable,0xffff8f experimental=1&lt;br /&gt;
options thinkpad_acpi hotkey=enable,0xffffff experimental=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This activates the deactivated key events, so that the next section works with them.&lt;br /&gt;
&lt;br /&gt;
Now for the &amp;lt;Fn+F7&amp;gt; key, I'm using grandr to configure the monitors. For this install grandr.&lt;br /&gt;
Then edit /etc/acpi/events/ibm-videobtn and change the action line to the path of grandr.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/ibmvideobtn&lt;br /&gt;
# This is called when the user presses the video button. It is currently&lt;br /&gt;
# a placeholder.&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001007&lt;br /&gt;
action=/usr/bin/grandr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is it for this key.&lt;br /&gt;
&lt;br /&gt;
For the &amp;lt;Fn+F9&amp;gt; key I set the function to let gnome handle the eject events. For this create a file &amp;lt;/etc/acpi/events/lenovo-eject&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/acpi/events/lenovo-eject&lt;br /&gt;
# This is called when the user presses the eject button&lt;br /&gt;
# /etc/acpi/lenovo-eject.sh to fake the key input&lt;br /&gt;
&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001009&lt;br /&gt;
action=/etc/acpi/ejectbtn.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And now gnome handles the eject requests.&lt;br /&gt;
I found the howto for the eject button in the net, but I've forgotton where. So thank you to the original author, if he is reading this. Sorry, no link.&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35362</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35362"/>
		<updated>2007-12-26T14:04:50Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Hard disk */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
When using a 64 bit installation, the modem does not work.&lt;br /&gt;
&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I haven't tested it.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
To use the Advanced Protection System, the package hdapsd has to be installed.&lt;br /&gt;
&lt;br /&gt;
Unfortunately the kernel module in gutsy has a bug (https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/138018), so the module does not load.&lt;br /&gt;
There are ways around that. (See http://www.thinkwiki.org/wiki/Tp_smapi#Installation).&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35361</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35361"/>
		<updated>2007-12-26T14:01:05Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Modem */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
When using a 64 bit installation, the modem does not work.&lt;br /&gt;
&lt;br /&gt;
There is a driver for 32 Bit installations (&lt;br /&gt;
http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=sl-modem&amp;amp;searchon=names&amp;amp;subword=1&amp;amp;version=all&amp;amp;release=all).&lt;br /&gt;
&lt;br /&gt;
I haven't tested it.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35360</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35360"/>
		<updated>2007-12-26T13:57:10Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Touchpad/Trackpoint */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
If you want to use synaptics configuration tools like gsynaptics, edit the xorg.conf file and add the &amp;lt;SHMConfig&amp;gt; option in the synaptics device entry.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
        Identifier      &amp;quot;Synaptics Touchpad&amp;quot;&lt;br /&gt;
        Driver          &amp;quot;synaptics&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SendCoreEvents&amp;quot;        &amp;quot;true&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Device&amp;quot;                &amp;quot;/dev/psaux&amp;quot;&lt;br /&gt;
        Option          &amp;quot;Protocol&amp;quot;              &amp;quot;auto-dev&amp;quot;&lt;br /&gt;
        Option          &amp;quot;HorizEdgeScroll&amp;quot;       &amp;quot;0&amp;quot;&lt;br /&gt;
        Option          &amp;quot;SHMConfig&amp;quot;             &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
Have not tested.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35359</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35359"/>
		<updated>2007-12-26T13:55:25Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Wireless */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
The same applies for the intel ipw3945 module.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
Have not tested.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35358</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35358"/>
		<updated>2007-12-26T13:54:57Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Compiz */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ~/.xine/config&lt;br /&gt;
video.driver=xshm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
Have not tested.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35357</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35357"/>
		<updated>2007-12-26T13:54:03Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Compiz */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the option there.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# /etc/compizconfig/config&lt;br /&gt;
&amp;lt;SKIP_CHECK=yes&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
Have not tested.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35356</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad R61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_R61&amp;diff=35356"/>
		<updated>2007-12-26T13:52:37Z</updated>

		<summary type="html">&lt;p&gt;Nin: /* Compiz */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki is about the R61 series laptops which come with a 14.1 inch widescreen lcd &amp;amp; Intel graphics cards inbuilt.&lt;br /&gt;
The live cd will detect the correct resolution and color depth.&lt;br /&gt;
&lt;br /&gt;
== Compiz ==&lt;br /&gt;
Default installation will not be able to enable compiz becasue of the way the Intel chipsets work. I have found the following script to get around it (credits to the original author).&lt;br /&gt;
Save the file as .sh and run it once to confirm you can get the compiz effects. You can add the file to your &amp;quot;Gnome Session&amp;quot; for subsequent reboots.&lt;br /&gt;
q&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
SKIP_CHECKS=yes compiz --replace&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A better way is to edit the file &amp;lt;/etc/compizconfig/config&amp;gt; and add the &amp;lt;SKIP_CHECK=yes&amp;gt; there. This way the setting will be available for all users of the laptop.&lt;br /&gt;
&lt;br /&gt;
I found that any program that uses Xv video will glich or just crash with compiz enabled, but not without it (The astronomy package &amp;quot;Stellarium&amp;quot; is one example).  &lt;br /&gt;
&lt;br /&gt;
Solution is to run from the command line:&lt;br /&gt;
 gstreamer-properties&lt;br /&gt;
switch to the video tab, and set the default output to Xwindows system (No Xv).  This will use a bit more processor power playing movies, but you get your video playback + compiz.&lt;br /&gt;
&lt;br /&gt;
To use gmplayer, the output has to be set to gl2 in the video preferences tab.&lt;br /&gt;
&lt;br /&gt;
To use xine, start the program once. It will crash, as the XV extension is not available.&lt;br /&gt;
Then edit the config file &amp;lt;~/.xine/config&amp;gt; and replace &amp;lt;video.driver=auto&amp;gt; with &amp;lt;video.driver=xshm&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
To use vlc, start it without any video and select Settings/Preferences.&lt;br /&gt;
Check Advanced Options and select the Video/Output modules option.&lt;br /&gt;
&lt;br /&gt;
There you can selct the default video output module. Use &amp;lt;X11 video output&amp;gt; and the player will work.&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
The wireless works out of the box with the Atheros driver.&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Sound card drivers are loaded out of the box but the default sound device is Microphone for some reason. You can see this by opening up the Volume Control window by right clicking on the taskbar volume applet and selecting &amp;quot;Open Volume Control&amp;quot;. Because of this the special Volume buttons will also change the volume of the Microphone. To change this, click on System-&amp;gt; Preferences -&amp;gt; Sound and set Default Mixer Track to PCM.&lt;br /&gt;
&lt;br /&gt;
== Touchpad/Trackpoint ==&lt;br /&gt;
Works out of the box, including thinkpad side-scrolling.&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
Works out of the box.&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
Have not tested.&lt;br /&gt;
&lt;br /&gt;
== Hard disk ==&lt;br /&gt;
It has been found that Gutsy will spin up and down your laptop hdd far too many times, this affects the life of the disk. You can perform these steps to avoid it.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hdparm -B 255 /dev/sdX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+bug/104535]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
hdaps module does not load, will be fixed in next kernel update:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133636&lt;br /&gt;
&lt;br /&gt;
== Misc Hardware ==&lt;br /&gt;
&lt;br /&gt;
The webcam / camera works (tested w/ snapshot) with the xfce windows manager (xubuntu), but seems to have some problems under the default ubuntu.  Bluetooth works from a default install.  [[ThinkLight]] works.&lt;/div&gt;</summary>
		<author><name>Nin</name></author>
		
	</entry>
</feed>