<?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=Sgla1</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=Sgla1"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Sgla1"/>
	<updated>2026-05-16T22:45:17Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_8.04_(Hardy_Heron)_on_a_ThinkPad_T61p&amp;diff=38822</id>
		<title>Installing Ubuntu 8.04 (Hardy Heron) on a ThinkPad T61p</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_8.04_(Hardy_Heron)_on_a_ThinkPad_T61p&amp;diff=38822"/>
		<updated>2008-09-15T08:53:14Z</updated>

		<summary type="html">&lt;p&gt;Sgla1: /* Screen brightness control */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What works out of the box?==&lt;br /&gt;
*Wireless (Intel 3945ABG or 4965AGN)&lt;br /&gt;
**Only tested G mode&lt;br /&gt;
**LED not working yet. Known issue in kernel driver.&lt;br /&gt;
*Wired LAN&lt;br /&gt;
*Video (VESA)&lt;br /&gt;
**Hardware Drivers panel offers to install NVidia proprietary drivers on first boot&lt;br /&gt;
*Touchpoint and Trackpad&lt;br /&gt;
**Including scroll at the right side of the pad&lt;br /&gt;
*Optical drive&lt;br /&gt;
**Optiarc AD-7910A&lt;br /&gt;
*Sound card&lt;br /&gt;
**No Microphone&lt;br /&gt;
*Memory card reader&lt;br /&gt;
**Only tested SD (non-HC) cards. Didn't take locked (read-only) cards.&lt;br /&gt;
*Control buttons/Hotkeys&lt;br /&gt;
**Volume control buttons&lt;br /&gt;
**Screen brightness control&lt;br /&gt;
**Thinklight control&lt;br /&gt;
**WLAN/BT/OFF toggle&lt;br /&gt;
**Media player control&lt;br /&gt;
*Some ACPI features&lt;br /&gt;
**Battery status, power graphs and history&lt;br /&gt;
**Lid states and events&lt;br /&gt;
**LCD brightness adjustment on power source&lt;br /&gt;
**Only tested with a single 6-cell battery&lt;br /&gt;
&lt;br /&gt;
==What needs some tweaks?==&lt;br /&gt;
*Suspend-to-RAM (Standby, Suspend)&lt;br /&gt;
*Microphone/Sound In&lt;br /&gt;
{{Todo|HDAPS (harddrive protection system)}}&lt;br /&gt;
&lt;br /&gt;
==What doesn't work at the moment?==&lt;br /&gt;
*Suspend-to-Disk (Hibernate)&lt;br /&gt;
*Wireless LAN power/activity LED&lt;br /&gt;
&lt;br /&gt;
== Display / Video ==&lt;br /&gt;
&lt;br /&gt;
To enable 3D acceleration, the proprietary NVidia driver must be installed. The first time you boot into Ubuntu, you should get an alert asking if you want to install the binary driver. If not, it can be installed from the Hardware Drivers panel at System --&amp;gt; Administration --&amp;gt; Hardware Drivers. &lt;br /&gt;
&lt;br /&gt;
If you want more options for configuring your video card than is provided by the Ubuntu control panels, you can install the NVidia Control Panel with&lt;br /&gt;
&lt;br /&gt;
{{cmduser| sudo apt-get install nvidia-settings}}&lt;br /&gt;
&lt;br /&gt;
which will add the NVidia X Server Settings panel to the Administration menu.&lt;br /&gt;
&lt;br /&gt;
Alternately, more recent versions of the NVidia driver and Control Panel can be installed using EnvyNG (envyng-gtk in Synaptic). Simply start it up (System Tools --&amp;gt; EnvyNG) and ask it to install the NVidia driver. Using the most recent binary drivers, or at least ones more recent that&lt;br /&gt;
those installed by the Hardware Drivers panel, is required for proper Suspend functionality.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, there are some annoying bugs in the NVidia driver.  The most annoying one is that after resuming from suspend, you will often get a blank white screen.  To get past it, simply type in your password and press enter, and you will be returned to your desktop.  Fortunately, Ubuntu has released a workaround for this bug, so it should go away once you update all your packages to the latest versions.&lt;br /&gt;
&lt;br /&gt;
Another problem is that the driver does not report the correct refresh rate to Compiz, resulting in rough animation.  To fix this, install the compizconfig-settings-manager package, then go to System --&amp;gt; Preferences --&amp;gt; Advanced Desktop Effects Settings.  Click on General Options, go to the Display Settings tab, uncheck the Detect Refresh rate box and drag the Refresh Rate slider to 60.  Also, check the Sync To VBlank box.&lt;br /&gt;
&lt;br /&gt;
Next, Compiz animations are also choppy due to NVidia's PowerMizer feature, which slows down the GPU to conserve power when it is not in use.  This works well for 3D games which constantly use 3D acceleration, but poorly for Compiz which uses the GPU in small bursts.  To solve this problem, I made a couple of shell scripts which keep the GPU at its highest speed while running on AC power.  The first one is named &amp;quot;powermizer-loop&amp;quot; and does most of the work:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 &lt;br /&gt;
 while true; do&lt;br /&gt;
     &lt;br /&gt;
     powerstate=`cat /proc/acpi/ac_adapter/AC/state | awk '{print $2}'`&lt;br /&gt;
     &lt;br /&gt;
     if [ $powerstate = &amp;quot;on-line&amp;quot;  ]; then&lt;br /&gt;
        nvidia-settings -q all &amp;gt; /dev/null&lt;br /&gt;
     fi&lt;br /&gt;
     sleep 25;&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
The second is named &amp;quot;powermizer-off&amp;quot; and starts up powermizer-loop when I log in, ensuring that only one copy runs at a time:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 &lt;br /&gt;
 killall powermizer-loop&lt;br /&gt;
 ~/powermizer-loop &amp;amp;&lt;br /&gt;
&lt;br /&gt;
I put both of these scripts in my home directory and made them executable by doing:&lt;br /&gt;
&lt;br /&gt;
 chmod 755 powermizer-loop powermizer-off&lt;br /&gt;
&lt;br /&gt;
Then to make powermizer-off run on login, I opened System --&amp;gt; Preferences --&amp;gt; Sessions, clicked on Add, and entered the command &amp;quot;/home/argilo/powermizer-off&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Of course, performance still suffers when running on battery, but hopefully NVidia will fix this problem in a future version of their driver.&lt;br /&gt;
&lt;br /&gt;
One final bug is that EDID (Extended Display Identification Data) is misdetected, which causes problems with font sizes and greatly reduces the number of resolutions available in the NVidia X Server Settings application.  (For example, I was unable to set my laptop's screen to 1024x768 for use with a projector during a presentation.)  To correct this problem, I added the following lines to /etc/X11/xorg.conf in the &amp;quot;Screen&amp;quot; section:&lt;br /&gt;
&lt;br /&gt;
 Option &amp;quot;UseEdidDpi&amp;quot; &amp;quot;FALSE&amp;quot;&lt;br /&gt;
 Option &amp;quot;DPI&amp;quot; &amp;quot;96 x 96&amp;quot;&lt;br /&gt;
 Option &amp;quot;UseEdidFreqs&amp;quot; &amp;quot;FALSE&amp;quot;&lt;br /&gt;
 Option &amp;quot;HorizSync&amp;quot; &amp;quot;40-70&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The first two lines fix the font size issue, and the last two lines fix the resolution problem.  I'm not sure if the 40-70 values are actually correct, since I just took them from someone else's xorg.conf, but they seem to work.&lt;br /&gt;
&lt;br /&gt;
NVidia seems to have corrected the EDID misdetection bug in the latest version of their driver, but it's not available in Hardy and I'm not aware of any easy way to install it.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend is supposed to work out of the box if you're not using the Nvidia binary drivers. If you are using them, make sure the are updated as explained in the Display/Video section, and the following instructions will fix suspend to ram. Suspend to disk (hibernate) is not working at this time.&lt;br /&gt;
&lt;br /&gt;
{{NOTE|These instructions worked on the T61p with type numbers 6460, 6457 (and perhaps 6465). It may also work with other type numbers.}}&lt;br /&gt;
&lt;br /&gt;
To get suspend to ram working, you need to edit a configuration file, which apparently has some bad information in it.&lt;br /&gt;
&lt;br /&gt;
{{cmduser |gksudo gedit /usr/share/hal/fdi/information/10freedesktop/20-video-quirk-pm-lenovo.fdi}}&lt;br /&gt;
&lt;br /&gt;
Find the following section:&lt;br /&gt;
      ...&lt;br /&gt;
      &amp;amp;lt;!-- T61 (8895), intel card 32bit works with S3_MODE, but 64bit needs VBE_MODE &lt;br /&gt;
 	      T61p (6460), does not work with the NVidia driver--&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;match key=&amp;quot;system.hardware.product&amp;quot; prefix_outof=&amp;quot;6457;6460;6465&amp;quot;&amp;amp;gt;&lt;br /&gt;
 	&amp;amp;lt;merge key=&amp;quot;power_management.quirk.s3_bios&amp;quot; type=&amp;quot;bool&amp;quot;&amp;amp;gt;true&amp;amp;lt;/merge&amp;amp;gt;&lt;br /&gt;
 	&amp;amp;lt;merge key=&amp;quot;power_management.quirk.vbemode_restore&amp;quot; type=&amp;quot;bool&amp;quot;&amp;amp;gt;true&amp;amp;lt;/merge&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;/match&amp;amp;gt;&lt;br /&gt;
 &lt;br /&gt;
      &amp;amp;lt;!-- These Thinkpads don\'t need a quirk: 6459 (T61p), 7664 (T60) see s2ram --&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;match key=&amp;quot;system.hardware.product&amp;quot; prefix_outof=&amp;quot;6459;7664;8918&amp;quot;&amp;amp;gt;&lt;br /&gt;
 	&amp;amp;lt;merge key=&amp;quot;power_management.quirk.none&amp;quot; type=&amp;quot;bool&amp;quot;&amp;amp;gt;true&amp;amp;lt;/merge&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;/match&amp;amp;gt;&lt;br /&gt;
 &lt;br /&gt;
      &amp;amp;lt;!-- Lenovos non-ThinkPads --&amp;amp;gt;&lt;br /&gt;
      ...&lt;br /&gt;
&lt;br /&gt;
Remove the &amp;lt;code&amp;gt;6457;6460;&amp;lt;/code&amp;gt; from the &amp;lt;code&amp;gt;&amp;amp;lt;match key=&amp;quot;system.hardware.product&amp;quot; prefix_outof=&amp;quot;6457;6460;6465&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; line and add the following lines right before the &amp;lt;code&amp;gt;&amp;amp;lt;!-- Lenovos non-ThinkPads --&amp;amp;gt;&amp;lt;/code&amp;gt; line:&lt;br /&gt;
      &amp;amp;lt;match key=&amp;quot;system.hardware.product&amp;quot; prefix_outof=&amp;quot;6457;6460&amp;quot;&amp;amp;gt;&lt;br /&gt;
 	&amp;amp;lt;merge key=&amp;quot;power_management.quirk.s3_bios&amp;quot; type=&amp;quot;bool&amp;quot;&amp;amp;gt;false&amp;amp;lt;/merge&amp;amp;gt;&lt;br /&gt;
 	&amp;amp;lt;merge key=&amp;quot;power_management.quirk.vbemode_restore&amp;quot; type=&amp;quot;bool&amp;quot;&amp;amp;gt;true&amp;amp;lt;/merge&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;/match&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
Based on [https://bugs.launchpad.net/ubuntu/+source/hal-info/+bug/235284 Bug #235284 in hal-info (Ubuntu)]&lt;br /&gt;
&lt;br /&gt;
On (at least) the 6457 model you'll need the latest binary Nvidia graphics drivers (173.14.09 at time of writing for Envy) to be able to resume from suspend. Additionally I have to switch to the X terminal manually by pressing alt+F7.&lt;br /&gt;
The sleep LED will blink for a while after resume, but will stop eventually and the wireless devices will be switched back on. You may experience some resetting of the display when that happens. Just move the cursor to regain your desktop. N.B. This does not seem to occur when waking after a long time of sleep.&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
If installed, bluetooth must be enabled with the command:&lt;br /&gt;
&lt;br /&gt;
{{cmduser | echo enable &amp;amp;#124; sudo tee /proc/acpi/ibm/bluetooth}}&lt;br /&gt;
&lt;br /&gt;
Replace enable with disable to turn it off.&lt;br /&gt;
&lt;br /&gt;
You can now connect devices by following the instructions at [https://help.ubuntu.com/community/BluetoothSetup Ubuntu Help Bluetooth Setup page]&lt;br /&gt;
{{NOTE|On (at least) the 6457 model the Bluetooth and Wireless LAN toggle button (Fn+F5) seems to work fine. Be aware of the additional hardware switch at the front of the machine. This needs to be in the green setting.}}&lt;br /&gt;
&lt;br /&gt;
== Internal Microphone/Microphone Input Jack ==&lt;br /&gt;
The microphone is muted out of the box. In order to enable it, double click on the the speaker icon in the task bar or run {{cmduser | gnome-volume-control}}. Under File &amp;gt; Change Device, select &amp;quot;Capture: ALSA PCM on front:0 (AD198x Analog) via DMA (PulseAudio Mixer)&amp;quot; and set the master slider to about 75%. Make sure that the mute and recording buttons below the slider do not show red Xs.&lt;br /&gt;
&lt;br /&gt;
Go back to the Change Device menu and select &amp;quot;HDA Intel (Alsa mixer)&amp;quot;. Then go to the edit menu and select preferences. In the window that opens, make sure that the boxes for Capture, Capture1, and both instances of Input Source. The Volume Control panel should now have four tabs: Playback, Recording, Switches and Options. In the options tab, select Internal Mic for the internal microphone or Mic for the mic input jack for both Input sources. As far as i can tell, the second one down doesn't seem to actually do anything. Now in the recording tab you can mute Capture 1 and adjust the sensitivity of the mic with the Capture slider. You can use Sound Recorder in Applications &amp;gt; Sound &amp;amp; Video to test out your settings.&lt;br /&gt;
&lt;br /&gt;
In the past, I have spent a fair amount of time messing with the PulseAudio settings on this install, so it would be great if someone with a relatively unaltered install could verify these instructions and post a confirmation. The main thing I did before was follow the PulseAudio howto here: [http://ubuntuforums.org/showthread.php?t=789578 HOWTO: PulseAudio Fixes &amp;amp; System-Wide Equalizer Support] [[User:Chazchaz101|Chazchaz101]] 11:05, 8 September 2008 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Kubuntu KDE 4.1 on the t61p ==&lt;br /&gt;
&lt;br /&gt;
=== What works? ===&lt;br /&gt;
&lt;br /&gt;
=== What does not work? ===&lt;br /&gt;
*Screen brightness control&lt;br /&gt;
*Volume control buttons&lt;br /&gt;
&lt;br /&gt;
=== Screen brightness control ===&lt;br /&gt;
There is a known bug in Kubuntu/KDE 4.1 which causes acpi_fakekey information to be lost.  This in turn breaks the /etc/acpi/video_brightnessdown.sh and video_brightnessup.sh scripts.  See https://bugs.launchpad.net/ubuntu/+source/kdeutils-kde4/+bug/223643&lt;br /&gt;
&lt;br /&gt;
Here's a workaround:  change the above scripts as follows:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root@t61p:/etc/acpi# cat video_brightnessdown.sh&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
brightness=$(cat /sys/class/backlight/acpi_video1/actual_brightness)&lt;br /&gt;
new_brightness=$[brightness-1]&lt;br /&gt;
echo $new_brightness &amp;gt; /sys/class/backlight/acpi_video1/brightness&lt;br /&gt;
&lt;br /&gt;
root@t61p:/etc/acpi# cat video_brightnessup.sh&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
brightness=$(cat /sys/class/backlight/acpi_video1/actual_brightness)&lt;br /&gt;
new_brightness=$[brightness+1]&lt;br /&gt;
echo $new_brightness &amp;gt; /sys/class/backlight/acpi_video1/brightness&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[[Category:T61p]]&lt;/div&gt;</summary>
		<author><name>Sgla1</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_8.04_(Hardy_Heron)_on_a_ThinkPad_T61p&amp;diff=38821</id>
		<title>Installing Ubuntu 8.04 (Hardy Heron) on a ThinkPad T61p</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_8.04_(Hardy_Heron)_on_a_ThinkPad_T61p&amp;diff=38821"/>
		<updated>2008-09-15T08:51:15Z</updated>

		<summary type="html">&lt;p&gt;Sgla1: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What works out of the box?==&lt;br /&gt;
*Wireless (Intel 3945ABG or 4965AGN)&lt;br /&gt;
**Only tested G mode&lt;br /&gt;
**LED not working yet. Known issue in kernel driver.&lt;br /&gt;
*Wired LAN&lt;br /&gt;
*Video (VESA)&lt;br /&gt;
**Hardware Drivers panel offers to install NVidia proprietary drivers on first boot&lt;br /&gt;
*Touchpoint and Trackpad&lt;br /&gt;
**Including scroll at the right side of the pad&lt;br /&gt;
*Optical drive&lt;br /&gt;
**Optiarc AD-7910A&lt;br /&gt;
*Sound card&lt;br /&gt;
**No Microphone&lt;br /&gt;
*Memory card reader&lt;br /&gt;
**Only tested SD (non-HC) cards. Didn't take locked (read-only) cards.&lt;br /&gt;
*Control buttons/Hotkeys&lt;br /&gt;
**Volume control buttons&lt;br /&gt;
**Screen brightness control&lt;br /&gt;
**Thinklight control&lt;br /&gt;
**WLAN/BT/OFF toggle&lt;br /&gt;
**Media player control&lt;br /&gt;
*Some ACPI features&lt;br /&gt;
**Battery status, power graphs and history&lt;br /&gt;
**Lid states and events&lt;br /&gt;
**LCD brightness adjustment on power source&lt;br /&gt;
**Only tested with a single 6-cell battery&lt;br /&gt;
&lt;br /&gt;
==What needs some tweaks?==&lt;br /&gt;
*Suspend-to-RAM (Standby, Suspend)&lt;br /&gt;
*Microphone/Sound In&lt;br /&gt;
{{Todo|HDAPS (harddrive protection system)}}&lt;br /&gt;
&lt;br /&gt;
==What doesn't work at the moment?==&lt;br /&gt;
*Suspend-to-Disk (Hibernate)&lt;br /&gt;
*Wireless LAN power/activity LED&lt;br /&gt;
&lt;br /&gt;
== Display / Video ==&lt;br /&gt;
&lt;br /&gt;
To enable 3D acceleration, the proprietary NVidia driver must be installed. The first time you boot into Ubuntu, you should get an alert asking if you want to install the binary driver. If not, it can be installed from the Hardware Drivers panel at System --&amp;gt; Administration --&amp;gt; Hardware Drivers. &lt;br /&gt;
&lt;br /&gt;
If you want more options for configuring your video card than is provided by the Ubuntu control panels, you can install the NVidia Control Panel with&lt;br /&gt;
&lt;br /&gt;
{{cmduser| sudo apt-get install nvidia-settings}}&lt;br /&gt;
&lt;br /&gt;
which will add the NVidia X Server Settings panel to the Administration menu.&lt;br /&gt;
&lt;br /&gt;
Alternately, more recent versions of the NVidia driver and Control Panel can be installed using EnvyNG (envyng-gtk in Synaptic). Simply start it up (System Tools --&amp;gt; EnvyNG) and ask it to install the NVidia driver. Using the most recent binary drivers, or at least ones more recent that&lt;br /&gt;
those installed by the Hardware Drivers panel, is required for proper Suspend functionality.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, there are some annoying bugs in the NVidia driver.  The most annoying one is that after resuming from suspend, you will often get a blank white screen.  To get past it, simply type in your password and press enter, and you will be returned to your desktop.  Fortunately, Ubuntu has released a workaround for this bug, so it should go away once you update all your packages to the latest versions.&lt;br /&gt;
&lt;br /&gt;
Another problem is that the driver does not report the correct refresh rate to Compiz, resulting in rough animation.  To fix this, install the compizconfig-settings-manager package, then go to System --&amp;gt; Preferences --&amp;gt; Advanced Desktop Effects Settings.  Click on General Options, go to the Display Settings tab, uncheck the Detect Refresh rate box and drag the Refresh Rate slider to 60.  Also, check the Sync To VBlank box.&lt;br /&gt;
&lt;br /&gt;
Next, Compiz animations are also choppy due to NVidia's PowerMizer feature, which slows down the GPU to conserve power when it is not in use.  This works well for 3D games which constantly use 3D acceleration, but poorly for Compiz which uses the GPU in small bursts.  To solve this problem, I made a couple of shell scripts which keep the GPU at its highest speed while running on AC power.  The first one is named &amp;quot;powermizer-loop&amp;quot; and does most of the work:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 &lt;br /&gt;
 while true; do&lt;br /&gt;
     &lt;br /&gt;
     powerstate=`cat /proc/acpi/ac_adapter/AC/state | awk '{print $2}'`&lt;br /&gt;
     &lt;br /&gt;
     if [ $powerstate = &amp;quot;on-line&amp;quot;  ]; then&lt;br /&gt;
        nvidia-settings -q all &amp;gt; /dev/null&lt;br /&gt;
     fi&lt;br /&gt;
     sleep 25;&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
The second is named &amp;quot;powermizer-off&amp;quot; and starts up powermizer-loop when I log in, ensuring that only one copy runs at a time:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 &lt;br /&gt;
 killall powermizer-loop&lt;br /&gt;
 ~/powermizer-loop &amp;amp;&lt;br /&gt;
&lt;br /&gt;
I put both of these scripts in my home directory and made them executable by doing:&lt;br /&gt;
&lt;br /&gt;
 chmod 755 powermizer-loop powermizer-off&lt;br /&gt;
&lt;br /&gt;
Then to make powermizer-off run on login, I opened System --&amp;gt; Preferences --&amp;gt; Sessions, clicked on Add, and entered the command &amp;quot;/home/argilo/powermizer-off&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Of course, performance still suffers when running on battery, but hopefully NVidia will fix this problem in a future version of their driver.&lt;br /&gt;
&lt;br /&gt;
One final bug is that EDID (Extended Display Identification Data) is misdetected, which causes problems with font sizes and greatly reduces the number of resolutions available in the NVidia X Server Settings application.  (For example, I was unable to set my laptop's screen to 1024x768 for use with a projector during a presentation.)  To correct this problem, I added the following lines to /etc/X11/xorg.conf in the &amp;quot;Screen&amp;quot; section:&lt;br /&gt;
&lt;br /&gt;
 Option &amp;quot;UseEdidDpi&amp;quot; &amp;quot;FALSE&amp;quot;&lt;br /&gt;
 Option &amp;quot;DPI&amp;quot; &amp;quot;96 x 96&amp;quot;&lt;br /&gt;
 Option &amp;quot;UseEdidFreqs&amp;quot; &amp;quot;FALSE&amp;quot;&lt;br /&gt;
 Option &amp;quot;HorizSync&amp;quot; &amp;quot;40-70&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The first two lines fix the font size issue, and the last two lines fix the resolution problem.  I'm not sure if the 40-70 values are actually correct, since I just took them from someone else's xorg.conf, but they seem to work.&lt;br /&gt;
&lt;br /&gt;
NVidia seems to have corrected the EDID misdetection bug in the latest version of their driver, but it's not available in Hardy and I'm not aware of any easy way to install it.&lt;br /&gt;
&lt;br /&gt;
== Suspend ==&lt;br /&gt;
Suspend is supposed to work out of the box if you're not using the Nvidia binary drivers. If you are using them, make sure the are updated as explained in the Display/Video section, and the following instructions will fix suspend to ram. Suspend to disk (hibernate) is not working at this time.&lt;br /&gt;
&lt;br /&gt;
{{NOTE|These instructions worked on the T61p with type numbers 6460, 6457 (and perhaps 6465). It may also work with other type numbers.}}&lt;br /&gt;
&lt;br /&gt;
To get suspend to ram working, you need to edit a configuration file, which apparently has some bad information in it.&lt;br /&gt;
&lt;br /&gt;
{{cmduser |gksudo gedit /usr/share/hal/fdi/information/10freedesktop/20-video-quirk-pm-lenovo.fdi}}&lt;br /&gt;
&lt;br /&gt;
Find the following section:&lt;br /&gt;
      ...&lt;br /&gt;
      &amp;amp;lt;!-- T61 (8895), intel card 32bit works with S3_MODE, but 64bit needs VBE_MODE &lt;br /&gt;
 	      T61p (6460), does not work with the NVidia driver--&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;match key=&amp;quot;system.hardware.product&amp;quot; prefix_outof=&amp;quot;6457;6460;6465&amp;quot;&amp;amp;gt;&lt;br /&gt;
 	&amp;amp;lt;merge key=&amp;quot;power_management.quirk.s3_bios&amp;quot; type=&amp;quot;bool&amp;quot;&amp;amp;gt;true&amp;amp;lt;/merge&amp;amp;gt;&lt;br /&gt;
 	&amp;amp;lt;merge key=&amp;quot;power_management.quirk.vbemode_restore&amp;quot; type=&amp;quot;bool&amp;quot;&amp;amp;gt;true&amp;amp;lt;/merge&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;/match&amp;amp;gt;&lt;br /&gt;
 &lt;br /&gt;
      &amp;amp;lt;!-- These Thinkpads don\'t need a quirk: 6459 (T61p), 7664 (T60) see s2ram --&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;match key=&amp;quot;system.hardware.product&amp;quot; prefix_outof=&amp;quot;6459;7664;8918&amp;quot;&amp;amp;gt;&lt;br /&gt;
 	&amp;amp;lt;merge key=&amp;quot;power_management.quirk.none&amp;quot; type=&amp;quot;bool&amp;quot;&amp;amp;gt;true&amp;amp;lt;/merge&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;/match&amp;amp;gt;&lt;br /&gt;
 &lt;br /&gt;
      &amp;amp;lt;!-- Lenovos non-ThinkPads --&amp;amp;gt;&lt;br /&gt;
      ...&lt;br /&gt;
&lt;br /&gt;
Remove the &amp;lt;code&amp;gt;6457;6460;&amp;lt;/code&amp;gt; from the &amp;lt;code&amp;gt;&amp;amp;lt;match key=&amp;quot;system.hardware.product&amp;quot; prefix_outof=&amp;quot;6457;6460;6465&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; line and add the following lines right before the &amp;lt;code&amp;gt;&amp;amp;lt;!-- Lenovos non-ThinkPads --&amp;amp;gt;&amp;lt;/code&amp;gt; line:&lt;br /&gt;
      &amp;amp;lt;match key=&amp;quot;system.hardware.product&amp;quot; prefix_outof=&amp;quot;6457;6460&amp;quot;&amp;amp;gt;&lt;br /&gt;
 	&amp;amp;lt;merge key=&amp;quot;power_management.quirk.s3_bios&amp;quot; type=&amp;quot;bool&amp;quot;&amp;amp;gt;false&amp;amp;lt;/merge&amp;amp;gt;&lt;br /&gt;
 	&amp;amp;lt;merge key=&amp;quot;power_management.quirk.vbemode_restore&amp;quot; type=&amp;quot;bool&amp;quot;&amp;amp;gt;true&amp;amp;lt;/merge&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;/match&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
Based on [https://bugs.launchpad.net/ubuntu/+source/hal-info/+bug/235284 Bug #235284 in hal-info (Ubuntu)]&lt;br /&gt;
&lt;br /&gt;
On (at least) the 6457 model you'll need the latest binary Nvidia graphics drivers (173.14.09 at time of writing for Envy) to be able to resume from suspend. Additionally I have to switch to the X terminal manually by pressing alt+F7.&lt;br /&gt;
The sleep LED will blink for a while after resume, but will stop eventually and the wireless devices will be switched back on. You may experience some resetting of the display when that happens. Just move the cursor to regain your desktop. N.B. This does not seem to occur when waking after a long time of sleep.&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
If installed, bluetooth must be enabled with the command:&lt;br /&gt;
&lt;br /&gt;
{{cmduser | echo enable &amp;amp;#124; sudo tee /proc/acpi/ibm/bluetooth}}&lt;br /&gt;
&lt;br /&gt;
Replace enable with disable to turn it off.&lt;br /&gt;
&lt;br /&gt;
You can now connect devices by following the instructions at [https://help.ubuntu.com/community/BluetoothSetup Ubuntu Help Bluetooth Setup page]&lt;br /&gt;
{{NOTE|On (at least) the 6457 model the Bluetooth and Wireless LAN toggle button (Fn+F5) seems to work fine. Be aware of the additional hardware switch at the front of the machine. This needs to be in the green setting.}}&lt;br /&gt;
&lt;br /&gt;
== Internal Microphone/Microphone Input Jack ==&lt;br /&gt;
The microphone is muted out of the box. In order to enable it, double click on the the speaker icon in the task bar or run {{cmduser | gnome-volume-control}}. Under File &amp;gt; Change Device, select &amp;quot;Capture: ALSA PCM on front:0 (AD198x Analog) via DMA (PulseAudio Mixer)&amp;quot; and set the master slider to about 75%. Make sure that the mute and recording buttons below the slider do not show red Xs.&lt;br /&gt;
&lt;br /&gt;
Go back to the Change Device menu and select &amp;quot;HDA Intel (Alsa mixer)&amp;quot;. Then go to the edit menu and select preferences. In the window that opens, make sure that the boxes for Capture, Capture1, and both instances of Input Source. The Volume Control panel should now have four tabs: Playback, Recording, Switches and Options. In the options tab, select Internal Mic for the internal microphone or Mic for the mic input jack for both Input sources. As far as i can tell, the second one down doesn't seem to actually do anything. Now in the recording tab you can mute Capture 1 and adjust the sensitivity of the mic with the Capture slider. You can use Sound Recorder in Applications &amp;gt; Sound &amp;amp; Video to test out your settings.&lt;br /&gt;
&lt;br /&gt;
In the past, I have spent a fair amount of time messing with the PulseAudio settings on this install, so it would be great if someone with a relatively unaltered install could verify these instructions and post a confirmation. The main thing I did before was follow the PulseAudio howto here: [http://ubuntuforums.org/showthread.php?t=789578 HOWTO: PulseAudio Fixes &amp;amp; System-Wide Equalizer Support] [[User:Chazchaz101|Chazchaz101]] 11:05, 8 September 2008 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Kubuntu KDE 4.1 on the t61p ==&lt;br /&gt;
&lt;br /&gt;
=== What works? ===&lt;br /&gt;
&lt;br /&gt;
=== What does not work? ===&lt;br /&gt;
*Screen brightness control&lt;br /&gt;
*Volume control buttons&lt;br /&gt;
&lt;br /&gt;
=== Screen brightness control ===&lt;br /&gt;
There is a known bug in Kubuntu/KDE 4.1 which causes acpi_fakekey information to be lost.  This in turn breaks the /etc/acpi/video_brightnessdown.sh and video_brightnessup.sh scripts.  See https://bugs.launchpad.net/ubuntu/+source/kdeutils-kde4/+bug/223643&lt;br /&gt;
&lt;br /&gt;
Here's a workaround:  change the above scripts as follows:&lt;br /&gt;
root@t61p:/etc/acpi# cat video_brightnessdown.sh&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
brightness=$(cat /sys/class/backlight/acpi_video1/actual_brightness)&lt;br /&gt;
new_brightness=$[brightness-1]&lt;br /&gt;
echo $new_brightness &amp;gt; /sys/class/backlight/acpi_video1/brightness&lt;br /&gt;
&lt;br /&gt;
root@t61p:/etc/acpi# cat video_brightnessup.sh&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
brightness=$(cat /sys/class/backlight/acpi_video1/actual_brightness)&lt;br /&gt;
new_brightness=$[brightness+1]&lt;br /&gt;
echo $new_brightness &amp;gt; /sys/class/backlight/acpi_video1/brightness&lt;br /&gt;
&lt;br /&gt;
[[Category:T61p]]&lt;/div&gt;</summary>
		<author><name>Sgla1</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Install_Ubuntu_Gutsy_Gibbon_on_a_T61p&amp;diff=36996</id>
		<title>Install Ubuntu Gutsy Gibbon on a T61p</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Install_Ubuntu_Gutsy_Gibbon_on_a_T61p&amp;diff=36996"/>
		<updated>2008-03-15T19:52:15Z</updated>

		<summary type="html">&lt;p&gt;Sgla1: /* Brightness */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installing Gutsy Gibbon (7.10) on a T61p ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
This document outlines configuring Ubuntu 7.10 (Gutsy Gibbon) on your Thinkpad T61p. Most items will work out of the box and a base install will provide you with an almost completely working system. Due to the modular nature of the T61 there are many different configuration, please read carefully and only make the changes specific to your system.&lt;br /&gt;
&lt;br /&gt;
Feel free to update this Wiki with your information however please ask questions on the Talk page.&lt;br /&gt;
&lt;br /&gt;
== Installation Notes ==&lt;br /&gt;
&lt;br /&gt;
Note: On lenovo t61p thinkpad with nVidia Corporation Quadro FX 570M graphics card the installer fails to create a usable xorg.conf file and the system reboots into an unusable black screen as X refuses to start. This is caused by the installer selecting the nv driver, which does not support this card. Using the vesa driver will allow X to start.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Install Ubuntu onto the laptop. The Live CD will boot in safe graphics mode for most users (but not all). However, the splash screen does not work for 64-bit users and perhaps 32-bit users as well. Be patient the system will boot, even though the screen is black. It may be faster to do the initial install using the alternate CD (text mode install).&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;After it is installed, fix issue: &amp;quot;no x session on first reboot after install&amp;quot; (see steps below)&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To fix this, you have to reboot into rescue mode and hand-edit xorg.conf to use vesa driver until the restricted nvidia driver is enabled.&lt;br /&gt;
&lt;br /&gt;
Steps:&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Choose Recovery Mode from the Grub boot menu.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Edit the xorg.conf file:&lt;br /&gt;
{{cmdroot|nano /etc/X11/xorg.conf}}&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Scroll down until you see the section listed below and replace &amp;lt;i&amp;gt;nv&amp;lt;/i&amp;gt; with &amp;lt;i&amp;gt;vesa&amp;lt;/i&amp;gt; on the driver line:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
Section &amp;quot;Device&amp;quot;&lt;br /&gt;
	Identifier	&amp;quot;nVidia Corporation G80 [Quadro FX 570M]&amp;quot;&lt;br /&gt;
	Driver		&amp;quot;nv&amp;quot;&lt;br /&gt;
	BusID		&amp;quot;PCI:1:0:0&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/code&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Hit {{key|Ctrl}}{{key|X}} to exit, {{key|Y}} then {{key|Enter}} to save.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Reboot: {{cmdroot|reboot}}&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You should now get the GUI login, but all of the accelerated graphics eye candy will be disabled until you have updated the nvidia drivers as per the Display/Video Section.&lt;br /&gt;
&lt;br /&gt;
If you have a Ubuntu 7.10 DVD, you could use the same to first launch a live CD version of Ubuntu. When the live CD boots up it asks for the installation of restricted nVidia drivers (internet connection required). Once the restricted drivers are installed. Use the &amp;quot;Install&amp;quot; option from the live CD session to start the installation of Ubuntu.&lt;br /&gt;
&lt;br /&gt;
==Alternate Fix==&lt;br /&gt;
#Boot from Ubuntu 7.10 Desktop CD&lt;br /&gt;
#If during the black screen you suspect that the Ubuntu Live CD is not going to boot, or you don't wish to wait, restart the installation and explicitly choose to install in safe graphics mode.&lt;br /&gt;
#When the safe graphics installation halts while trying to initialize the X server, press CTRL-ALT-F1 to bring up the command line.&lt;br /&gt;
#At the prompt, start X in Vesa mode with the command 'startx'.  Continue the Live CD install as usual, switching back to the GUI installation process with CTRL-ALT-Function key if there are interrupting messages from another X server startup process.&lt;br /&gt;
#When the system restarts, skip to the command line again and when X fails to start, type 'startx' again to go into vesa mode.&lt;br /&gt;
#Now install the restricted nvidia drivers to resolve the problem.&lt;br /&gt;
[http://ubuntuforums.org/showpost.php?p=3566807&amp;amp;postcount=16 Citation]&lt;br /&gt;
&lt;br /&gt;
== Display/Video ==&lt;br /&gt;
&lt;br /&gt;
The '''nv''' driver does not support the Nvidia 570M card at all. To enable accelerated 3D support click System-&amp;gt;Administration-&amp;gt;Restricted Drivers Manager. It will allow you to download and install an updated set of nvidia drivers. {{NOTE| If this is a fresh installation, you will get an error &amp;quot;can't get source for nvidia-glx-new&amp;quot;, which means you need to update the package list: first, be sure that in System-&amp;gt;Administration-&amp;gt;Software Sources, the entry &amp;quot;Proprietary drivers for devices (restricted)&amp;quot; is checked. Then either click System-&amp;gt;Administration-&amp;gt;Update Manager-&amp;gt;Check, or open a terminal and type &amp;quot;sudo apt-get update&amp;quot;.}} On the next reboot you should get accelerated support and full graphics resolution (but still no splashscreen).{{NOTE| If the Restricted Drivers Manager fails to install the driver you can use the Envy tool from: http://albertomilone.com/nvidia_scripts1.html.   This tool is unsupported and the only supported method of installing the Nvidia drivers is via Synaptic or the Restricted Drivers Manager}}&lt;br /&gt;
On the model with 1920x1200 video, the default fonts are very tiny. Change them with System-&amp;gt;Preferences-&amp;gt;Appearance-&amp;gt;Fonts-&amp;gt;Details.&lt;br /&gt;
&lt;br /&gt;
== Brightness ==&lt;br /&gt;
source: [[ Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad T61  ]]&lt;br /&gt;
====Nvidia Quadro N140 and 570M:====&lt;br /&gt;
The brightness controls do not work, however you can switch to a virtual terminal (ctrl+alt+F1) increase or decrease the brightness and then switch back to X (ctrl+alt+F7) without disrupting the running applications.   In a few rare cases switching back to X (ctrl+alt+7) may freeze your computer with a black screen so save any open documents before switching out.&lt;br /&gt;
&lt;br /&gt;
When using the '''vesa''' driver the brightness controls do work.  So this problem seems to be related to the '''nvidia''' driver.&lt;br /&gt;
&lt;br /&gt;
'''Update: Note that as of version 169.04 of the Nvidia driver brightness controls do work normally (with my 570M at least).'''  (Gutsy Gibbon 7.10 comes with restricted Nvidia driver version 100.14).   You can install the latest Nvidia binary drivers with &amp;quot;Envy&amp;quot; (see above)&lt;br /&gt;
&lt;br /&gt;
== Audio ==&lt;br /&gt;
*Fix ALSA:&lt;br /&gt;
Gutsy uses ALSA v1.0.14 by default. Unfortunately, the audio card is not supported using that version. The solution is to upgrade to v1.0.15 or above. At the time of this writing, there are no packages for this version; however, new users should search Synaptic because that will make the process much easier: search for alsa-base and determine whether the available version is at least v1.0.15. If there are no packages available, the driver must be compiled from source. Follow this guide http://ubuntuforums.org/showthread.php?t=612605 to install the alsa v1.0.15.&lt;br /&gt;
After restarting, open a terminal and run alsamixer. Use the left/right arrow keys to select the channels; make sure that PCM and headphone are not muted (use m key). Muting/unmuting input channels can cause interference, so experiment to produce the best sound quality. &lt;br /&gt;
--[[User:Jbrown96|Jbrown96]] 22:57, 24 December 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
I was unable to unmute sound using alsamixer or any other gui. Instead running this as root unmuted the channel and then everything worked fine. echo up &amp;gt; /proc/acpi/ibm/volume&lt;br /&gt;
--[[User:balsdorf|balsdorf]] 15:43, 30 January 2008&lt;br /&gt;
&lt;br /&gt;
Everything except the mic works fine for me with ALSA 1.0.14. When I unmute the internal mic in alsamixer, it plays the mic sounds out the speakers.&lt;br /&gt;
--[[User:Chazchaz101|Chazchaz101]] 07:17, 28 December 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
Same experience as Chazchaz101, but I could fix the microphone problem by adjusting the ALSA configuration as described in &lt;br /&gt;
source: [[Installing Ubuntu 7.10 (Gutsy_Gibbon) on a ThinkPad_T61#Microphone]].&lt;br /&gt;
--[[User:A-j|A-j]] 23:31, 28 January 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
*fix sound buttons:&lt;br /&gt;
source: [[Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T61|Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T61]]&lt;br /&gt;
&lt;br /&gt;
the volume control hotkeys are configured to control microphone volume out of the box.&lt;br /&gt;
&lt;br /&gt;
fix: If you're using Gnome, from the System menu, click Preferences -&amp;gt; Sound, and in the Default Mixer Tracks field, choose PCM.&lt;br /&gt;
&lt;br /&gt;
*fix volume control applet:&lt;br /&gt;
&lt;br /&gt;
the volume control applet is configured to control microphone volume out of the box.&lt;br /&gt;
&lt;br /&gt;
fix: If you're using Gnome, right-click the applet &amp;gt; preferences &amp;gt; Select the device and track to control &lt;br /&gt;
&lt;br /&gt;
**do not change device (s/b HDA Intel)&lt;br /&gt;
**change track from Microphone to PCM&lt;br /&gt;
&lt;br /&gt;
== Network/Internet ==&lt;br /&gt;
&lt;br /&gt;
Some users report that IPv6 has large negative impact on internet connection speed (wired and wireless) on Ubuntu 7.10. If you are experiencing this, the following steps will allow you to disable IPv6 and restore your connection speed.&lt;br /&gt;
{{NOTE|There is a workaround to improve connectivity for Firefox. On the Firefox address bar type '''about:config''' and look for '''network.dns.disableIPv6''' and change its value to '''true'''[[Image:Ubuntu710_Firefox_Fix.png]].}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Type the following in the terminal&lt;br /&gt;
{{cmduser|sudo gedit /etc/modprobe.d/aliases}}. The system may ask you to provide the Super User password. Once the file is opened, search for the following string, '''alias net-pf-10 ipv6'''.&lt;br /&gt;
Comment this line by prefixing a {{cmdresult|#}}. Now add a new line just below the commented line, '''alias net-pf-10 off'''.&lt;br /&gt;
 &lt;br /&gt;
[[Image:Update_to_Aliases.png]]&lt;br /&gt;
&lt;br /&gt;
Now, save the file and restart Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Reference: Youtube video. [http://www.youtube.com/watch?v=Sd8nHsUevAY How-To: Fix a Slow Internet Connection in Ubuntu 7.10].&lt;br /&gt;
&lt;br /&gt;
== Suspend with Nvidia Binary Driver ==&lt;br /&gt;
&lt;br /&gt;
*Fix suspend with Nvidia binary drivers:&lt;br /&gt;
&lt;br /&gt;
Follow the directions on the Ubuntu wiki. [https://help.ubuntu.com/community/NvidiaLaptopBinaryDriverSuspend Nvidia Binary Driver Suspend]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Bluetooth== &lt;br /&gt;
Bluetooth works out of the box. Pressing Fn-F5 once will enable bluetooth, disable wireless, pressing again, enable both and pressing one more time will disable bluetooth.  &lt;br /&gt;
&lt;br /&gt;
If you would like to set bluetooth state independently the script below determines the current bluetooth state and toggles the device on or off. &lt;br /&gt;
&lt;br /&gt;
First create a new file named bluetooth-toggle:&lt;br /&gt;
{{cmdroot|sudo touch /usr/sbin/bluetooth-toggle}}&lt;br /&gt;
&lt;br /&gt;
Now open a editor:&lt;br /&gt;
{{cmdroot|sudo gedit /usr/sbin/bluetooth-toggle}}&lt;br /&gt;
&lt;br /&gt;
Paste the following script:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 cat /proc/acpi/ibm/bluetooth | awk '{ print $2 }' | while read line;&lt;br /&gt;
  do&lt;br /&gt;
    if [ $line == &amp;quot;enabled&amp;quot; ]; then&lt;br /&gt;
        echo disable &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
    else&lt;br /&gt;
        echo enable &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
    fi&lt;br /&gt;
    break&lt;br /&gt;
  done&lt;br /&gt;
&lt;br /&gt;
Now set the execute permissions: &lt;br /&gt;
{{cmdroot|sudo chmod +x /usr/sbin/bluetooth-toggle}}&lt;br /&gt;
&lt;br /&gt;
You can invoke the script out of the console by typing sudo bluetooth-toggle or create a menu icon by using the menu editor under preferences using gksudo bluetooth-toggle as command line.&lt;br /&gt;
&lt;br /&gt;
source: [[Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad T61]]&lt;br /&gt;
&lt;br /&gt;
You can also create a launcher for this script that you can stick in the GNOME panel.&lt;br /&gt;
&lt;br /&gt;
==Fingerprint Reader==&lt;br /&gt;
&lt;br /&gt;
The [http://thinkfinger.sourceforge.net/ Thinkfinger] package allows you to swipe a finger in most places where you would have to type your password. At least for me, the most recent (0.3) version used here works with sudo, gksudo and on the login page but not with the the screen saver. Also, you are still required to type your user name on the login screen.&lt;br /&gt;
&lt;br /&gt;
There appears to be a method to make the reader work for the screensaver, but I haven't tested it yet.&lt;br /&gt;
&lt;br /&gt;
1) Add the launchpad repository to your sources:&lt;br /&gt;
{{cmduser| sudo gedit /etc/apt/sources.lst}}&lt;br /&gt;
note: if that file is not present or empty, try &lt;br /&gt;
{{cmduser| sudo gedit /etc/apt/sources.list}}&lt;br /&gt;
add the lines:&lt;br /&gt;
 ## LAUNCHPAD REPOSITORY&lt;br /&gt;
 deb http://ppa.launchpad.net/jldugger/ubuntu gutsy main restricted universe multiverse&lt;br /&gt;
 deb-src http://ppa.launchpad.net/jldugger/ubuntu gutsy main restricted universe multiverse&lt;br /&gt;
&lt;br /&gt;
2) Install the following packages:&lt;br /&gt;
&lt;br /&gt;
{{cmduser| sudo apt-get install thinkfinger-tools  libpam-thinkfinger libthinkfinger0}}&lt;br /&gt;
&lt;br /&gt;
3) Test the package installation and connection to the reader:&lt;br /&gt;
&lt;br /&gt;
{{cmduser| sudo tf-tool --acquire &amp;amp;&amp;amp; sudo tf-tool --verify}}&lt;br /&gt;
&lt;br /&gt;
A completed test should look something like this:&lt;br /&gt;
&lt;br /&gt;
 frank@Laptop:~$ sudo tf-tool --acquire &amp;amp;&amp;amp; sudo tf-tool --verify&lt;br /&gt;
 &lt;br /&gt;
 ThinkFinger 0.3 (http://thinkfinger.sourceforge.net/)&lt;br /&gt;
 Copyright (C) 2006, 2007 Timo Hoenig &amp;lt;thoenig@suse.de&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 Initializing... done.&lt;br /&gt;
 Please swipe your finger (successful swipes 3/3, failed swipes: 0)... done.&lt;br /&gt;
 Storing data (/tmp/test.bir)... done.&lt;br /&gt;
 &lt;br /&gt;
 ThinkFinger 0.3 (http://thinkfinger.sourceforge.net/)&lt;br /&gt;
 Copyright (C) 2006, 2007 Timo Hoenig &amp;lt;thoenig@suse.de&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 Initializing... done.&lt;br /&gt;
 Please swipe your finger (successful swipes 1/1, failed swipes: 0)... done.&lt;br /&gt;
 Result: Fingerprint does match.&lt;br /&gt;
 frank@CLaptop:~$&lt;br /&gt;
&lt;br /&gt;
4) Enable use of reader for authentication:&lt;br /&gt;
&lt;br /&gt;
{{cmduser| sudo gedit /etc/pam.d/common-auth}}&lt;br /&gt;
&lt;br /&gt;
add&lt;br /&gt;
 auth    sufficient      pam_thinkfinger.so&lt;br /&gt;
before the pam_unix.so line and&lt;br /&gt;
 try_first_pass&lt;br /&gt;
to the end of the pam_unix.so line.&lt;br /&gt;
&lt;br /&gt;
5) Add User(s):&lt;br /&gt;
For each user:&lt;br /&gt;
{{cmduser| sudo tf-tool --add-user your_user_name}}&lt;br /&gt;
&lt;br /&gt;
You can safely ignore the error:&lt;br /&gt;
 Unable to set ACL of aquired file: /etc/pam_thinkfinger/charlie.bir: Operation not supported&lt;br /&gt;
&lt;br /&gt;
6) Check uinput kernel module:&lt;br /&gt;
&lt;br /&gt;
{{cmduser|lsmod &amp;amp;#124; grep uinput}}&lt;br /&gt;
If the output starts with uinput, then you're done.&lt;br /&gt;
If you don't get any output, then it needs to be started and set to start on boot.&lt;br /&gt;
&lt;br /&gt;
Start uinput:&lt;br /&gt;
{{cmduser|sudo modprobe uinput}}&lt;br /&gt;
&lt;br /&gt;
Start on boot:&lt;br /&gt;
{{cmduser|sudo gedit /etc/modules}}&lt;br /&gt;
add the line:&lt;br /&gt;
 uinput&lt;br /&gt;
&lt;br /&gt;
At this point, you should be ready to swipe!&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
* Install ThinkFinger on Ubuntu: https://wiki.ubuntu.com/ThinkFinger&lt;br /&gt;
* [[Installing_Ubuntu_6.06_on_a_ThinkPad_T43#Fingerprint_Reader|Installing Ubuntu 6.06 on a ThinkPad T43]]&lt;/div&gt;</summary>
		<author><name>Sgla1</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Install_Ubuntu_Gutsy_Gibbon_on_a_T61p&amp;diff=34066</id>
		<title>Install Ubuntu Gutsy Gibbon on a T61p</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Install_Ubuntu_Gutsy_Gibbon_on_a_T61p&amp;diff=34066"/>
		<updated>2007-10-22T05:34:32Z</updated>

		<summary type="html">&lt;p&gt;Sgla1: /* Audio */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installing Gutsy Gibbon (7.10) on a T61p ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Introduction ===&lt;br /&gt;
&lt;br /&gt;
This document outlines configuring Ubuntu 7.10 (Gutsy Gibbon) on your Thinkpad T61p. Most items will work out of the box and a base install will provide you with an almost completely working system. Due to the modular nature of the T61 there are many different configuration, please read carefully and only make the changes specific to your system.&lt;br /&gt;
&lt;br /&gt;
Feel free to update this Wiki with your information however please ask questions on the Talk page.&lt;br /&gt;
&lt;br /&gt;
=== Installation Notes ===&lt;br /&gt;
&lt;br /&gt;
*Booting with the live CD not tested; there are no problems with graphics during install with the 'alternate' cd &lt;br /&gt;
&lt;br /&gt;
*fix no x session on first reboot after install &lt;br /&gt;
&lt;br /&gt;
On lenovo t61p thinkpad with nVidia Corporation Quadro FX 570M graphics card the installer fails to create a usable xorg.conf file and the system reboots into an unusable black screen as x refuses to start. The installer selects the nv driver, which does not support this card.&lt;br /&gt;
&lt;br /&gt;
fix: reboot into rescue mode and hand-edit xorg.conf to use vesa driver until the restricted nvidia driver is enabled.&lt;br /&gt;
&lt;br /&gt;
== Display/Video ==&lt;br /&gt;
&lt;br /&gt;
The '''nv''' driver does not support the Nvidia 570M card at all. To enable accelerated 3D support click System-&amp;gt;Administration-&amp;gt;Restricted Drivers Manager   {{NOTE| If the Restricted Drivers Manager fails to install the driver you can use the Envy tool from: http://albertomilone.com/nvidia_scripts1.html.   This tool is unsupported and the only supported method of installing the Nvidia drivers is via Synaptics and the Restricted Drivers Manager}}&lt;br /&gt;
&lt;br /&gt;
=== Brightness ===&lt;br /&gt;
source: [[ Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad T61  ]]&lt;br /&gt;
====Nvidia Quadro N140 and 570M:====&lt;br /&gt;
The brightness controls do not work, however you can switch to a virtual terminal (ctrl+alt+F1) increase or decrease the brightness and then switch back to X (ctrl+alt+F7) without disrupting the running applications.   In a few rare cases switching back to X (ctrl+alt+7) may freeze your computer with a black screen so save any open documents before switching out.&lt;br /&gt;
&lt;br /&gt;
When using the '''vesa''' driver the brightness controls do work.  So this problem seems to be related to the '''nvidia''' driver.&lt;br /&gt;
&lt;br /&gt;
== Audio ==&lt;br /&gt;
*fix sound buttons:&lt;br /&gt;
source: [[Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T61|Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T61]]&lt;br /&gt;
&lt;br /&gt;
the volume control hotkeys are configured to control microphone volume out of the box.&lt;br /&gt;
&lt;br /&gt;
fix: If you're using Gnome, from the System menu, click Preferences -&amp;gt; Sound, and in the Default Mixer Tracks field, choose PCM.&lt;br /&gt;
&lt;br /&gt;
*fix volume control applet:&lt;br /&gt;
&lt;br /&gt;
the volume control applet is configured to control microphone volume out of the box.&lt;br /&gt;
&lt;br /&gt;
fix: If you're using Gnome, right-click the applet &amp;gt; preferences &amp;gt; Select the device and track to control &lt;br /&gt;
&lt;br /&gt;
**do not change device (s/b HDA Intel)&lt;br /&gt;
**change track from Microphone to PCM&lt;/div&gt;</summary>
		<author><name>Sgla1</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Install_Ubuntu_Gutsy_Gibbon_on_a_T61p&amp;diff=34056</id>
		<title>Install Ubuntu Gutsy Gibbon on a T61p</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Install_Ubuntu_Gutsy_Gibbon_on_a_T61p&amp;diff=34056"/>
		<updated>2007-10-21T21:52:28Z</updated>

		<summary type="html">&lt;p&gt;Sgla1: /* Nvidia Quadro N140 and 570M: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installing Gutsy Gibbon (7.10) on a T61p ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Introduction ===&lt;br /&gt;
&lt;br /&gt;
This document outlines configuring Ubuntu 7.10 (Gutsy Gibbon) on your Thinkpad T61p. Most items will work out of the box and a base install will provide you with an almost completely working system. Due to the modular nature of the T61 there are many different configuration, please read carefully and only make the changes specific to your system.&lt;br /&gt;
&lt;br /&gt;
Feel free to update this Wiki with your information however please ask questions on the Talk page.&lt;br /&gt;
&lt;br /&gt;
=== Installation Notes ===&lt;br /&gt;
&lt;br /&gt;
*Booting with the live CD not tested; there are no problems with graphics during install with the 'alternate' cd &lt;br /&gt;
&lt;br /&gt;
*fix no x session on first reboot after install &lt;br /&gt;
&lt;br /&gt;
On lenovo t61p thinkpad with nVidia Corporation Quadro FX 570M graphics card the installer fails to create a usable xorg.conf file and the system reboots into an unusable black screen as x refuses to start. The installer selects the nv driver, which does not support this card.&lt;br /&gt;
&lt;br /&gt;
fix: reboot into rescue mode and hand-edit xorg.conf to use vesa driver until the restricted nvidia driver is enabled.&lt;br /&gt;
&lt;br /&gt;
== Display/Video ==&lt;br /&gt;
&lt;br /&gt;
The '''nv''' driver does not support the Nvidia 570M card at all. To enable accelerated 3D support click System-&amp;gt;Administration-&amp;gt;Restricted Drivers Manager   {{NOTE| If the Restricted Drivers Manager fails to install the driver you can use the Envy tool from: http://albertomilone.com/nvidia_scripts1.html.   This tool is unsupported and the only supported method of installing the Nvidia drivers is via Synaptics and the Restricted Drivers Manager}}&lt;br /&gt;
&lt;br /&gt;
=== Brightness ===&lt;br /&gt;
source: [[ Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad T61  ]]&lt;br /&gt;
====Nvidia Quadro N140 and 570M:====&lt;br /&gt;
The brightness controls do not work, however you can switch to a virtual terminal (ctrl+alt+F1) increase or decrease the brightness and then switch back to X (ctrl+alt+F7) without disrupting the running applications.   In a few rare cases switching back to X (ctrl+alt+7) may freeze your computer with a black screen so save any open documents before switching out.&lt;br /&gt;
&lt;br /&gt;
When using the '''vesa''' driver the brightness controls do work.  So this problem seems to be related to the '''nvidia''' driver.&lt;br /&gt;
&lt;br /&gt;
== Audio ==&lt;br /&gt;
*fix sound buttons:&lt;br /&gt;
source: [[Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T61|Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T61]]&lt;br /&gt;
the volume control hotkeys are configured to control microphone volume out of the box.&lt;br /&gt;
&lt;br /&gt;
fix: If you're using Gnome, from the System menu, click Preferences -&amp;gt; Sound, and in the Default Mixer Tracks field, choose PCM.&lt;br /&gt;
&lt;br /&gt;
*fix volume control applet:&lt;br /&gt;
the volume control applet is configured to control microphone volume out of the box.&lt;br /&gt;
&lt;br /&gt;
fix: If you're using Gnome, right-click the applet &amp;gt; preferences &amp;gt; Select the device and track to control &lt;br /&gt;
**do not change device (s/b HDA Intel)&lt;br /&gt;
**change track from Microphone to PCM&lt;/div&gt;</summary>
		<author><name>Sgla1</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Install_Ubuntu_Gutsy_Gibbon_on_a_T61p&amp;diff=34055</id>
		<title>Install Ubuntu Gutsy Gibbon on a T61p</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Install_Ubuntu_Gutsy_Gibbon_on_a_T61p&amp;diff=34055"/>
		<updated>2007-10-21T20:02:14Z</updated>

		<summary type="html">&lt;p&gt;Sgla1: /* Display/Video */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installing Gutsy Gibbon (7.10) on a T61p ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Introduction ===&lt;br /&gt;
&lt;br /&gt;
This document outlines configuring Ubuntu 7.10 (Gutsy Gibbon) on your Thinkpad T61p. Most items will work out of the box and a base install will provide you with an almost completely working system. Due to the modular nature of the T61 there are many different configuration, please read carefully and only make the changes specific to your system.&lt;br /&gt;
&lt;br /&gt;
Feel free to update this Wiki with your information however please ask questions on the Talk page.&lt;br /&gt;
&lt;br /&gt;
=== Installation Notes ===&lt;br /&gt;
&lt;br /&gt;
*Booting with the live CD not tested; there are no problems with graphics during install with the 'alternate' cd &lt;br /&gt;
&lt;br /&gt;
*fix no x session on first reboot after install &lt;br /&gt;
&lt;br /&gt;
On lenovo t61p thinkpad with nVidia Corporation Quadro FX 570M graphics card the installer fails to create a usable xorg.conf file and the system reboots into an unusable black screen as x refuses to start. The installer selects the nv driver, which does not support this card.&lt;br /&gt;
&lt;br /&gt;
fix: reboot into rescue mode and hand-edit xorg.conf to use vesa driver until the restricted nvidia driver is enabled.&lt;br /&gt;
&lt;br /&gt;
== Display/Video ==&lt;br /&gt;
&lt;br /&gt;
The '''nv''' driver does not support the Nvidia 570M card at all. To enable accelerated 3D support click System-&amp;gt;Administration-&amp;gt;Restricted Drivers Manager   {{NOTE| If the Restricted Drivers Manager fails to install the driver you can use the Envy tool from: http://albertomilone.com/nvidia_scripts1.html.   This tool is unsupported and the only supported method of installing the Nvidia drivers is via Synaptics and the Restricted Drivers Manager}}&lt;br /&gt;
&lt;br /&gt;
=== Brightness ===&lt;br /&gt;
source: [[ Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad T61  ]]&lt;br /&gt;
====Nvidia Quadro N140 and 570M:====&lt;br /&gt;
The brightness controls do not work, however you can switch to a virtual terminal (ctrl+alt+F1) increase or decrease the brightness and then switch back to X (ctrl+alt+F7) without disrupting the running applications.   In a few rare cases switching back to X (ctrl+alt+7) may freeze your computer with a black screen so save any open documents before switching out.&lt;br /&gt;
&lt;br /&gt;
It appears that brightness is not controlled by /proc/acpi/ibm/brightness.&lt;br /&gt;
&lt;br /&gt;
With brightness adjusted to the lowest level as per above:&lt;br /&gt;
&lt;br /&gt;
{{cmduser|cat /proc/acpi/ibm/brightness }}&lt;br /&gt;
&lt;br /&gt;
{{cmdresult|&lt;br /&gt;
level:          0 &amp;lt;br&amp;gt;&lt;br /&gt;
commands:       up, down&amp;lt;br&amp;gt;&lt;br /&gt;
commands:       level &amp;lt;level&amp;gt; (&amp;lt;level&amp;gt; is 0-7)}}&lt;br /&gt;
&lt;br /&gt;
With brightness adjusted to the highest level as per above:&lt;br /&gt;
&lt;br /&gt;
{{cmduser|cat /proc/acpi/ibm/brightness }}&lt;br /&gt;
&lt;br /&gt;
{{cmdresult|&lt;br /&gt;
level:          0 &amp;lt;br&amp;gt;&lt;br /&gt;
commands:       up, down&amp;lt;br&amp;gt;&lt;br /&gt;
commands:       level &amp;lt;level&amp;gt; (&amp;lt;level&amp;gt; is 0-7)}}&lt;br /&gt;
&lt;br /&gt;
== Audio ==&lt;br /&gt;
*fix sound buttons:&lt;br /&gt;
source: [[Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T61|Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T61]]&lt;br /&gt;
the volume control hotkeys are configured to control microphone volume out of the box.&lt;br /&gt;
&lt;br /&gt;
fix: If you're using Gnome, from the System menu, click Preferences -&amp;gt; Sound, and in the Default Mixer Tracks field, choose PCM.&lt;br /&gt;
&lt;br /&gt;
*fix volume control applet:&lt;br /&gt;
the volume control applet is configured to control microphone volume out of the box.&lt;br /&gt;
&lt;br /&gt;
fix: If you're using Gnome, right-click the applet &amp;gt; preferences &amp;gt; Select the device and track to control &lt;br /&gt;
**do not change device (s/b HDA Intel)&lt;br /&gt;
**change track from Microphone to PCM&lt;/div&gt;</summary>
		<author><name>Sgla1</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Install_Ubuntu_Gutsy_Gibbon_on_a_T61p&amp;diff=34053</id>
		<title>Install Ubuntu Gutsy Gibbon on a T61p</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Install_Ubuntu_Gutsy_Gibbon_on_a_T61p&amp;diff=34053"/>
		<updated>2007-10-21T19:51:51Z</updated>

		<summary type="html">&lt;p&gt;Sgla1: /* Display/Video */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installing Gutsy Gibbon (7.10) on a T61p ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Introduction ===&lt;br /&gt;
&lt;br /&gt;
This document outlines configuring Ubuntu 7.10 (Gutsy Gibbon) on your Thinkpad T61p. Most items will work out of the box and a base install will provide you with an almost completely working system. Due to the modular nature of the T61 there are many different configuration, please read carefully and only make the changes specific to your system.&lt;br /&gt;
&lt;br /&gt;
Feel free to update this Wiki with your information however please ask questions on the Talk page.&lt;br /&gt;
&lt;br /&gt;
=== Installation Notes ===&lt;br /&gt;
&lt;br /&gt;
*Booting with the live CD not tested; there are no problems with graphics during install with the 'alternate' cd &lt;br /&gt;
&lt;br /&gt;
*fix no x session on first reboot after install &lt;br /&gt;
&lt;br /&gt;
On lenovo t61p thinkpad with nVidia Corporation Quadro FX 570M graphics card the installer fails to create a usable xorg.conf file and the system reboots into an unusable black screen as x refuses to start. The installer selects the nv driver, which does not support this card.&lt;br /&gt;
&lt;br /&gt;
fix: reboot into rescue mode and hand-edit xorg.conf to use vesa driver until the restricted nvidia driver is enabled.&lt;br /&gt;
&lt;br /&gt;
== Display/Video ==&lt;br /&gt;
&lt;br /&gt;
'''Nvidia''' 2D video works out of the box, to enable accelerated 3D support click System-&amp;gt;Administration-&amp;gt;Restricted Drivers Manager   {{NOTE| If the Restricted Drivers Manager fails to install the driver you can use the Envy tool from: http://albertomilone.com/nvidia_scripts1.html.   This tool is unsupported and the only supported method of installing the Nvidia drivers is via Synaptics and the Restricted Drivers Manager}}&lt;br /&gt;
&lt;br /&gt;
=== Brightness ===&lt;br /&gt;
source: [[ Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad T61  ]]&lt;br /&gt;
====Nvidia Quadro N140 and 570M:====&lt;br /&gt;
The brightness controls do not work, however you can switch to a virtual terminal (ctrl+alt+F1) increase or decrease the brightness and then switch back to X (ctrl+alt+F7) without disrupting the running applications.   In a few rare cases switching back to X (ctrl+alt+7) may freeze your computer with a black screen so save any open documents before switching out.&lt;br /&gt;
&lt;br /&gt;
It appears that brightness is not controlled by /proc/acpi/ibm/brightness.&lt;br /&gt;
&lt;br /&gt;
With brightness adjusted to the lowest level as per above:&lt;br /&gt;
&lt;br /&gt;
{{cmduser|cat /proc/acpi/ibm/brightness }}&lt;br /&gt;
&lt;br /&gt;
level:          0 &amp;lt;br&amp;gt;&lt;br /&gt;
commands:       up, down&amp;lt;br&amp;gt;&lt;br /&gt;
commands:       level &amp;lt;level&amp;gt; (&amp;lt;level&amp;gt; is 0-7)&lt;br /&gt;
&lt;br /&gt;
With brightness adjusted to the highest level as per above:&lt;br /&gt;
&lt;br /&gt;
{{cmduser|cat /proc/acpi/ibm/brightness }}&lt;br /&gt;
&lt;br /&gt;
level:          0 &amp;lt;br&amp;gt;&lt;br /&gt;
commands:       up, down&amp;lt;br&amp;gt;&lt;br /&gt;
commands:       level &amp;lt;level&amp;gt; (&amp;lt;level&amp;gt; is 0-7)&lt;br /&gt;
&lt;br /&gt;
== Audio ==&lt;br /&gt;
*fix sound buttons:&lt;br /&gt;
source: [[Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T61|Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T61]]&lt;br /&gt;
the volume control hotkeys are configured to control microphone volume out of the box.&lt;br /&gt;
&lt;br /&gt;
fix: If you're using Gnome, from the System menu, click Preferences -&amp;gt; Sound, and in the Default Mixer Tracks field, choose PCM.&lt;br /&gt;
&lt;br /&gt;
*fix volume control applet:&lt;br /&gt;
the volume control applet is configured to control microphone volume out of the box.&lt;br /&gt;
&lt;br /&gt;
fix: If you're using Gnome, right-click the applet &amp;gt; preferences &amp;gt; Select the device and track to control &lt;br /&gt;
**do not change device (s/b HDA Intel)&lt;br /&gt;
**change track from Microphone to PCM&lt;/div&gt;</summary>
		<author><name>Sgla1</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Install_Ubuntu_Gutsy_Gibbon_on_a_T61p&amp;diff=34051</id>
		<title>Install Ubuntu Gutsy Gibbon on a T61p</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Install_Ubuntu_Gutsy_Gibbon_on_a_T61p&amp;diff=34051"/>
		<updated>2007-10-21T19:33:50Z</updated>

		<summary type="html">&lt;p&gt;Sgla1: â†Created page with '== Installing Gutsy Gibbon (7.10) on a T61p ==   === Introduction ===  This document outlines configuring Ubuntu 7.10 (Gutsy Gibbon) on your Thinkpad T61p. Most items will...'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installing Gutsy Gibbon (7.10) on a T61p ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Introduction ===&lt;br /&gt;
&lt;br /&gt;
This document outlines configuring Ubuntu 7.10 (Gutsy Gibbon) on your Thinkpad T61p. Most items will work out of the box and a base install will provide you with an almost completely working system. Due to the modular nature of the T61 there are many different configuration, please read carefully and only make the changes specific to your system.&lt;br /&gt;
&lt;br /&gt;
Feel free to update this Wiki with your information however please ask questions on the Talk page.&lt;br /&gt;
&lt;br /&gt;
=== Installation Notes ===&lt;br /&gt;
&lt;br /&gt;
*Booting with the live CD not tested; there are no problems with graphics during install with the 'alternate' cd &lt;br /&gt;
&lt;br /&gt;
*fix no x session on first reboot after install &lt;br /&gt;
&lt;br /&gt;
On lenovo t61p thinkpad with nVidia Corporation Quadro FX 570M graphics card the installer fails to create a usable xorg.conf file and the system reboots into an unusable black screen as x refuses to start. The installer selects the nv driver, which does not support this card.&lt;br /&gt;
&lt;br /&gt;
fix: reboot into rescue mode and hand-edit xorg.conf to use vesa driver until the restricted nvidia driver is enabled.&lt;br /&gt;
&lt;br /&gt;
== Display/Video ==&lt;br /&gt;
&lt;br /&gt;
'''Nvidia''' 2D video works out of the box, to enable accelerated 3D support click System-&amp;gt;Administration-&amp;gt;Restricted Drivers Manager   {{NOTE| If the Restricted Drivers Manager fails to install the driver you can use the Envy tool from: http://albertomilone.com/nvidia_scripts1.html.   This tool is unsupported and the only supported method of installing the Nvidia drivers is via Synaptics and the Restricted Drivers Manager}}&lt;br /&gt;
&lt;br /&gt;
== Audio ==&lt;br /&gt;
*fix sound buttons:&lt;br /&gt;
source: [[Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T61|Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T61]]&lt;br /&gt;
the volume control hotkeys are configured to control microphone volume out of the box.&lt;br /&gt;
&lt;br /&gt;
fix: If you're using Gnome, from the System menu, click Preferences -&amp;gt; Sound, and in the Default Mixer Tracks field, choose PCM.&lt;br /&gt;
&lt;br /&gt;
*fix volume control applet:&lt;br /&gt;
the volume control applet is configured to control microphone volume out of the box.&lt;br /&gt;
&lt;br /&gt;
fix: If you're using Gnome, right-click the applet &amp;gt; preferences &amp;gt; Select the device and track to control &lt;br /&gt;
**do not change device (s/b HDA Intel)&lt;br /&gt;
**change track from Microphone to PCM&lt;/div&gt;</summary>
		<author><name>Sgla1</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_T61&amp;diff=34050</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad T61</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_T61&amp;diff=34050"/>
		<updated>2007-10-21T19:27:49Z</updated>

		<summary type="html">&lt;p&gt;Sgla1: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
This document outlines configuring Ubuntu 7.10 (Gutsy Gibbon) on your Thinkpad T61.  Most items will work out of the box and a base  install should provide you with a completely working system.   Due to the modular nature of the T61 there are many different configuration, please read carefully and only make the changes specific to your system.  &lt;br /&gt;
&lt;br /&gt;
Feel free to update this Wiki with your information however please ask questions on the Talk page.&lt;br /&gt;
&lt;br /&gt;
==Installation Notes ==&lt;br /&gt;
&lt;br /&gt;
*If booting with the live CD gives you a blank screen you should select the &amp;quot;Safe Graphics&amp;quot; menu choice.&lt;br /&gt;
&lt;br /&gt;
== Display/Video ==&lt;br /&gt;
&lt;br /&gt;
=== Accelerated Video and Desktop Effects ===&lt;br /&gt;
'''Intel''' 2D and 3D accelerated video work out of the box.&lt;br /&gt;
&lt;br /&gt;
Due to [https://bugs.launchpad.net/xorg-server/+bug/111257 | bug 111257], compiz is disabled on the Intel i965 based video cards.  To fix it, download this file[http://www.fileden.com/files/2007/9/28/1467484/compizubuntuintel.zip], unzip it, and follow the instructions in &amp;quot;description and README.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
''Note: If you enable Compiz on an Intel card there will be issues with viewing media files, please see the bug report above for details''&lt;br /&gt;
&lt;br /&gt;
'''Nvidia''' 2D video works out of the box, to enable accelerated 3D support click System-&amp;gt;Administration-&amp;gt;Restricted Drivers Manager   {{NOTE| If the Restricted Drivers Manager fails to install the driver you can use the Envy tool from: http://albertomilone.com/nvidia_scripts1.html.   This tool is unsupported and the only supported method of installing the Nvidia drivers is via Synaptics and the Restricted Drivers Manager}}&lt;br /&gt;
&lt;br /&gt;
===Multiple Monitors===&lt;br /&gt;
&lt;br /&gt;
If you previously used Xinerama this is no longer a supported option, you should use one of the tools described below to configure dual displays.&lt;br /&gt;
&lt;br /&gt;
'''Nvidia N140m:'''&lt;br /&gt;
&lt;br /&gt;
When using the default drivers (The open source &amp;quot;nv&amp;quot; drivers) you can use Administration-&amp;gt;&amp;quot;Screens and Graphics&amp;quot; to setup the second monitor&lt;br /&gt;
&lt;br /&gt;
Using the proprietary drivers you must use the Nvidia tool located at Applications-&amp;gt;System Tools-&amp;gt; Nvidia X Server Settings.  Note: &lt;br /&gt;
Twinview works but a movie will span both the laptop screen and second monitor or projector.  &lt;br /&gt;
&lt;br /&gt;
'''Intel X3100:'''&lt;br /&gt;
&lt;br /&gt;
Plugging in an external monitor works, but is a clone of the built-in LCD by default.  Using the Screens and Graphics tool located under Administration you can setup the second monitor as an extension of the existing screen or a clone for presentations.&lt;br /&gt;
&lt;br /&gt;
'''Setting up dual monitors via the command line'''&lt;br /&gt;
&lt;br /&gt;
If you like doing it via the command line and are using the Intel drivers or the open-source &amp;quot;nv&amp;quot; driver you can use this example (''Note all this should be possible using the Screens and Graphics tool so only make this change if you prefer the command line method''):&lt;br /&gt;
&lt;br /&gt;
This is an example for a 1680x1050 built-in LCD and a 1600x1200 external LCD:&lt;br /&gt;
Add a &amp;quot;Virtual 3280 1200&amp;quot; line in the Display SubSection of the Screen Section in your xorg.conf:&lt;br /&gt;
&lt;br /&gt;
Exit to a virtual terminal (press: ctrl-alt-F1), login and type the following:&lt;br /&gt;
&lt;br /&gt;
 {{cmdroot|sudo /etc/init.d/gdm stop}}&lt;br /&gt;
&lt;br /&gt;
 {{cmdroot|xrandr --output LVDS --auto}}&lt;br /&gt;
&lt;br /&gt;
To set the built-in LCD to ouput 1680x1050&lt;br /&gt;
&lt;br /&gt;
 {{cmdroot|xrandr --output VGA --right-of LVDS}}&lt;br /&gt;
&lt;br /&gt;
To extend the desktop&lt;br /&gt;
&lt;br /&gt;
=== Fonts on High-Res Screens ===&lt;br /&gt;
&lt;br /&gt;
On high-res screens (e.g. 15&amp;quot; 1680x1050), some users consider the default fonts too be too large ([https://bugs.launchpad.net/ubuntu/+source/gdm/+bug/99145 Launchpad bug report]). You can fix this by following these steps:&lt;br /&gt;
&lt;br /&gt;
# Open System-&amp;gt;Preferences-&amp;gt;Appearance&lt;br /&gt;
# Select the &amp;quot;Fonts&amp;quot; tab&lt;br /&gt;
# Click the &amp;quot;Details&amp;quot; button (lower right)&lt;br /&gt;
# Adjust the Resolution down to 96dpi&lt;br /&gt;
# Make sure you have Subpixel (LCD) Smoothing enabled&lt;br /&gt;
# Save the preferences&lt;br /&gt;
&lt;br /&gt;
If you also want small fonts on the GDM login window, you can do this:&lt;br /&gt;
&lt;br /&gt;
# Open System-&amp;gt;Administration-&amp;gt;Login Window&lt;br /&gt;
# Select the 'Security' tab&lt;br /&gt;
# Click the 'Configure X-Server' button&lt;br /&gt;
# Append '-dpi 96' (without quotes) to the text in the 'Command' field&lt;br /&gt;
# Reboot the computer.&lt;br /&gt;
&lt;br /&gt;
=== Brightness ===&lt;br /&gt;
====Intel X3100:====&lt;br /&gt;
The brightness controls should work out of the box on a fresh install.&lt;br /&gt;
&lt;br /&gt;
====Nvidia Quadro N140 and 570M:====&lt;br /&gt;
The brightness controls do not work, however you can switch to a virtual terminal (ctrl+alt+F1) increase or decrease the brightness and then switch back to X (ctrl+alt+F7) without disrupting the running applications.   In a few rare cases switching back to X (ctrl+alt+7) may freeze your computer with a black screen so save any open documents before switching out.&lt;br /&gt;
&lt;br /&gt;
== Audio ==&lt;br /&gt;
&lt;br /&gt;
=== Inextricably Linked to the Modem ===&lt;br /&gt;
Make sure that you have the modem enabled in the BIOS.  If it is disabled, you may discover (with much consternation) that your audio is also disabled.  In this situation, your drivers may still load, but you will get an error message whenever you try to play audio.  &lt;br /&gt;
&lt;br /&gt;
After trying all of the ALSA related fixes for this machine, with no love, I remembered what a colleague had said about his T60, and tried this on a hunch.  Blammo, it worked!&lt;br /&gt;
&lt;br /&gt;
===Enabling Audio controls===&lt;br /&gt;
&lt;br /&gt;
By default, the sound may be disabled and the volume control buttons on the laptop (up by the ThinkVantage button) and the volume control applet (up by the clock) will not control the speaker volume (they actually control the microphone!). https://bugs.launchpad.net/ubuntu/+bug/136287&lt;br /&gt;
this bug report links to a fixed version from an Ubuntu dev a fixed version is available &lt;br /&gt;
To fix this:&lt;br /&gt;
&lt;br /&gt;
# Right-click on the volume control applet (by the clock) and select &amp;quot;Open Volume Control&amp;quot;&lt;br /&gt;
# In the &amp;quot;Switches&amp;quot; tab, make sure &amp;quot;Headphone&amp;quot; and &amp;quot;Speaker&amp;quot; are both checked.&lt;br /&gt;
# Close the Volume control.&lt;br /&gt;
# Right-click on the volume control applet again and select &amp;quot;Preferences&amp;quot;.&lt;br /&gt;
# Make sure the device is set to &amp;quot;HDA Intel (Alsa mixer)&amp;quot; and highlight the &amp;quot;PCM&amp;quot; option.&lt;br /&gt;
# Close the preferences.&lt;br /&gt;
# Select System-&amp;gt;Preferences-&amp;gt;Sound.&lt;br /&gt;
# In the &amp;quot;Default Mixer Tracks&amp;quot; section, make sure &amp;quot;PCM&amp;quot; is highlighted.&lt;br /&gt;
# Close the sound preferences.&lt;br /&gt;
&lt;br /&gt;
You should now hear sound and be able to control the volume using the laptop buttons or volume applet.&lt;br /&gt;
&lt;br /&gt;
The mute button on the laptop does not work.&lt;br /&gt;
&lt;br /&gt;
===Microphone===&lt;br /&gt;
&lt;br /&gt;
There have been reports that the microphone may not work, please add your input to the talk page [http://www.thinkwiki.org/wiki/Talk:Installing_Ubuntu_7.10_%28Gutsy_Gibbon%29_on_a_ThinkPad_T61#Microphone] and update this section when a consensus on the problem and solution has been reached.&lt;br /&gt;
&lt;br /&gt;
===Sound Cracking===&lt;br /&gt;
&lt;br /&gt;
There have been intermittent reports of users experiencing cracking when listening to audio.  Here are a few possible solutions:&lt;br /&gt;
&lt;br /&gt;
* Try to switch to the OSS driver in system =&amp;gt; preference =&amp;gt; sound =&amp;gt; devices =&amp;gt; Music and movies, select OSS - Open sound system (instead of ALSA)&lt;br /&gt;
&lt;br /&gt;
* If this issue is only occurring for Rhythmbox go to Edit &amp;gt; Preferences &amp;gt; Playback &amp;gt; and Check &amp;quot;Use Crossfading Backend&amp;quot;.  Restart Rhythmbox and you should have better audio quality.&lt;br /&gt;
&lt;br /&gt;
* Check that the microphone is muted and modify your mixer settings by moving items like PCM down halfway and see if the cracking goes away.&lt;br /&gt;
&lt;br /&gt;
===Hissing===&lt;br /&gt;
Some users experience hissing during playback, and even when idle.  To solve this mute the microphone when it is not in use:&lt;br /&gt;
&lt;br /&gt;
# Run &amp;quot;alsamixer&amp;quot;.&lt;br /&gt;
# Arrow over to &amp;quot;Mic&amp;quot;, and hit &amp;quot;M&amp;quot; to mute.&lt;br /&gt;
# Arrow over to the first &amp;quot;Docking&amp;quot;, and hit &amp;quot;M&amp;quot; to mute.&lt;br /&gt;
# Arrow to the first &amp;quot;Internal&amp;quot;, and hit &amp;quot;M&amp;quot; to mute.&lt;br /&gt;
&lt;br /&gt;
Now, make sure that &amp;quot;Headphone&amp;quot; and/or &amp;quot;Speaker&amp;quot; are _not_ muted, and that &amp;quot;PCM&amp;quot; is at a reasonable level (say ~70) so you don't make your ears bleed, and try playing something back.  ''(&amp;lt;Esc&amp;gt; will exit alsamixer)''&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
&lt;br /&gt;
The modem works with the Linuxant drivers available at http://www.linuxant.com&lt;br /&gt;
&lt;br /&gt;
==Bluetooth== &lt;br /&gt;
Bluetooth works out of the box. Pressing Fn-F5 once will enable bluetooth, disable wireless, pressing again, enable both and pressing one more time will disable bluetooth.  &lt;br /&gt;
&lt;br /&gt;
If you would like to set bluetooth state independently the script below determines the current bluetooth state and toggles the device on or off. &lt;br /&gt;
&lt;br /&gt;
First create a new file named bluetooth-toggle:&lt;br /&gt;
{{cmdroot|sudo touch /usr/sbin/bluetooth-toggle}}&lt;br /&gt;
&lt;br /&gt;
Now open a editor:&lt;br /&gt;
{{cmdroot|sudo gedit /usr/sbin/bluetooth-toggle}}&lt;br /&gt;
&lt;br /&gt;
Paste the following script:&lt;br /&gt;
&lt;br /&gt;
 cat /proc/acpi/ibm/bluetooth | awk '{ print $2 }' | while read line;&lt;br /&gt;
  do&lt;br /&gt;
    if [ $line == &amp;quot;enabled&amp;quot; ]; then&lt;br /&gt;
        echo disable &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
    else&lt;br /&gt;
        echo enable &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
    fi&lt;br /&gt;
    break&lt;br /&gt;
  done&lt;br /&gt;
&lt;br /&gt;
Now set the execute permissions: &lt;br /&gt;
{{cmdroot|sudo chmod +x /usr/sbin/bluetooth-toggle}}&lt;br /&gt;
&lt;br /&gt;
You can invoke the script out of the console by typing sudo bluetooth-toggle or create a menu icon by using the menu editor under preferences using gksudo bluetooth-toggle as command line.&lt;br /&gt;
&lt;br /&gt;
== Fingerprint Reader ==&lt;br /&gt;
&lt;br /&gt;
The reader works with ThinkFinger. General instructions available [http://www.thinkwiki.org/wiki/Integrated_Fingerprint_Reader here] and [https://wiki.ubuntu.com/ThinkFinger here].&lt;br /&gt;
Instructions in French available at http://doc.ubuntu-fr.org/materiel/thinkfinger&lt;br /&gt;
&lt;br /&gt;
Prebuilt packages are available from jldugger using Launchpad's PPA:&lt;br /&gt;
&lt;br /&gt;
Add the thinkfinger package repository by creating {{path|/etc/apt/sources.list.d/thinkfinger.list}} with these two lines:&lt;br /&gt;
&lt;br /&gt;
 deb     http://ppa.launchpad.net/jldugger/ubuntu gutsy main restricted universe multiverse&lt;br /&gt;
 deb-src http://ppa.launchpad.net/jldugger/ubuntu gutsy main restricted universe multiverse&lt;br /&gt;
&lt;br /&gt;
Then update the package database and install packages:&lt;br /&gt;
&lt;br /&gt;
 {{cmduser|sudo apt-get update}}&lt;br /&gt;
 {{cmduser|sudo apt-get install libpam-thinkfinger libthinkfinger-dev libthinkfinger-doc libthinkfinger0 thinkfinger-tools}}&lt;br /&gt;
&lt;br /&gt;
After the package is installed add the following two lines to {{path|/etc/pam.d/common-auth}}&lt;br /&gt;
&lt;br /&gt;
 auth    sufficient      pam_thinkfinger.so&lt;br /&gt;
 auth    required        pam_unix.so try_first_pass&lt;br /&gt;
&lt;br /&gt;
Edit {{path|/etc/modules}} and add the following line:&lt;br /&gt;
&lt;br /&gt;
   uinput&lt;br /&gt;
&lt;br /&gt;
Load the module manually for this session:&lt;br /&gt;
&lt;br /&gt;
{{cmduser| sudo modprobe uinput}}&lt;br /&gt;
&lt;br /&gt;
Summary:&lt;br /&gt;
* Recording fingerprints works&lt;br /&gt;
* Login works&lt;br /&gt;
* The password must be entered to unlock a locked screensaver&lt;br /&gt;
* sudo works&lt;br /&gt;
* gksu and gksudo hang : for example it is necessary to run synaptic twice and enter your password upon failure. To be able to use the Finger print reader in the session subsequently, kill the hanging gksu/gksudo process. A workaround is editing the Gnome System Menu (alacarte) to specify sudo instead of gksu/gksudo for the launching command and choose type &amp;quot;Application in Terminal&amp;quot; : this opens an extra terminal window for each superuser application you want to use though.&lt;br /&gt;
&lt;br /&gt;
== Trackpad scrolling ==&lt;br /&gt;
&lt;br /&gt;
Trackpad scrolling works out of the box in the standard thinkpad way: Slide your finger up and down the very right edge of the trackpad.&lt;br /&gt;
Note that /etc/X11/xorg.conf will be changed and the edge scrolling will be disabled after running nvidia-xconfig , copy the trackpad section from the backup of xorg.conf&lt;br /&gt;
&lt;br /&gt;
To enable using the middle mouse button to scroll, add the following lines to the &amp;quot;Configured Mouse&amp;quot; section in&lt;br /&gt;
{{path|/etc/X11/xorg.conf}}:&lt;br /&gt;
&lt;br /&gt;
    Option    &amp;quot;EmulateWheel&amp;quot;          &amp;quot;true&amp;quot;&lt;br /&gt;
    Option    &amp;quot;EmulateWheelButton&amp;quot;    &amp;quot;2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Hibernate/Suspend ==&lt;br /&gt;
&lt;br /&gt;
=== Blank screen fix for intel graphics cards===&lt;br /&gt;
&lt;br /&gt;
This fix is for Intel Graphics Cards only.&lt;br /&gt;
&lt;br /&gt;
You may get a blank screen when resuming from suspend or hibernate ([https://bugs.launchpad.net/ubuntu/+bug/134391 Launchpad bug report]). If so, try editing {{path|/boot/grub/menu.lst}}, adding &amp;quot;acpi_sleep=s3_bios&amp;quot; (no quotes) to the &amp;quot;defoptions&amp;quot; list so that it looks something like this:&lt;br /&gt;
&lt;br /&gt;
  ## additional options to use with the default boot option, but not with the&lt;br /&gt;
  ## alternatives&lt;br /&gt;
  ## e.g. defoptions=vga=791 resume=/dev/hda5&lt;br /&gt;
  # defoptions=quiet splash '''acpi_sleep=s3_bios'''&lt;br /&gt;
&lt;br /&gt;
Once you have edited the line and added the acpi_sleep parameter, you need to run&lt;br /&gt;
&lt;br /&gt;
  $ sudo update-grub&lt;br /&gt;
&lt;br /&gt;
Note that if you get the blank screen upon resume, a quick-fix is to switch to a console (Ctrl-Alt-F1) and then back to X (Ctrl-Alt-F7). This will usually bring the display back to life. However, the long-term fix is to add the acpi_sleep parameter as shown above.&lt;br /&gt;
&lt;br /&gt;
=== How to Suspend with nVidia 140m/570m ===&lt;br /&gt;
&lt;br /&gt;
The suspend to RAM will work with the nVidia card and the proprietary drivers, but it requires some file editing. It did not work for me out of the box. Using the package manager, download and install the latest nVidia drivers (100.14.19+2.6.2.4-12.4 at time of writing). I also had to use the 2.6.22-12-generic kernel image (the 2.6.22-13 image did not work with this driver --- I'm assuming it has to match wit the nVidia version, but I am not an expert). &lt;br /&gt;
&lt;br /&gt;
Once you have it installed and working, you have to make a change to {{path|/etc/default/acpi-support}}. Open the file in your favorite editor and change the following lines:&lt;br /&gt;
&lt;br /&gt;
  $ sudo nano /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
{{path|/etc/default/acpi-support}}&lt;br /&gt;
  # Should we save and restore state using the VESA BIOS Extensions?&lt;br /&gt;
  SAVE_VBE_STATE=false&lt;br /&gt;
  ...&lt;br /&gt;
  # Should we attempt to warm-boot the video hardware on resume?&lt;br /&gt;
  POST_VIDEO=false&lt;br /&gt;
  ...&lt;br /&gt;
  # Set the following to &amp;quot;platform&amp;quot; if you want to use ACPI to shut down&lt;br /&gt;
  # your machine on hibernation&lt;br /&gt;
  HIBERNATE_MODE=platform&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This allowed me to suspend and resume, but after two suspends the wireless wouldn't work anymore. Theoretically, ACPI unloads the network drivers before suspending, but it doesn't seem to work correctly so I added these to the blacklist modules manually (in the same file as above:&lt;br /&gt;
&lt;br /&gt;
{{path|/etc/default/acpi-support}}&lt;br /&gt;
  # Add modules to this list to have them removed before suspend and reloaded&lt;br /&gt;
  # on resume. An example would be MODULES=&amp;quot;em8300 yenta_socket&amp;quot;&lt;br /&gt;
  #&lt;br /&gt;
  # Note that network cards and USB controllers will automatically be unloaded &lt;br /&gt;
  # unless they're listed in MODULES_WHITELIST&lt;br /&gt;
  MODULES=&amp;quot;iwl4965 iwlwifi_mac80211 cfg80211&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Your wifi modules may be different. (I have the intel AGN wireless card -- I don't know if these modules are different for other cards.)&lt;br /&gt;
&lt;br /&gt;
This allows me to suspend to ram; I haven't had any problems with it so far. I haven't gotten hibernate (suspend to disk) working, so there may be additional things you need to do for that. (I think part of my problem is that I don't have enough swap, but I don't care enough to actually fix it.)&lt;br /&gt;
&lt;br /&gt;
/*The fix does not work for me. I have a T61 7664-17U(NVS 140m, 4965agn). The computers suspend, but when it wakes up it hangs up and I have to pull out the battery to restart it.*/&lt;br /&gt;
&lt;br /&gt;
General hint: Do not install the package &amp;quot;hibernate&amp;quot; or &amp;quot;uswsusp&amp;quot; or the gnome-power-manager will fail to suspend/hibernate your computer. If you have installed the package don't forget to purge the configuration. (sudo apt-get remove hibernate --purge, uswsusp resp.)&lt;br /&gt;
&lt;br /&gt;
== Items that work out of the box ==&lt;br /&gt;
&lt;br /&gt;
'''Intel Video:''' 2D and 3D acceleration works&lt;br /&gt;
&lt;br /&gt;
'''Nvidia:''' 2D works, 3D requires the installation of the proprietary drivers&lt;br /&gt;
&lt;br /&gt;
'''Wireless:''' Atheros and Intel cards both tested.&lt;br /&gt;
&lt;br /&gt;
'''Bluetooth:''' Tested with both a bluetooth headset and an HTC 8525&lt;br /&gt;
&lt;br /&gt;
'''Network Card'''  Intel 10/100/1000 tested&lt;br /&gt;
&lt;br /&gt;
'''Firewire''' Tested with hard drive&lt;br /&gt;
&lt;br /&gt;
'''Wireless switch'''  &lt;br /&gt;
&lt;br /&gt;
'''4-in-1 card reader'''&lt;br /&gt;
&lt;br /&gt;
'''Webcam'''&lt;br /&gt;
&lt;br /&gt;
'''Headphones'''  You may need to enable Headphone out:   Right-click on the volume control and select open volume control.  Click the switches tab and then check the headphones box.&lt;br /&gt;
&lt;br /&gt;
'''Keyboard Shortcuts:'''&lt;br /&gt;
* Fn-PgUp activates/deactivates the thinklight&lt;br /&gt;
* Fn-Up will trigger stop on a media player&lt;br /&gt;
* Fn-Down will toggle pause and play on a media player&lt;br /&gt;
* Fn-Left/Right go to prev/next tracks on a media player&lt;br /&gt;
* Fn-F2 properly locks the screen&lt;br /&gt;
* Fn-F3 shows remaining battery  &amp;gt;&amp;gt;does not work on all machines&amp;lt;&amp;lt;&lt;br /&gt;
* Fn-F4 suspends (to ram)&lt;br /&gt;
* Fn-F12 hibernates (to disk)&lt;br /&gt;
* PrtSc opens the screenshot dialog&lt;br /&gt;
&lt;br /&gt;
'''Docking Stations:'''&lt;br /&gt;
&lt;br /&gt;
All docking station models should work and the following features have been tested:&lt;br /&gt;
&lt;br /&gt;
* DVI or Analog video: You can switch to it using &amp;quot;Administration-&amp;gt;Screens and Graphics&amp;quot;, if you are using the proprietary Nvidia drivers you must use the Nvidia Control Panel.&lt;br /&gt;
&lt;br /&gt;
* Network Pass-through&lt;br /&gt;
&lt;br /&gt;
* Modem Pass-through&lt;br /&gt;
&lt;br /&gt;
* USB ports: Connected upon docking&lt;br /&gt;
&lt;br /&gt;
* PS/2 Ports&lt;br /&gt;
&lt;br /&gt;
== Items that don't work ==&lt;br /&gt;
&lt;br /&gt;
=== Wireless USB/UWB ===&lt;br /&gt;
* details?&lt;br /&gt;
&lt;br /&gt;
=== Interrupt problem ===&lt;br /&gt;
* https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/126369&lt;br /&gt;
* USB ports can end up temporarily disabled&lt;br /&gt;
* Wifi can break&lt;br /&gt;
* integrated cardreader can be disabled&lt;br /&gt;
* bluetooth can be disabled&lt;br /&gt;
* Setting IRQ's to &amp;quot;Auto&amp;quot; from factory default of &amp;quot;11&amp;quot; in the BIOS seems to help some people.&lt;br /&gt;
&lt;br /&gt;
=== Volume keys ===&lt;br /&gt;
* Control mic instead of speakers by default&lt;br /&gt;
* https://bugs.launchpad.net/ubuntu/+bug/136287&lt;br /&gt;
&lt;br /&gt;
=== Wireless activity LED ===&lt;br /&gt;
doesn't seem to flicker properly. (?)&lt;br /&gt;
&lt;br /&gt;
== Power consumption ==&lt;br /&gt;
&lt;br /&gt;
Gutsy is the first version of Ubuntu to feature a tickless kernel (i386 only, not in AMD64 yet).  Power consumption&lt;br /&gt;
can be monitored using the powertop tool under Ubuntu and using Lenovo battery monitor&lt;br /&gt;
under Windows.&lt;br /&gt;
&lt;br /&gt;
  $ sudo apt-get install powertop&lt;br /&gt;
  $ sudo powertop&lt;br /&gt;
&lt;br /&gt;
I couldn't find any difference in power consumption between the i386 tickless kernel (even with 70ms average sleep in C4)&lt;br /&gt;
and AMD64 kernel (2ms average sleep in C4).  It would be expected that considerably less power would be consumed for the &lt;br /&gt;
i386 tickless kernel.&lt;br /&gt;
&lt;br /&gt;
There is also a graph available by Right-clicking on the battery icon and selecting Power History.&lt;br /&gt;
&lt;br /&gt;
These are the figures measured on a T61 15.4&amp;quot; 1680x1050 screen 7300 processor (2GHz) 2GB RAM, Intel X3100 graphics&lt;br /&gt;
with 4965 wifi, Bluetooth and UWB.&lt;br /&gt;
&lt;br /&gt;
{| border=1 cellpadding=5&lt;br /&gt;
|- &lt;br /&gt;
| 12.3W&lt;br /&gt;
| Windows XP Pro, all radios on, about 50% brightness&lt;br /&gt;
|-&lt;br /&gt;
| 16.7W&lt;br /&gt;
| Gutsy, all radios on, 50% brightness&lt;br /&gt;
|-&lt;br /&gt;
| 19.6W&lt;br /&gt;
| Gutsy, all radios on, 100% brightness&lt;br /&gt;
|-&lt;br /&gt;
| 14.2W&lt;br /&gt;
| Gutsy, all radios on, 10% brightness&lt;br /&gt;
|-&lt;br /&gt;
| -1.0W&lt;br /&gt;
| Turning the physical radio switch to off on the front reduces power consumption by 1 watt.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Adding the Nvidia card increases the laptops power requirements.&lt;br /&gt;
&lt;br /&gt;
These are the figures measured on a T61 14&amp;quot; 1440x900 screen 2.2ghz Core2Duo 2GB RAM, Nvidia 140m video, IWL4965 wifi and Bluetooth (Disabled):&lt;br /&gt;
&lt;br /&gt;
{| border=1 cellpadding=5&lt;br /&gt;
|-&lt;br /&gt;
| 18.3W&lt;br /&gt;
| Gutsy, all radios on, 50% brightness&lt;br /&gt;
|-&lt;br /&gt;
| 19.4W&lt;br /&gt;
| Gutsy, all radios on, 100% brightness&lt;br /&gt;
|-&lt;br /&gt;
| 16.0W&lt;br /&gt;
| Gutsy, all radios on, 10% brightness&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category: T61]] [[Category: Ubuntu 7.10]]&lt;/div&gt;</summary>
		<author><name>Sgla1</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installation_instructions_for_the_ThinkPad_T61p&amp;diff=34049</id>
		<title>Installation instructions for the ThinkPad T61p</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installation_instructions_for_the_ThinkPad_T61p&amp;diff=34049"/>
		<updated>2007-10-21T19:04:40Z</updated>

		<summary type="html">&lt;p&gt;Sgla1: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==General Notes==&lt;br /&gt;
&lt;br /&gt;
==Distro specific Instructions==&lt;br /&gt;
&lt;br /&gt;
=== Fedora ===&lt;br /&gt;
{{Install|Fedora| 7|T61p}}&lt;br /&gt;
&lt;br /&gt;
=== Ubuntu Gutsy Gibbon ===&lt;br /&gt;
[[Install Ubuntu Gutsy Gibbon on a T61p|Install Gutsy Gibbon on a T61p]]&lt;/div&gt;</summary>
		<author><name>Sgla1</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Category:T61p&amp;diff=34048</id>
		<title>Category:T61p</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Category:T61p&amp;diff=34048"/>
		<updated>2007-10-21T19:00:26Z</updated>

		<summary type="html">&lt;p&gt;Sgla1: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|style=&amp;quot;vertical-align:top&amp;quot; |&lt;br /&gt;
[[Image:t60-models_nov06.jpg|ThinkPad T61p]]&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;
&lt;br /&gt;
=== ThinkPad T61p ===&lt;br /&gt;
This pages gives an overview of all ThinkPad T61 related topics.&lt;br /&gt;
&lt;br /&gt;
Page under consrtuction&lt;br /&gt;
&lt;br /&gt;
ref: [http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=migr-67883 Lenovo Detailed Specifications - ThinkPad T61/T61p] and [http://ok2.de/ThinkPad/T-Series-154/ThinkPad-T61p-NH36XGE::579.html?XTCsid=379fe5c8396ec8ce32f5b92bad9f5dc5 ok2.de - ThinkPad reseller in Germany]&lt;br /&gt;
&lt;br /&gt;
==== Standard Features ====&lt;br /&gt;
* One of the following processors:&lt;br /&gt;
** [[Intel Core 2 Duo (Merom)]] 2.2, 2.4, 2.6 GHz 800MHz FSB CPU&lt;br /&gt;
* One of the following graphics adapters: &lt;br /&gt;
** [[nVidia Quadro FX 570M]] (128 MB)&lt;br /&gt;
** [[nVidia Quadro FX 570M]] (256 MB)&lt;br /&gt;
* One of the following displays:&lt;br /&gt;
** 14.1&amp;quot; TFT display with 1400x1050 (SXGA+) resolution&lt;br /&gt;
** 15.4&amp;quot; TFT display with 1920x1200 (WUXGA) resolution&lt;br /&gt;
** 15.4&amp;quot; TFT display with 1680x1050 (WSXGA+) resolution&lt;br /&gt;
* 1 GB to 2 GB [[PC2-5300]] memory standard upgradable to 4 GB&lt;br /&gt;
* 100GB 7200RPM SATA HDD ( available with encryption)&lt;br /&gt;
** [[Full Disk Encryption (FDE)]] Available on some models&lt;br /&gt;
* [[AD1984]] HD Audio controller&lt;br /&gt;
* [[Ethernet Controllers#Intel Gigabit (10/100/1000)|Intel Gigabit Ethernet Controller]]&lt;br /&gt;
* [[UltraBay|UltraBay Slim]] with one of the following:&lt;br /&gt;
** [[UltraBay Slim Super Multi-Burner Drive]]&lt;br /&gt;
* [[Intel Turbo Memory hard drive cache]] (formerly code-named Robson memory cache)&lt;br /&gt;
* [[MiniPCI Express slot]] 1 with one of the following:&lt;br /&gt;
** None (empty)&lt;br /&gt;
** [[Intel PRO/Wireless 4965AGN Mini-PCI Express Adapter]]&lt;br /&gt;
* [[MiniPCI Express slot]] 2 with one of the following:&lt;br /&gt;
** None (empty)&lt;br /&gt;
** [[Verizon 1xEV-DO WWAN]] (It seems to be a Sierra Wireless MC5720 Modem)&lt;br /&gt;
** [[Cingular HSDPA WWAN]] (Sierra Wireless MC8775)&lt;br /&gt;
* 1 [[CardBus slot]] (Type II)&lt;br /&gt;
* 1 Slot with one of the following:&lt;br /&gt;
** [[ExpressCard slot|ExpressCard/54 slot]] &lt;br /&gt;
** SmartCard reader&lt;br /&gt;
* [[Ricoh_R5C843|4-in-1 Memory reader]]&lt;br /&gt;
* [[Embedded Security Subsystem|IBM Embedded Security Subsystem 2.0]]&lt;br /&gt;
* [[Active Protection System|IBM Active Protection System]]&lt;br /&gt;
* [[Integrated Fingerprint Reader]] on select models&lt;br /&gt;
* [[ThinkPad_Bluetooth_with_Enhanced_Data_Rate_(BDC-2)|Bluetooth]] on select models&lt;br /&gt;
* [[UltraNav]] (TrackPoint / Touchpad combo)&lt;br /&gt;
* [[Ricoh_R5C843|IEEE-1394]] Firewire (Ricoh Co Ltd R5C832 IEEE 1394 Controller)&lt;br /&gt;
* [[Centrino Pro]]&lt;br /&gt;
&lt;br /&gt;
==== Resources ====&lt;br /&gt;
&lt;br /&gt;
[http://ok2.de/ThinkPad/T-Series-154/ThinkPad-T61p-NH36XGE::579.html?XTCsid=379fe5c8396ec8ce32f5b92bad9f5dc5 T61p specifications from German reseller site]&lt;br /&gt;
* [http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-67709 T61 Product Overview ]&lt;br /&gt;
* [http://www-307.ibm.com/pc/support/site.wss/MIGR-67760.html T61 Hardware Maintenance Manual]&lt;br /&gt;
* [http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&amp;amp;lndocid=MIGR-62465 T60/p Service and Troubleshooting Guide]&lt;br /&gt;
* [http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&amp;amp;lndocid=MIGR-67686 T61 Setup Guide]&lt;br /&gt;
* [http://www5.pc.ibm.com/europe/me.nsf/LenovoDetail?OpenAgent&amp;amp;key=Notebooks:ThinkPad:ThinkPad+T+Series:Data+Sheet:English&amp;amp;&amp;amp;cntry=EUROPE-L T61 DataSheet ]&lt;br /&gt;
&lt;br /&gt;
==== Reviews ====&lt;br /&gt;
* [http://www.xyzcomputing.com/index.php?option=content&amp;amp;task=view&amp;amp;id=1134 XYZ Computing], 2007-08-20&lt;br /&gt;
* [http://www.laptopmag.com/Review/Lenovo-ThinkPad-T61p.htm LAPTOP Magazine], 2007-08-08&lt;br /&gt;
* [http://www.notebookreview.com/default.asp?newsID=3889 NotebookReview.com], 2007-08-14&lt;br /&gt;
* [http://reviews.digitaltrends.com/review4745.html DigitalTrends], 2007-09-11&lt;br /&gt;
* [http://www.notebookcheck.com/Test-Lenovo-Thinkpad-T61p-Notebook.4401.0.html Notebookcheck.com], ??-08-2007 (german)&lt;br /&gt;
&lt;br /&gt;
==== Resources ====&lt;br /&gt;
* [http://schlitt.info/applications/blog/index.php?/archives/563-My-now-notebook.html Migrating Gentoo from T43p to T61p], 2007-09-27&lt;br /&gt;
* [http://www.klabs.be/~fpiat/linux/debian/Etch_on_Thinkpad_T61.html Installing Debian/Linux Etch on a Thinkpad T61], 2007-05-22&lt;br /&gt;
* [[Installing_Ubuntu_7.04_%28Feisty_Fawn%29_on_a_ThinkPad_T61]]&lt;br /&gt;
&lt;br /&gt;
(Note that the following categories applies to T60, They might also apply to T61 (test and update the list, please) : Thermal_Sensors Tp_smapi Table_of_ibm-acpi_LEDs Swsusp Software_Suspend_2 Rescue_and_Recovery Problems_with_SATA_and_Linux Problem_with_video_output_switching Problem_with_fan_noise Problem_with_high_pitch_noises How_to_control_fan_speed Embedded_Controller_Firmware&lt;br /&gt;
&lt;br /&gt;
[[Category:T Series]]&lt;br /&gt;
&lt;br /&gt;
==== Linux Installation ====&lt;br /&gt;
For instructions on installing linux, see the [[Installation_instructions_for_the_ThinkPad_T61p|distribution-specific installation instructions for the T61p]].&lt;/div&gt;</summary>
		<author><name>Sgla1</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Category:T61p&amp;diff=34047</id>
		<title>Category:T61p</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Category:T61p&amp;diff=34047"/>
		<updated>2007-10-21T18:55:38Z</updated>

		<summary type="html">&lt;p&gt;Sgla1: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|style=&amp;quot;vertical-align:top&amp;quot; |&lt;br /&gt;
[[Image:t60-models_nov06.jpg|ThinkPad T61p]]&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;
&lt;br /&gt;
=== ThinkPad T61p ===&lt;br /&gt;
This pages gives an overview of all ThinkPad T61 related topics.&lt;br /&gt;
&lt;br /&gt;
Page under consrtuction&lt;br /&gt;
&lt;br /&gt;
ref: [http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=migr-67883 Lenovo Detailed Specifications - ThinkPad T61/T61p] and [http://ok2.de/ThinkPad/T-Series-154/ThinkPad-T61p-NH36XGE::579.html?XTCsid=379fe5c8396ec8ce32f5b92bad9f5dc5 ok2.de - ThinkPad reseller in Germany]&lt;br /&gt;
&lt;br /&gt;
==== Standard Features ====&lt;br /&gt;
* One of the following processors:&lt;br /&gt;
** [[Intel Core 2 Duo (Merom)]] 2.2, 2.4, 2.6 GHz 800MHz FSB CPU&lt;br /&gt;
* One of the following graphics adapters: &lt;br /&gt;
** [[nVidia Quadro FX 570M]] (128 MB)&lt;br /&gt;
** [[nVidia Quadro FX 570M]] (256 MB)&lt;br /&gt;
* One of the following displays:&lt;br /&gt;
** 14.1&amp;quot; TFT display with 1400x1050 (SXGA+) resolution&lt;br /&gt;
** 15.4&amp;quot; TFT display with 1920x1200 (WUXGA) resolution&lt;br /&gt;
** 15.4&amp;quot; TFT display with 1680x1050 (WSXGA+) resolution&lt;br /&gt;
* 1 GB to 2 GB [[PC2-5300]] memory standard upgradable to 4 GB&lt;br /&gt;
* 100GB 7200RPM SATA HDD ( available with encryption)&lt;br /&gt;
** [[Full Disk Encryption (FDE)]] Available on some models&lt;br /&gt;
* [[AD1984]] HD Audio controller&lt;br /&gt;
* [[Ethernet Controllers#Intel Gigabit (10/100/1000)|Intel Gigabit Ethernet Controller]]&lt;br /&gt;
* [[UltraBay|UltraBay Slim]] with one of the following:&lt;br /&gt;
** [[UltraBay Slim Super Multi-Burner Drive]]&lt;br /&gt;
* [[Intel Turbo Memory hard drive cache]] (formerly code-named Robson memory cache)&lt;br /&gt;
* [[MiniPCI Express slot]] 1 with one of the following:&lt;br /&gt;
** None (empty)&lt;br /&gt;
** [[Intel PRO/Wireless 4965AGN Mini-PCI Express Adapter]]&lt;br /&gt;
* [[MiniPCI Express slot]] 2 with one of the following:&lt;br /&gt;
** None (empty)&lt;br /&gt;
** [[Verizon 1xEV-DO WWAN]] (It seems to be a Sierra Wireless MC5720 Modem)&lt;br /&gt;
** [[Cingular HSDPA WWAN]] (Sierra Wireless MC8775)&lt;br /&gt;
* 1 [[CardBus slot]] (Type II)&lt;br /&gt;
* 1 Slot with one of the following:&lt;br /&gt;
** [[ExpressCard slot|ExpressCard/54 slot]] &lt;br /&gt;
** SmartCard reader&lt;br /&gt;
* [[Ricoh_R5C843|4-in-1 Memory reader]]&lt;br /&gt;
* [[Embedded Security Subsystem|IBM Embedded Security Subsystem 2.0]]&lt;br /&gt;
* [[Active Protection System|IBM Active Protection System]]&lt;br /&gt;
* [[Integrated Fingerprint Reader]] on select models&lt;br /&gt;
* [[ThinkPad_Bluetooth_with_Enhanced_Data_Rate_(BDC-2)|Bluetooth]] on select models&lt;br /&gt;
* [[UltraNav]] (TrackPoint / Touchpad combo)&lt;br /&gt;
* [[Ricoh_R5C843|IEEE-1394]] Firewire (Ricoh Co Ltd R5C832 IEEE 1394 Controller)&lt;br /&gt;
* [[Centrino Pro]]&lt;br /&gt;
&lt;br /&gt;
==== Resources ====&lt;br /&gt;
&lt;br /&gt;
[http://ok2.de/ThinkPad/T-Series-154/ThinkPad-T61p-NH36XGE::579.html?XTCsid=379fe5c8396ec8ce32f5b92bad9f5dc5 T61p specifications from German reseller site]&lt;br /&gt;
* [http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-67709 T61 Product Overview ]&lt;br /&gt;
* [http://www-307.ibm.com/pc/support/site.wss/MIGR-67760.html T61 Hardware Maintenance Manual]&lt;br /&gt;
* [http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&amp;amp;lndocid=MIGR-62465 T60/p Service and Troubleshooting Guide]&lt;br /&gt;
* [http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&amp;amp;lndocid=MIGR-67686 T61 Setup Guide]&lt;br /&gt;
* [http://www5.pc.ibm.com/europe/me.nsf/LenovoDetail?OpenAgent&amp;amp;key=Notebooks:ThinkPad:ThinkPad+T+Series:Data+Sheet:English&amp;amp;&amp;amp;cntry=EUROPE-L T61 DataSheet ]&lt;br /&gt;
&lt;br /&gt;
==== Reviews ====&lt;br /&gt;
* [http://www.xyzcomputing.com/index.php?option=content&amp;amp;task=view&amp;amp;id=1134 XYZ Computing], 2007-08-20&lt;br /&gt;
* [http://www.laptopmag.com/Review/Lenovo-ThinkPad-T61p.htm LAPTOP Magazine], 2007-08-08&lt;br /&gt;
* [http://www.notebookreview.com/default.asp?newsID=3889 NotebookReview.com], 2007-08-14&lt;br /&gt;
* [http://reviews.digitaltrends.com/review4745.html DigitalTrends], 2007-09-11&lt;br /&gt;
* [http://www.notebookcheck.com/Test-Lenovo-Thinkpad-T61p-Notebook.4401.0.html Notebookcheck.com], ??-08-2007 (german)&lt;br /&gt;
&lt;br /&gt;
==== Resources ====&lt;br /&gt;
* [http://schlitt.info/applications/blog/index.php?/archives/563-My-now-notebook.html Migrating Gentoo from T43p to T61p], 2007-09-27&lt;br /&gt;
* [http://www.klabs.be/~fpiat/linux/debian/Etch_on_Thinkpad_T61.html Installing Debian/Linux Etch on a Thinkpad T61], 2007-05-22&lt;br /&gt;
* [[Installing_Ubuntu_7.04_%28Feisty_Fawn%29_on_a_ThinkPad_T61]]&lt;br /&gt;
&lt;br /&gt;
(Note that the following categories applies to T60, They might also apply to T61 (test and update the list, please) : Thermal_Sensors Tp_smapi Table_of_ibm-acpi_LEDs Swsusp Software_Suspend_2 Rescue_and_Recovery Problems_with_SATA_and_Linux Problem_with_video_output_switching Problem_with_fan_noise Problem_with_high_pitch_noises How_to_control_fan_speed Embedded_Controller_Firmware&lt;br /&gt;
&lt;br /&gt;
[[Category:T Series]]&lt;br /&gt;
&lt;br /&gt;
==== Linux Installation ====&lt;/div&gt;</summary>
		<author><name>Sgla1</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_T61&amp;diff=34045</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) on a ThinkPad T61</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_T61&amp;diff=34045"/>
		<updated>2007-10-21T18:32:51Z</updated>

		<summary type="html">&lt;p&gt;Sgla1: /* Installation Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
This document outlines configuring Ubuntu 7.10 (Gutsy Gibbon) on your Thinkpad T61.  Most items will work out of the box and a base  install should provide you with a completely working system.   Due to the modular nature of the T61 there are many different configuration, please read carefully and only make the changes specific to your system.  &lt;br /&gt;
&lt;br /&gt;
Feel free to update this Wiki with your information however please ask questions on the Talk page.&lt;br /&gt;
&lt;br /&gt;
==Installation Notes ==&lt;br /&gt;
&lt;br /&gt;
*If booting with the live CD gives you a blank screen you should select the &amp;quot;Safe Graphics&amp;quot; menu choice.&lt;br /&gt;
&lt;br /&gt;
*fix no x session on first reboot after install&lt;br /&gt;
On lenovo t61p thinkpad with nVidia Corporation Quadro FX 570M graphics card the installer fails to create a usable xorg.conf file and the system reboots into an unusable black screen as x refuses to start. The installer selects the nv driver, which does not support this card.&lt;br /&gt;
&lt;br /&gt;
fix: reboot into rescue mode and hand-edit xorg.conf to use vesa driver until the restricted nvidia driver is enabled.&lt;br /&gt;
&lt;br /&gt;
== Display/Video ==&lt;br /&gt;
&lt;br /&gt;
=== Accelerated Video and Desktop Effects ===&lt;br /&gt;
'''Intel''' 2D and 3D accelerated video work out of the box.&lt;br /&gt;
&lt;br /&gt;
Due to [https://bugs.launchpad.net/xorg-server/+bug/111257 | bug 111257], compiz is disabled on the Intel i965 based video cards.  To fix it, download this file[http://www.fileden.com/files/2007/9/28/1467484/compizubuntuintel.zip], unzip it, and follow the instructions in &amp;quot;description and README.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
''Note: If you enable Compiz on an Intel card there will be issues with viewing media files, please see the bug report above for details''&lt;br /&gt;
&lt;br /&gt;
'''Nvidia''' 2D video works out of the box, to enable accelerated 3D support click System-&amp;gt;Administration-&amp;gt;Restricted Drivers Manager   {{NOTE| If the Restricted Drivers Manager fails to install the driver you can use the Envy tool from: http://albertomilone.com/nvidia_scripts1.html.   This tool is unsupported and the only supported method of installing the Nvidia drivers is via Synaptics and the Restricted Drivers Manager}}&lt;br /&gt;
&lt;br /&gt;
===Multiple Monitors===&lt;br /&gt;
&lt;br /&gt;
If you previously used Xinerama this is no longer a supported option, you should use one of the tools described below to configure dual displays.&lt;br /&gt;
&lt;br /&gt;
'''Nvidia N140m:'''&lt;br /&gt;
&lt;br /&gt;
When using the default drivers (The open source &amp;quot;nv&amp;quot; drivers) you can use Administration-&amp;gt;&amp;quot;Screens and Graphics&amp;quot; to setup the second monitor&lt;br /&gt;
&lt;br /&gt;
Using the proprietary drivers you must use the Nvidia tool located at Applications-&amp;gt;System Tools-&amp;gt; Nvidia X Server Settings.  Note: &lt;br /&gt;
Twinview works but a movie will span both the laptop screen and second monitor or projector.  &lt;br /&gt;
&lt;br /&gt;
'''Intel X3100:'''&lt;br /&gt;
&lt;br /&gt;
Plugging in an external monitor works, but is a clone of the built-in LCD by default.  Using the Screens and Graphics tool located under Administration you can setup the second monitor as an extension of the existing screen or a clone for presentations.&lt;br /&gt;
&lt;br /&gt;
'''Setting up dual monitors via the command line'''&lt;br /&gt;
&lt;br /&gt;
If you like doing it via the command line and are using the Intel drivers or the open-source &amp;quot;nv&amp;quot; driver you can use this example (''Note all this should be possible using the Screens and Graphics tool so only make this change if you prefer the command line method''):&lt;br /&gt;
&lt;br /&gt;
This is an example for a 1680x1050 built-in LCD and a 1600x1200 external LCD:&lt;br /&gt;
Add a &amp;quot;Virtual 3280 1200&amp;quot; line in the Display SubSection of the Screen Section in your xorg.conf:&lt;br /&gt;
&lt;br /&gt;
Exit to a virtual terminal (press: ctrl-alt-F1), login and type the following:&lt;br /&gt;
&lt;br /&gt;
 {{cmdroot|sudo /etc/init.d/gdm stop}}&lt;br /&gt;
&lt;br /&gt;
 {{cmdroot|xrandr --output LVDS --auto}}&lt;br /&gt;
&lt;br /&gt;
To set the built-in LCD to ouput 1680x1050&lt;br /&gt;
&lt;br /&gt;
 {{cmdroot|xrandr --output VGA --right-of LVDS}}&lt;br /&gt;
&lt;br /&gt;
To extend the desktop&lt;br /&gt;
&lt;br /&gt;
=== Fonts on High-Res Screens ===&lt;br /&gt;
&lt;br /&gt;
On high-res screens (e.g. 15&amp;quot; 1680x1050), some users consider the default fonts too be too large ([https://bugs.launchpad.net/ubuntu/+source/gdm/+bug/99145 Launchpad bug report]). You can fix this by following these steps:&lt;br /&gt;
&lt;br /&gt;
# Open System-&amp;gt;Preferences-&amp;gt;Appearance&lt;br /&gt;
# Select the &amp;quot;Fonts&amp;quot; tab&lt;br /&gt;
# Click the &amp;quot;Details&amp;quot; button (lower right)&lt;br /&gt;
# Adjust the Resolution down to 96dpi&lt;br /&gt;
# Make sure you have Subpixel (LCD) Smoothing enabled&lt;br /&gt;
# Save the preferences&lt;br /&gt;
&lt;br /&gt;
If you also want small fonts on the GDM login window, you can do this:&lt;br /&gt;
&lt;br /&gt;
# Open System-&amp;gt;Administration-&amp;gt;Login Window&lt;br /&gt;
# Select the 'Security' tab&lt;br /&gt;
# Click the 'Configure X-Server' button&lt;br /&gt;
# Append '-dpi 96' (without quotes) to the text in the 'Command' field&lt;br /&gt;
# Reboot the computer.&lt;br /&gt;
&lt;br /&gt;
=== Brightness ===&lt;br /&gt;
====Intel X3100:====&lt;br /&gt;
The brightness controls should work out of the box on a fresh install.&lt;br /&gt;
&lt;br /&gt;
====Nvidia Quadro N140 and 570M:====&lt;br /&gt;
The brightness controls do not work, however you can switch to a virtual terminal (ctrl+alt+F1) increase or decrease the brightness and then switch back to X (ctrl+alt+F7) without disrupting the running applications.   In a few rare cases switching back to X (ctrl+alt+7) may freeze your computer with a black screen so save any open documents before switching out.&lt;br /&gt;
&lt;br /&gt;
== Audio ==&lt;br /&gt;
&lt;br /&gt;
=== Inextricably Linked to the Modem ===&lt;br /&gt;
Make sure that you have the modem enabled in the BIOS.  If it is disabled, you may discover (with much consternation) that your audio is also disabled.  In this situation, your drivers may still load, but you will get an error message whenever you try to play audio.  &lt;br /&gt;
&lt;br /&gt;
After trying all of the ALSA related fixes for this machine, with no love, I remembered what a colleague had said about his T60, and tried this on a hunch.  Blammo, it worked!&lt;br /&gt;
&lt;br /&gt;
===Enabling Audio controls===&lt;br /&gt;
&lt;br /&gt;
By default, the sound may be disabled and the volume control buttons on the laptop (up by the ThinkVantage button) and the volume control applet (up by the clock) will not control the speaker volume (they actually control the microphone!). https://bugs.launchpad.net/ubuntu/+bug/136287&lt;br /&gt;
this bug report links to a fixed version from an Ubuntu dev a fixed version is available &lt;br /&gt;
To fix this:&lt;br /&gt;
&lt;br /&gt;
# Right-click on the volume control applet (by the clock) and select &amp;quot;Open Volume Control&amp;quot;&lt;br /&gt;
# In the &amp;quot;Switches&amp;quot; tab, make sure &amp;quot;Headphone&amp;quot; and &amp;quot;Speaker&amp;quot; are both checked.&lt;br /&gt;
# Close the Volume control.&lt;br /&gt;
# Right-click on the volume control applet again and select &amp;quot;Preferences&amp;quot;.&lt;br /&gt;
# Make sure the device is set to &amp;quot;HDA Intel (Alsa mixer)&amp;quot; and highlight the &amp;quot;PCM&amp;quot; option.&lt;br /&gt;
# Close the preferences.&lt;br /&gt;
# Select System-&amp;gt;Preferences-&amp;gt;Sound.&lt;br /&gt;
# In the &amp;quot;Default Mixer Tracks&amp;quot; section, make sure &amp;quot;PCM&amp;quot; is highlighted.&lt;br /&gt;
# Close the sound preferences.&lt;br /&gt;
&lt;br /&gt;
You should now hear sound and be able to control the volume using the laptop buttons or volume applet.&lt;br /&gt;
&lt;br /&gt;
The mute button on the laptop does not work.&lt;br /&gt;
&lt;br /&gt;
===Microphone===&lt;br /&gt;
&lt;br /&gt;
There have been reports that the microphone may not work, please add your input to the talk page [http://www.thinkwiki.org/wiki/Talk:Installing_Ubuntu_7.10_%28Gutsy_Gibbon%29_on_a_ThinkPad_T61#Microphone] and update this section when a consensus on the problem and solution has been reached.&lt;br /&gt;
&lt;br /&gt;
===Sound Cracking===&lt;br /&gt;
&lt;br /&gt;
There have been intermittent reports of users experiencing cracking when listening to audio.  Here are a few possible solutions:&lt;br /&gt;
&lt;br /&gt;
* Try to switch to the OSS driver in system =&amp;gt; preference =&amp;gt; sound =&amp;gt; devices =&amp;gt; Music and movies, select OSS - Open sound system (instead of ALSA)&lt;br /&gt;
&lt;br /&gt;
* If this issue is only occurring for Rhythmbox go to Edit &amp;gt; Preferences &amp;gt; Playback &amp;gt; and Check &amp;quot;Use Crossfading Backend&amp;quot;.  Restart Rhythmbox and you should have better audio quality.&lt;br /&gt;
&lt;br /&gt;
* Check that the microphone is muted and modify your mixer settings by moving items like PCM down halfway and see if the cracking goes away.&lt;br /&gt;
&lt;br /&gt;
===Hissing===&lt;br /&gt;
Some users experience hissing during playback, and even when idle.  To solve this mute the microphone when it is not in use:&lt;br /&gt;
&lt;br /&gt;
# Run &amp;quot;alsamixer&amp;quot;.&lt;br /&gt;
# Arrow over to &amp;quot;Mic&amp;quot;, and hit &amp;quot;M&amp;quot; to mute.&lt;br /&gt;
# Arrow over to the first &amp;quot;Docking&amp;quot;, and hit &amp;quot;M&amp;quot; to mute.&lt;br /&gt;
# Arrow to the first &amp;quot;Internal&amp;quot;, and hit &amp;quot;M&amp;quot; to mute.&lt;br /&gt;
&lt;br /&gt;
Now, make sure that &amp;quot;Headphone&amp;quot; and/or &amp;quot;Speaker&amp;quot; are _not_ muted, and that &amp;quot;PCM&amp;quot; is at a reasonable level (say ~70) so you don't make your ears bleed, and try playing something back.  ''(&amp;lt;Esc&amp;gt; will exit alsamixer)''&lt;br /&gt;
&lt;br /&gt;
== Modem ==&lt;br /&gt;
&lt;br /&gt;
The modem works with the Linuxant drivers available at http://www.linuxant.com&lt;br /&gt;
&lt;br /&gt;
==Bluetooth== &lt;br /&gt;
Bluetooth works out of the box. Pressing Fn-F5 once will enable bluetooth, disable wireless, pressing again, enable both and pressing one more time will disable bluetooth.  &lt;br /&gt;
&lt;br /&gt;
If you would like to set bluetooth state independently the script below determines the current bluetooth state and toggles the device on or off. &lt;br /&gt;
&lt;br /&gt;
First create a new file named bluetooth-toggle:&lt;br /&gt;
{{cmdroot|sudo touch /usr/sbin/bluetooth-toggle}}&lt;br /&gt;
&lt;br /&gt;
Now open a editor:&lt;br /&gt;
{{cmdroot|sudo gedit /usr/sbin/bluetooth-toggle}}&lt;br /&gt;
&lt;br /&gt;
Paste the following script:&lt;br /&gt;
&lt;br /&gt;
 cat /proc/acpi/ibm/bluetooth | awk '{ print $2 }' | while read line;&lt;br /&gt;
  do&lt;br /&gt;
    if [ $line == &amp;quot;enabled&amp;quot; ]; then&lt;br /&gt;
        echo disable &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
    else&lt;br /&gt;
        echo enable &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
    fi&lt;br /&gt;
    break&lt;br /&gt;
  done&lt;br /&gt;
&lt;br /&gt;
Now set the execute permissions: &lt;br /&gt;
{{cmdroot|sudo chmod +x /usr/sbin/bluetooth-toggle}}&lt;br /&gt;
&lt;br /&gt;
You can invoke the script out of the console by typing sudo bluetooth-toggle or create a menu icon by using the menu editor under preferences using gksudo bluetooth-toggle as command line.&lt;br /&gt;
&lt;br /&gt;
== Fingerprint Reader ==&lt;br /&gt;
&lt;br /&gt;
The reader works with ThinkFinger. General instructions available [http://www.thinkwiki.org/wiki/Integrated_Fingerprint_Reader here] and [https://wiki.ubuntu.com/ThinkFinger here].&lt;br /&gt;
Instructions in French available at http://doc.ubuntu-fr.org/materiel/thinkfinger&lt;br /&gt;
&lt;br /&gt;
Prebuilt packages are available from jldugger using Launchpad's PPA:&lt;br /&gt;
&lt;br /&gt;
Add the thinkfinger package repository by creating {{path|/etc/apt/sources.list.d/thinkfinger.list}} with these two lines:&lt;br /&gt;
&lt;br /&gt;
 deb     http://ppa.launchpad.net/jldugger/ubuntu gutsy main restricted universe multiverse&lt;br /&gt;
 deb-src http://ppa.launchpad.net/jldugger/ubuntu gutsy main restricted universe multiverse&lt;br /&gt;
&lt;br /&gt;
Then update the package database and install packages:&lt;br /&gt;
&lt;br /&gt;
 {{cmduser|sudo apt-get update}}&lt;br /&gt;
 {{cmduser|sudo apt-get install libpam-thinkfinger libthinkfinger-dev libthinkfinger-doc libthinkfinger0 thinkfinger-tools}}&lt;br /&gt;
&lt;br /&gt;
After the package is installed add the following two lines to {{path|/etc/pam.d/common-auth}}&lt;br /&gt;
&lt;br /&gt;
 auth    sufficient      pam_thinkfinger.so&lt;br /&gt;
 auth    required        pam_unix.so try_first_pass&lt;br /&gt;
&lt;br /&gt;
Edit {{path|/etc/modules}} and add the following line:&lt;br /&gt;
&lt;br /&gt;
   uinput&lt;br /&gt;
&lt;br /&gt;
Load the module manually for this session:&lt;br /&gt;
&lt;br /&gt;
{{cmduser| sudo modprobe uinput}}&lt;br /&gt;
&lt;br /&gt;
Summary:&lt;br /&gt;
* Recording fingerprints works&lt;br /&gt;
* Login works&lt;br /&gt;
* The password must be entered to unlock a locked screensaver&lt;br /&gt;
* sudo works&lt;br /&gt;
* gksu and gksudo hang : for example it is necessary to run synaptic twice and enter your password upon failure. To be able to use the Finger print reader in the session subsequently, kill the hanging gksu/gksudo process. A workaround is editing the Gnome System Menu (alacarte) to specify sudo instead of gksu/gksudo for the launching command and choose type &amp;quot;Application in Terminal&amp;quot; : this opens an extra terminal window for each superuser application you want to use though.&lt;br /&gt;
&lt;br /&gt;
== Trackpad scrolling ==&lt;br /&gt;
&lt;br /&gt;
Trackpad scrolling works out of the box in the standard thinkpad way: Slide your finger up and down the very right edge of the trackpad.&lt;br /&gt;
Note that /etc/X11/xorg.conf will be changed and the edge scrolling will be disabled after running nvidia-xconfig , copy the trackpad section from the backup of xorg.conf&lt;br /&gt;
&lt;br /&gt;
To enable using the middle mouse button to scroll, add the following lines to the &amp;quot;Configured Mouse&amp;quot; section in&lt;br /&gt;
{{path|/etc/X11/xorg.conf}}:&lt;br /&gt;
&lt;br /&gt;
    Option    &amp;quot;EmulateWheel&amp;quot;          &amp;quot;true&amp;quot;&lt;br /&gt;
    Option    &amp;quot;EmulateWheelButton&amp;quot;    &amp;quot;2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Hibernate/Suspend ==&lt;br /&gt;
&lt;br /&gt;
=== Blank screen fix for intel graphics cards===&lt;br /&gt;
&lt;br /&gt;
This fix is for Intel Graphics Cards only.&lt;br /&gt;
&lt;br /&gt;
You may get a blank screen when resuming from suspend or hibernate ([https://bugs.launchpad.net/ubuntu/+bug/134391 Launchpad bug report]). If so, try editing {{path|/boot/grub/menu.lst}}, adding &amp;quot;acpi_sleep=s3_bios&amp;quot; (no quotes) to the &amp;quot;defoptions&amp;quot; list so that it looks something like this:&lt;br /&gt;
&lt;br /&gt;
  ## additional options to use with the default boot option, but not with the&lt;br /&gt;
  ## alternatives&lt;br /&gt;
  ## e.g. defoptions=vga=791 resume=/dev/hda5&lt;br /&gt;
  # defoptions=quiet splash '''acpi_sleep=s3_bios'''&lt;br /&gt;
&lt;br /&gt;
Once you have edited the line and added the acpi_sleep parameter, you need to run&lt;br /&gt;
&lt;br /&gt;
  $ sudo update-grub&lt;br /&gt;
&lt;br /&gt;
Note that if you get the blank screen upon resume, a quick-fix is to switch to a console (Ctrl-Alt-F1) and then back to X (Ctrl-Alt-F7). This will usually bring the display back to life. However, the long-term fix is to add the acpi_sleep parameter as shown above.&lt;br /&gt;
&lt;br /&gt;
=== How to Suspend with nVidia 140m/570m ===&lt;br /&gt;
&lt;br /&gt;
The suspend to RAM will work with the nVidia card and the proprietary drivers, but it requires some file editing. It did not work for me out of the box. Using the package manager, download and install the latest nVidia drivers (100.14.19+2.6.2.4-12.4 at time of writing). I also had to use the 2.6.22-12-generic kernel image (the 2.6.22-13 image did not work with this driver --- I'm assuming it has to match wit the nVidia version, but I am not an expert). &lt;br /&gt;
&lt;br /&gt;
Once you have it installed and working, you have to make a change to {{path|/etc/default/acpi-support}}. Open the file in your favorite editor and change the following lines:&lt;br /&gt;
&lt;br /&gt;
  $ sudo nano /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
{{path|/etc/default/acpi-support}}&lt;br /&gt;
  # Should we save and restore state using the VESA BIOS Extensions?&lt;br /&gt;
  SAVE_VBE_STATE=false&lt;br /&gt;
  ...&lt;br /&gt;
  # Should we attempt to warm-boot the video hardware on resume?&lt;br /&gt;
  POST_VIDEO=false&lt;br /&gt;
  ...&lt;br /&gt;
  # Set the following to &amp;quot;platform&amp;quot; if you want to use ACPI to shut down&lt;br /&gt;
  # your machine on hibernation&lt;br /&gt;
  HIBERNATE_MODE=platform&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This allowed me to suspend and resume, but after two suspends the wireless wouldn't work anymore. Theoretically, ACPI unloads the network drivers before suspending, but it doesn't seem to work correctly so I added these to the blacklist modules manually (in the same file as above:&lt;br /&gt;
&lt;br /&gt;
{{path|/etc/default/acpi-support}}&lt;br /&gt;
  # Add modules to this list to have them removed before suspend and reloaded&lt;br /&gt;
  # on resume. An example would be MODULES=&amp;quot;em8300 yenta_socket&amp;quot;&lt;br /&gt;
  #&lt;br /&gt;
  # Note that network cards and USB controllers will automatically be unloaded &lt;br /&gt;
  # unless they're listed in MODULES_WHITELIST&lt;br /&gt;
  MODULES=&amp;quot;iwl4965 iwlwifi_mac80211 cfg80211&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Your wifi modules may be different. (I have the intel AGN wireless card -- I don't know if these modules are different for other cards.)&lt;br /&gt;
&lt;br /&gt;
This allows me to suspend to ram; I haven't had any problems with it so far. I haven't gotten hibernate (suspend to disk) working, so there may be additional things you need to do for that. (I think part of my problem is that I don't have enough swap, but I don't care enough to actually fix it.)&lt;br /&gt;
&lt;br /&gt;
/*The fix does not work for me. I have a T61 7664-17U(NVS 140m, 4965agn). The computers suspend, but when it wakes up it hangs up and I have to pull out the battery to restart it.*/&lt;br /&gt;
&lt;br /&gt;
General hint: Do not install the package &amp;quot;hibernate&amp;quot; or &amp;quot;uswsusp&amp;quot; or the gnome-power-manager will fail to suspend/hibernate your computer. If you have installed the package don't forget to purge the configuration. (sudo apt-get remove hibernate --purge, uswsusp resp.)&lt;br /&gt;
&lt;br /&gt;
== Items that work out of the box ==&lt;br /&gt;
&lt;br /&gt;
'''Intel Video:''' 2D and 3D acceleration works&lt;br /&gt;
&lt;br /&gt;
'''Nvidia:''' 2D works, 3D requires the installation of the proprietary drivers&lt;br /&gt;
&lt;br /&gt;
'''Wireless:''' Atheros and Intel cards both tested.&lt;br /&gt;
&lt;br /&gt;
'''Bluetooth:''' Tested with both a bluetooth headset and an HTC 8525&lt;br /&gt;
&lt;br /&gt;
'''Network Card'''  Intel 10/100/1000 tested&lt;br /&gt;
&lt;br /&gt;
'''Firewire''' Tested with hard drive&lt;br /&gt;
&lt;br /&gt;
'''Wireless switch'''  &lt;br /&gt;
&lt;br /&gt;
'''4-in-1 card reader'''&lt;br /&gt;
&lt;br /&gt;
'''Webcam'''&lt;br /&gt;
&lt;br /&gt;
'''Headphones'''  You may need to enable Headphone out:   Right-click on the volume control and select open volume control.  Click the switches tab and then check the headphones box.&lt;br /&gt;
&lt;br /&gt;
'''Keyboard Shortcuts:'''&lt;br /&gt;
* Fn-PgUp activates/deactivates the thinklight&lt;br /&gt;
* Fn-Up will trigger stop on a media player&lt;br /&gt;
* Fn-Down will toggle pause and play on a media player&lt;br /&gt;
* Fn-Left/Right go to prev/next tracks on a media player&lt;br /&gt;
* Fn-F2 properly locks the screen&lt;br /&gt;
* Fn-F3 shows remaining battery  &amp;gt;&amp;gt;does not work on all machines&amp;lt;&amp;lt;&lt;br /&gt;
* Fn-F4 suspends (to ram)&lt;br /&gt;
* Fn-F12 hibernates (to disk)&lt;br /&gt;
* PrtSc opens the screenshot dialog&lt;br /&gt;
&lt;br /&gt;
'''Docking Stations:'''&lt;br /&gt;
&lt;br /&gt;
All docking station models should work and the following features have been tested:&lt;br /&gt;
&lt;br /&gt;
* DVI or Analog video: You can switch to it using &amp;quot;Administration-&amp;gt;Screens and Graphics&amp;quot;, if you are using the proprietary Nvidia drivers you must use the Nvidia Control Panel.&lt;br /&gt;
&lt;br /&gt;
* Network Pass-through&lt;br /&gt;
&lt;br /&gt;
* Modem Pass-through&lt;br /&gt;
&lt;br /&gt;
* USB ports: Connected upon docking&lt;br /&gt;
&lt;br /&gt;
* PS/2 Ports&lt;br /&gt;
&lt;br /&gt;
== Items that don't work ==&lt;br /&gt;
&lt;br /&gt;
=== Wireless USB/UWB ===&lt;br /&gt;
* details?&lt;br /&gt;
&lt;br /&gt;
=== Interrupt problem ===&lt;br /&gt;
* https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/126369&lt;br /&gt;
* USB ports can end up temporarily disabled&lt;br /&gt;
* Wifi can break&lt;br /&gt;
* integrated cardreader can be disabled&lt;br /&gt;
* bluetooth can be disabled&lt;br /&gt;
* Setting IRQ's to &amp;quot;Auto&amp;quot; from factory default of &amp;quot;11&amp;quot; in the BIOS seems to help some people.&lt;br /&gt;
&lt;br /&gt;
=== Volume keys ===&lt;br /&gt;
* Control mic instead of speakers by default&lt;br /&gt;
* https://bugs.launchpad.net/ubuntu/+bug/136287&lt;br /&gt;
&lt;br /&gt;
=== Wireless activity LED ===&lt;br /&gt;
doesn't seem to flicker properly. (?)&lt;br /&gt;
&lt;br /&gt;
== Power consumption ==&lt;br /&gt;
&lt;br /&gt;
Gutsy is the first version of Ubuntu to feature a tickless kernel (i386 only, not in AMD64 yet).  Power consumption&lt;br /&gt;
can be monitored using the powertop tool under Ubuntu and using Lenovo battery monitor&lt;br /&gt;
under Windows.&lt;br /&gt;
&lt;br /&gt;
  $ sudo apt-get install powertop&lt;br /&gt;
  $ sudo powertop&lt;br /&gt;
&lt;br /&gt;
I couldn't find any difference in power consumption between the i386 tickless kernel (even with 70ms average sleep in C4)&lt;br /&gt;
and AMD64 kernel (2ms average sleep in C4).  It would be expected that considerably less power would be consumed for the &lt;br /&gt;
i386 tickless kernel.&lt;br /&gt;
&lt;br /&gt;
There is also a graph available by Right-clicking on the battery icon and selecting Power History.&lt;br /&gt;
&lt;br /&gt;
These are the figures measured on a T61 15.4&amp;quot; 1680x1050 screen 7300 processor (2GHz) 2GB RAM, Intel X3100 graphics&lt;br /&gt;
with 4965 wifi, Bluetooth and UWB.&lt;br /&gt;
&lt;br /&gt;
{| border=1 cellpadding=5&lt;br /&gt;
|- &lt;br /&gt;
| 12.3W&lt;br /&gt;
| Windows XP Pro, all radios on, about 50% brightness&lt;br /&gt;
|-&lt;br /&gt;
| 16.7W&lt;br /&gt;
| Gutsy, all radios on, 50% brightness&lt;br /&gt;
|-&lt;br /&gt;
| 19.6W&lt;br /&gt;
| Gutsy, all radios on, 100% brightness&lt;br /&gt;
|-&lt;br /&gt;
| 14.2W&lt;br /&gt;
| Gutsy, all radios on, 10% brightness&lt;br /&gt;
|-&lt;br /&gt;
| -1.0W&lt;br /&gt;
| Turning the physical radio switch to off on the front reduces power consumption by 1 watt.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Adding the Nvidia card increases the laptops power requirements.&lt;br /&gt;
&lt;br /&gt;
These are the figures measured on a T61 14&amp;quot; 1440x900 screen 2.2ghz Core2Duo 2GB RAM, Nvidia 140m video, IWL4965 wifi and Bluetooth (Disabled):&lt;br /&gt;
&lt;br /&gt;
{| border=1 cellpadding=5&lt;br /&gt;
|-&lt;br /&gt;
| 18.3W&lt;br /&gt;
| Gutsy, all radios on, 50% brightness&lt;br /&gt;
|-&lt;br /&gt;
| 19.4W&lt;br /&gt;
| Gutsy, all radios on, 100% brightness&lt;br /&gt;
|-&lt;br /&gt;
| 16.0W&lt;br /&gt;
| Gutsy, all radios on, 10% brightness&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category: T61]] [[Category: Ubuntu 7.10]]&lt;/div&gt;</summary>
		<author><name>Sgla1</name></author>
		
	</entry>
</feed>