<?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=Plumpy</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=Plumpy"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Plumpy"/>
	<updated>2026-05-17T02:48:54Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Intel_Graphics_Media_Accelerator_X3100&amp;diff=37198</id>
		<title>Intel Graphics Media Accelerator X3100</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Intel_Graphics_Media_Accelerator_X3100&amp;diff=37198"/>
		<updated>2008-03-29T07:09:29Z</updated>

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

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

		<summary type="html">&lt;p&gt;Plumpy: added link to ubuntu 8.04 (hardy) installtion&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;See also: General Thinkpad {{T61}} information and installation notes for the previous {{T60}}.&lt;br /&gt;
&lt;br /&gt;
==Distribution-specific instructions==&lt;br /&gt;
&lt;br /&gt;
=== Debian ===&lt;br /&gt;
&lt;br /&gt;
* [http://ejahn.net/Members/eric/stories/t61_etch Installing Debian Etch Linux on a Thinkpad T61], 2007-10-13&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;
* {{Install|Debian| Lenny|T61}}&lt;br /&gt;
&lt;br /&gt;
=== Ubuntu ===&lt;br /&gt;
&lt;br /&gt;
* {{Install|Ubuntu| 7.04 (Feisty Fawn)| T61}}&lt;br /&gt;
* {{Install|Ubuntu| 7.10 (Gutsy Gibbon)| T61}}&lt;br /&gt;
* {{Install|Ubuntu| 8.04 (Hardy Heron)| T61}}&lt;br /&gt;
&lt;br /&gt;
=== Fedora ===&lt;br /&gt;
&lt;br /&gt;
* [http://carrot.hep.upenn.edu/wiki/doku.php?id=thinkpad:start Installing Fedora 7 x86_64] on a Thinkpad {{T61}} 15.4&amp;quot; widescreen.&lt;br /&gt;
* {{Install|Fedora| 7|T61}}, including Xen.&lt;br /&gt;
* Useful forum post on [http://www.fedoraforum.org/forum/showthread.php?t=159516 Fedora 7 x86_64] installation. - Updated 7.8.2007 to include suspend&lt;br /&gt;
* [http://lambda.uta.edu/T61/ Fedora 7 on a Lenovo ThinkPad T61]&lt;br /&gt;
* [[Installing Fedora 8 on a T61]]&lt;br /&gt;
&lt;br /&gt;
=== openSUSE / SUSE Linux ===&lt;br /&gt;
* [[Installing Novell SLED 10sp1 on a Thinkpad T61]]&lt;br /&gt;
* [[Installing openSUSE 10.3 Beta 2 on an Thinkpad T61]]&lt;br /&gt;
* [[Installing openSUSE 10.3 Beta 1 on an IBM ThinkPad T61]]&lt;br /&gt;
* [[Installing openSUSE 10.2 on an IBM ThinkPad T61]] - max X resolution in default install is 1024x768&lt;br /&gt;
* [[Installing openSUSE 10.3 GM on a ThinkPad T61]]&lt;br /&gt;
&lt;br /&gt;
=== Gentoo ===&lt;br /&gt;
* Useful forum post on [http://forums.gentoo.org/viewtopic-t-567773-highlight-.html installation of Gentoo].&lt;br /&gt;
* Gentoo-wiki's [http://gentoo-wiki.com/HARDWARE_Lenovo_Thinkpad_T61 Lenovo Thinkpad T61 hardware page].&lt;br /&gt;
&lt;br /&gt;
=== Mandriva ===&lt;br /&gt;
* [[Installing Mandriva 2008 x86-64 Powerpack on a Thinkpad T61]]&lt;/div&gt;</summary>
		<author><name>Plumpy</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installation_instructions_for_the_ThinkPad_T61&amp;diff=33952</id>
		<title>Installation instructions for the ThinkPad T61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installation_instructions_for_the_ThinkPad_T61&amp;diff=33952"/>
		<updated>2007-10-18T08:28:22Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;See also: General Thinkpad {{T61}} information and installation notes for the previous {{T60}}.&lt;br /&gt;
&lt;br /&gt;
==Distribution-specific instructions==&lt;br /&gt;
&lt;br /&gt;
=== Debian ===&lt;br /&gt;
&lt;br /&gt;
* [http://ejahn.net/Members/eric/stories/t61_etch Installing Debian Etch Linux on a Thinkpad T61], 2007-10-13&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;
* {{Install|Debian| Lenny|T61}}&lt;br /&gt;
&lt;br /&gt;
=== Ubuntu ===&lt;br /&gt;
&lt;br /&gt;
* {{Install|Ubuntu| 7.04 (Feisty Fawn)| T61}}&lt;br /&gt;
* {{Install|Ubuntu| 7.10 (Gutsy Gibbon)| T61}}&lt;br /&gt;
&lt;br /&gt;
=== Fedora ===&lt;br /&gt;
&lt;br /&gt;
* [http://carrot.hep.upenn.edu/wiki/doku.php?id=thinkpad:start Installing Fedora 7 x86_64] on a Thinkpad {{T61}} 15.4&amp;quot; widescreen.&lt;br /&gt;
* {{Install|Fedora| 7|T61}}, including Xen.&lt;br /&gt;
* Useful forum post on [http://www.fedoraforum.org/forum/showthread.php?t=159516 Fedora 7 x86_64] installation. - Updated 7.8.2007 to include suspend&lt;br /&gt;
* [http://lambda.uta.edu/T61/ Fedora Core 7 on a Lenovo ThinkPad T61]&lt;br /&gt;
&lt;br /&gt;
=== openSUSE / SUSE LINUX ===&lt;br /&gt;
* [[Installing Novell SLED 10sp1 on a Thinkpad T61]]&lt;br /&gt;
* [[Installing openSUSE 10.3 Beta 2 on an Thinkpad T61]]&lt;br /&gt;
* [[Installing openSUSE 10.3 Beta 1 on an IBM ThinkPad T61]]&lt;br /&gt;
* [[Installing openSUSE 10.2 on an IBM ThinkPad T61]] - max X resolution in default install is 1024x768&lt;br /&gt;
* [[Installing openSUSE 10.3 GM on a ThinkPad T61]]&lt;br /&gt;
&lt;br /&gt;
=== Gentoo ===&lt;br /&gt;
* Useful forum post on [http://forums.gentoo.org/viewtopic-t-567773-highlight-.html installation of Gentoo].&lt;br /&gt;
* Gentoo-wiki's [http://gentoo-wiki.com/HARDWARE_Lenovo_Thinkpad_T61 Lenovo Thinkpad T61 hardware page].&lt;/div&gt;</summary>
		<author><name>Plumpy</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.04_(Feisty_Fawn)_on_a_ThinkPad_T61&amp;diff=33815</id>
		<title>Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.04_(Feisty_Fawn)_on_a_ThinkPad_T61&amp;diff=33815"/>
		<updated>2007-10-11T22:45:40Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: tribe 5 =&amp;gt; release candidate&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On the T61, [[Installing_Ubuntu_7.10_(Gutsy_Gibbon)_Release_Candidate_on_a_ThinkPad_T61|Ubuntu 7.10 (Gutsy Gibbon)]] is recommended instead of 7.04 because video drivers and wifi, among other issues, work by default.&lt;br /&gt;
recomended&lt;br /&gt;
&lt;br /&gt;
===My DVD drive/CD burner/DVD burner doesn't work (Solved)===&lt;br /&gt;
&lt;br /&gt;
Follow these instructions to enable your [http://en.wikipedia.org/wiki/Optical_drive optical drive]:&amp;lt;br&amp;gt;&lt;br /&gt;
1) Reboot your T61. Press the ThinkVantage button quickly when you see the ThinkPad screen and then press F1 enter [http://en.wikipedia.org/wiki/BIOS BIOS].&amp;lt;br&amp;gt;&lt;br /&gt;
2) In BIOS, select Configure -&amp;gt; Serial ATA.&amp;lt;br&amp;gt;&lt;br /&gt;
3) Now, select Compatibility instead of AHCI.&amp;lt;br&amp;gt;&lt;br /&gt;
4) Exit BIOS and start your computer normally.&amp;lt;br&amp;gt;&lt;br /&gt;
5) Go to Places -&amp;gt; Computer, right-click your CD-ROM/DVD/etc. drive, and select Properties. Then, go to Drive -&amp;gt; Settings. Set the mount point to ''cdrom'' (regardless of whether it's a CD-ROM drive, DVD drive, etc.).&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
At first, the Ubuntu Live CD would not start at all, this seems to be a problem with the SATA AHCI driver.  I had to go into the BIOS and change the SATA driver from ACHI to compatibility (What is the difference? Am I loosing performance?).&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
After you've installed and booted, try the advice from [[Problems_with_SATA_and_Linux]]. Do this:&lt;br /&gt;
 '''# echo options libata atapi_enabled=1&amp;gt;/etc/modprobe.d/atapienable &amp;amp;&amp;amp; update-initramfs -u'''&lt;br /&gt;
Then try turning AHCI back on in the BIOS. On a custom-built 2.6.21.5 kernel, my DVD drive appears as /dev/hda and DMA works.&lt;br /&gt;
--[[User:Kc8tbe|Kc8tbe]] 12:45, 1 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
If your DVD drive does not appear, modprobe pata-jmicron and ide-generic.&lt;br /&gt;
--[[User:Antikristian|Antikristian]] 01:23, 30 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
===NVIDIA Quadro NVS 140M (Solved)===&lt;br /&gt;
After initial issues like those explained above in the SATA Issues, I received the xorg error 'fatal error: no screens found'.  I was able to boot into Safe Graphics Mode and run the installer, though I had to move both window manager bars to see enough of the install window to use it.&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can download the drivers via wget in a console. Take care to follow the instructions in &lt;br /&gt;
[http://www.nvnews.net/vbulletin/showthread.php?t=72490 the NVidia Forum] and uninstall all the packages wit apt-get remove, as described.&lt;br /&gt;
Then run the nvidia installer.&lt;br /&gt;
&lt;br /&gt;
Remember that, after you upgrade the kernel, you also have to re-install the drivers.&lt;br /&gt;
&lt;br /&gt;
After installing the NVIDIA drivers, your laptop may not wake after suspend or hibernation.  I followed these instructions to fix it [https://help.ubuntu.com/community/NvidiaLaptopBinaryDriverSuspend Ubuntu Community Help].&lt;br /&gt;
&lt;br /&gt;
====Alternative NVIDIA driver installation====&lt;br /&gt;
Instead of installing the NVIDIA drivers manually as described above, you can try using [http://www.albertomilone.com/nvidia_scripts1.html Envy]. It automatically installs the latest NVIDIA drivers, and cleans up any previous installations.&lt;br /&gt;
&lt;br /&gt;
=== Intel Graphics Media Accelerator X3100 (Chipset GM965) (Solved)===&lt;br /&gt;
After that the CD seemed to boot but the screen was just garbage [http://shadowarts.nonlogic.org/projects/thinkpad/screen_garbage.jpg Picture].  In order to get around that issue I had to go back and download the Alternate CD, which allows you to install in text only mode. From here, the text-only install went okay. Changing the VGA settings on the regular CD worked for me. &lt;br /&gt;
&lt;br /&gt;
When I booted up after the installation, I was still getting the same garbage on the screen.  To resolve this I edited my [http://shadowarts.nonlogic.org/projects/thinkpad/xorg.conf xorg.conf] file as shown.  I also had to install the latest kernel for Feisty, as the one off of the install disk did have have /dev/agpgart.  And I could then use X11.  There were still some issues however.  The screen seemed somewhat fuzzy.  This was a little more challenging of a fix...  I found [http://www.spinics.net/lists/xorg/msg25099.html this] mailing list posting, according to it, there was a small glitch in the driver.  To fix it:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
apt-get source xserver-xorg-video-intel&lt;br /&gt;
cd xserver-xorg-video-intel-1.9.94/&lt;br /&gt;
vim src/i830_lvds.c&lt;br /&gt;
Goto line 230 and delete (PFIT_ENABLE | VERT_AUTSCALE ....);, replacing it with 0;  then quit vim&lt;br /&gt;
dpkg-buildpackage -rfakeroot -uc -b&lt;br /&gt;
cd ..&lt;br /&gt;
dpkg -i xserver-xorg-video-intel_1.9.94-lubuntu3_amd64.deb (wont be amd64 with a 32-bit install)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Now reboot your computer, and it should work.  **NOTE: For some reason just restarting X didn't fix it, seems like you must reboot.**  At this point you should have a nice, crisp display.&lt;br /&gt;
&lt;br /&gt;
I am still working on aiglx and compiz (switching desktops on a cube doesnt seem to work, though I have some ideas...).  There are some issues with OpenGL apps freezing Xorg as well, but the standard 2D desktop works flawlessly.&lt;br /&gt;
----&lt;br /&gt;
It doesn't seem to be necessary to modify the soruce of xserver-xorg-video-intel anymore, but 3D-acceleration doesn't seem to be stable yet and kdm occasionally needs to be restarted after a login attempt.--[[User:Kc8tbe|Kc8tbe]] 12:49, 1 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
I was able to use the normal feisty install disk by changing the SATA setting in BIOS, then change the resolution to 800x600 prior to install, then sudo apt-get update and upgrade, and then sudo apt-get install xserver-xorg-video-intel, then change xorg.conf to match link above and 2D graphics work fine.  Jul 18, 2008 - John E&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
It seems that everything works fine when using &amp;quot;apt pinning&amp;quot; and updating the xserver-xorg-video-intel, mesa and other packages to the versions provided by Gutsy. I did the following and the resolution and Compiz Fusion are working fine at the moment. The original source of the steps described below can be found here: [http://techreport.com/forums/viewtopic.php?p=714998#714998]&lt;br /&gt;
&lt;br /&gt;
'''Instructions:'''&lt;br /&gt;
* Make a new file /etc/apt/preferences&lt;br /&gt;
* In the preferences file, put: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Package: *&lt;br /&gt;
Pin: release a=feisty&lt;br /&gt;
Pin-Priority: 700&lt;br /&gt;
&lt;br /&gt;
Package: *&lt;br /&gt;
Pin: release a=gutsy&lt;br /&gt;
Pin-Priority: 200&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Now, edit your sources.list and copy the main and restricted (and others if you want) repo lines replacing feisty with gutsy: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# original&lt;br /&gt;
deb http://archive.ubuntu.com/ubuntu feisty main restricted universe multiverse&lt;br /&gt;
deb-src http://security.ubuntu.com/ubuntu feisty main restricted universe multiverse&lt;br /&gt;
&lt;br /&gt;
# your addition&lt;br /&gt;
deb http://archive.ubuntu.com/ubuntu gutsy main restricted universe multiverse&lt;br /&gt;
deb-src http://security.ubuntu.com/ubuntu gutsy main restricted universe multiverse&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Now run:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{HINT|If you get an error while trying to update, it may be because your apt cache is too small. To fix this add the following to your &amp;quot;/etc/apt/apt.conf.d/70debconf&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
APT::Cache-Limit &amp;quot;118388608&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;--[[User:Thefekete|Thefekete]] 04:14, 19 September 2007 (UTC)}}&lt;br /&gt;
*Then Run:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get -t gutsy install xserver-xorg-video-intel&lt;br /&gt;
sudo apt-get -t gutsy install linux&lt;br /&gt;
sudo apt-get -t gutsy install libgl1-mesa-dri&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Now reboot.&lt;br /&gt;
&lt;br /&gt;
Probably now you have the weird effect that your GUI is scaled wrong and doesn't fill the full width of the monitor. To fix that, open your xorg.conf and make the following changes:&lt;br /&gt;
* Add the following section to your xorg.conf&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;Monitor&amp;quot;&lt;br /&gt;
    Identifier &amp;quot;TVOutput&amp;quot;&lt;br /&gt;
    Option &amp;quot;Disable&amp;quot; &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Then in the &amp;quot;Device&amp;quot; section add the following line:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Option &amp;quot;monitor-TV&amp;quot; &amp;quot;TVOutput&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That should fix the scaling problem and now everything should work fine.&lt;br /&gt;
--[[User:Shuk|Shuk]] 02:26, 10 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
{{HINT|If you experience problems with totem or other gstreamer apps crashing, try this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ gstreamer-properties&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Then under the &amp;quot;Video&amp;quot; tab, change the Output Plugin to &amp;quot;X Window System (No Xv)&amp;quot;&lt;br /&gt;
This will run the video through you processor, but won't crash gstreamer. --[[User:Thefekete|Thefekete]] 04:14, 19 September 2007 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
===ThinkFinger===&lt;br /&gt;
Ubuntu does not come with a package for thinkfinger.  Downloading the most recent source and building it was simple enough: Download most recent version (0.3 at time of writing)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install libpam0g-dev libusb-dev&lt;br /&gt;
tar xvzf thinkfinger-0.3.tar.gz&lt;br /&gt;
cd thinkfinger-0.3/&lt;br /&gt;
./configure --with-securedir=/lib/security --with-birdir=/etc/pam_thinkfinger&lt;br /&gt;
make -j5             (hey its dual core!)&lt;br /&gt;
sudo make install&lt;br /&gt;
sudo ldconfig&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Configuring it is easy as well, open /etc/pam.d/common-auth:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
auth sufficient pam_thinkfinger.so&lt;br /&gt;
auth required pam_unix.so try_first_pass nullok_secure&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the data directory and set your fingerprint:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo mkdir /etc/pam_thinkfinger&lt;br /&gt;
sudo tf-tool --add-user &amp;lt;username&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To get be asked to swipe your finger when logging in or sudoing&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo modprobe uinput&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
To make sure it works after reboot add &amp;quot;uinput&amp;quot; to the list in /etc/modules.&lt;br /&gt;
&lt;br /&gt;
It will all be setup.  (I found this somewhere on the web, I wish I could give a source but I'm afraid I cant find it, thank you Anonymous!).&lt;br /&gt;
&lt;br /&gt;
===HDAPS===&lt;br /&gt;
This seems to be working fine now, I just follow the step on [[How_to_protect_the_harddisk_through_APS]].  Using hdaps-gl does the inverse of the accelerometer, though it's not really a big deal, the harddrive protection should still work.&lt;br /&gt;
&lt;br /&gt;
Assuming that the (improved) hdaps code bundled with tp_smapi is being used, editing the transform_axis function in tp_smapi-0.32/hdaps.c will allow for the proper operation of the accelerometer. Assuming that the accelerometer is rotated 90 degrees from its proper orientation (as it is with the X61), the following code will suffice:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
static void transform_axes(int *x, int *y)&lt;br /&gt;
{&lt;br /&gt;
	int temp = *x;&lt;br /&gt;
	*x = -*y;&lt;br /&gt;
	*y = temp;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For those paying attention in linear algebra, this corresponds to a linear transformation that rotates a 2D coordinate system 90 degrees.&lt;br /&gt;
--[[User:Mbsullivan|Mbsullivan]] 04:21, 27 August 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
Instead of editing the code, you can just pass the invert=1 parameter when loading the module; modprobe hdaps invert=1&lt;br /&gt;
--[[User:Vegar|Vegar]] 14:40, 17 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
===WiFi===&lt;br /&gt;
If you have Intel 4965AGN WiFi card, you have to use ndiswrapper OR use backported kernel from Ubuntu Gutsy (Anybody have howto?) and use following: &lt;br /&gt;
http://kuscsik.blogspot.com/2007/06/how-to-install-intel-4965-wireless.html&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
Do not use the latest versions of iwlwifi and mac80211. For me with Gutsy mac80211-8.0.2 and iwlwifi-0.0.42 work with the latest firmware. No further modification needed.&lt;br /&gt;
&lt;br /&gt;
If you have the Atheros card, Ubuntu should automatically install madwifi, which works out of the box&lt;br /&gt;
----&lt;br /&gt;
Works for me with iwlwifi-4965-ucode-4.44.15, iwlwifi-0.0.34, and mac80211-8.0.1. The catch is, you need to patch your kernel with mac80211, which will fail at compile time with the stock Ubuntu sources. Worked for me with vanilla 2.6.21.5 sources patched for tp_smapi and hdaps protect. Make sure to disable CONFIG_NET_WIRELESS_RTNETLINK in your kernel config.&lt;br /&gt;
&lt;br /&gt;
You can download what you need for for iwlwifi and mac80211 from &lt;br /&gt;
http://intellinuxwireless.org .--[[User:Kc8tbe|Kc8tbe]] 13:00, 1 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
Works for me with vanilla kernel v2.6.22.1, ucode 4.44.17, iwlwifi 0.1.2 and mac80211 9.0.2. --[[User:Mbsullivan|Mbsullivan]] 13:40, 24 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
You can also use Kernel 2.6.22.9 and Ubuntu Modules 2.6.22.9 from Gutsy and you will not need to compile anything! Works very well.&lt;br /&gt;
&lt;br /&gt;
===Keyboard/Apostrophe issues (Solved)===&lt;br /&gt;
When installing with the alternate CD, Ubuntu asks you if your keyboard as a character that appears to be a quotation mark (this character: &amp;quot;). If you're using a US English keyboard, say no; the character is actually an umlaut. [[User:SteveSims|SteveSims]] 02:15, 19 August 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
My apostrophe key outputs ´ instead of '. I went to System -&amp;gt; Preferences -&amp;gt; Keyboard and could not figure out how to fix it. [[User:SteveSims|SteveSims]] 21:50, 11 August 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Try switching your keyboard layout to US-Classic, and putting it on the top of the list.  After you do that, it works perfectly. --[[User:Adamacious|Adamacious]] 04:29, 13 August 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
::There is no &amp;quot;US Classic&amp;quot; option. Here's what I have:&amp;lt;br&amp;gt;&lt;br /&gt;
[[Image:Keyboard_options.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[User:SteveSims|SteveSims]] 02:17, 15 August 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::It started working, even though I changed nothing. I'm running it as a Macintosh US English keyboard. [[User:SteveSims|SteveSims]] 17:20, 15 August 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::Sorry Steve, what you had to do (and what you did) is select US English, as in the header in the list.  It doesn't look selectable, but it is.--[[User:Adamacious|Adamacious]] 20:02, 22 August 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
===Audio===&lt;br /&gt;
====Fixed in Gutsy====&lt;br /&gt;
As of 29 August 2007 and [https://bugs.launchpad.net/bugs/122560 this issue], the 2.6.22-10 kernel in Gutsy Gibbon supports audio out-of-the-box (as well as WiFi and other things).  Installing the Gutsy kernel via apt and rebooting fixed audio for me, both speakers and headphones.  Remaining issues:&lt;br /&gt;
&lt;br /&gt;
* The mute button mutes audio, but doesn't unmute.  Pressing volume up or down does unmute it, but has no effect on volume.&lt;br /&gt;
* KMix's system tray volume control has no effect because it thinks it's setting the headphones while both outputs are using the speaker settings, but opening KMix and setting the PCM volume works.  --lgarfiel&lt;br /&gt;
&lt;br /&gt;
====Python script fix (slightly easier fix)====&lt;br /&gt;
First, you have to download the source for the [http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.22.5.tar.gz latest Linux kernel] (2.6.22-5 as of August 26th, 2007) and compile it, something most users cannot do. However, you won't have to compile ALSA and its modules from source if you do it this way.&lt;br /&gt;
&lt;br /&gt;
1) Download the [http://launchpadlibrarian.net/8899521/t61_audio_hack.py T61 audio hack] from [[Launchpad]]. Move it to a convenient folder (e.g., not your desktop).&amp;lt;br&amp;gt;&lt;br /&gt;
2) Go to System -&amp;gt; Preferences -&amp;gt; Sessions -&amp;gt; Startup Programs -&amp;gt; Add.&amp;lt;br&amp;gt;&lt;br /&gt;
3) Name it whatever you want. Choose something simple like &amp;quot;Python audio fix.&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
4) Go to Command, and enter the following (with quotation marks):&lt;br /&gt;
&amp;lt;pre&amp;gt;gksudo &amp;lt;nowiki&amp;gt;&amp;quot;[THE FOLDER THAT T61_AUDIO_HACK.PY IS IN]&amp;lt;/nowiki&amp;gt;/t61_audio_hack.py&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
For example, on my computer, I put t61_audio_hack.py into the /fixes folder in my home folder, so I entered:&lt;br /&gt;
&amp;lt;pre&amp;gt;sksudo &amp;quot;/home/sims/fixes/t61_audio_hack.py&amp;quot;&amp;lt;/pre&amp;gt; into the Command textbox.&amp;lt;br&amp;gt;&lt;br /&gt;
5) Log out, log back in, and type your password quickly when prompted the second time.&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.20/+bug/122560 Launchpad Bug #122560]&lt;br /&gt;
[https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.20/+bug/133105 Launchpad Bug #133105]&lt;br /&gt;
&lt;br /&gt;
====ALSA driver update (hard fix, recommended for advanced users)====&lt;br /&gt;
&lt;br /&gt;
:'''''Note: This section assumes a high level of technical proficiency. Please fix it.'''''&lt;br /&gt;
::*&amp;lt;s&amp;gt;At [http://www.alsa-project.org www.asla-project.org], did you download only alsa-driver-1.0.14? That and alsa-lib-1.0.14a?&amp;lt;/s&amp;gt;&lt;br /&gt;
:::Download alsa-driver, alsa-kernel, alsa-lib, and alsa-utils, according to [http://alsa.opensrc.org/index.php/AlsaCVS http://alsa.opensrc.org/index.php/AlsaCVS]. Other sources, however, say only the driver is necessary. Perhaps alsa-project.org simply recommends the other two?&lt;br /&gt;
::*''How'' did you compile it from source? ''How'' did you add the patch?&lt;br /&gt;
::*In short, please explain ''how'' you did these things in addition to just telling us ''what'' you did. I´m not trying to be rude but seriously, not all Linux users are programmers ;). Thanks. [[User:SteveSims|SteveSims]] 22:19, 11 August 2007 (UTC)&lt;br /&gt;
After upgrading to 1.0.14 I still had no sound, and this took about a week to solved (though it was so sadly obvious though).  Just upgrading to alsa 1.0.14 will not be enough, there were a few patches released right after the release that fix the Thinkpad's.  The reason I missed this was because it was the same day so the release of 1.0.14!&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------&lt;br /&gt;
VERY SIMPLE METHOD OF MAKING SOUND WORK &lt;br /&gt;
http://forums.fedoraforum.org/showthread.php?t=159516&amp;amp;page=1&amp;amp;pp=15&lt;br /&gt;
Just follow the instructions step by step, except for two small things:&lt;br /&gt;
When doing &amp;quot;cp ../patch_analog.c alsa-driver-1.0.14/alsa-kernel/pci/hda/&amp;quot; use &amp;quot;cp ../patch_analog.c alsa-kernel/pci/hda/&amp;quot; instead&lt;br /&gt;
Also, when you get to the part about modifying the modprobe.conf file, it doesn't exist in ubuntu. Adding &amp;quot;options snd-hda-intel index=0 model=thinkpad&amp;quot; to any file (even one you make yourself) inside etc/modprobe.d should work. I personally added it to the options file, and it works fine. &lt;br /&gt;
&lt;br /&gt;
-credit for the guide goes to ciphermonk, and credit to the small changes needed to make this work on ubuntu go to my friend John. &lt;br /&gt;
&lt;br /&gt;
-hotkeys control mic volume, not speaker volume for some reason. I do not know how to fix this&lt;br /&gt;
&lt;br /&gt;
-this fix should provide sound for both headphones and speakers. &lt;br /&gt;
&lt;br /&gt;
-this edit by fatalchaos &lt;br /&gt;
---------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
First make sure these packages are installed (System -&amp;gt; Administration -&amp;gt; Synaptic Package Manager) : automake, autoconfig, cvs, libtool, python-dev, build-essential&lt;br /&gt;
&lt;br /&gt;
Then download the source code to the alsa-driver and apply these patches: (links to the revisions)&lt;br /&gt;
 &lt;br /&gt;
* [http://hg.alsa-project.org/alsa-kernel/rev/958b39f3e8dd Fix Oops with AD1984 thinkpad model]&lt;br /&gt;
* [http://hg.alsa-project.org/alsa-kernel/rev/47ca87407c84 Fix AD1984 basic model]&lt;br /&gt;
* [http://hg.alsa-project.org/alsa-kernel/rev/ca37aeeeb0ea Fix Thinkpad X61/T61 outputs]&lt;br /&gt;
&lt;br /&gt;
'''Please use CVS version of ALSA instead. All of these patches are committed'''. The link to the CVS version of ALSA is dead[http://alsa.opensrc.org/index.php/AlsaCVS].&lt;br /&gt;
&lt;br /&gt;
After doing a make and make install reboot your computer (or rrmmod snd-hda-intel &amp;amp;&amp;amp; modprobe snd-hda-intel).  And run alsamixer (for me it only works as root atm).  If you can´t find alsamixer, you can run it in the terminal (Applications -&amp;gt; Accessories -&amp;gt; Terminal) by entering ''alsamixer''. You will have to play with the settings a bit.  Make sure the speaker option is not muted and leave the Internal Mic Boost at 0, other wise you will have a really loud microphone feedback sort of sound constantly.&lt;br /&gt;
&lt;br /&gt;
I had to chmod -R 777 /dev/snd/ to get everything work for now. (THIS IS NOT THE CORRECT WAY TO DO IT, IT WILL NOT STAY BETWEEN REBOOTS!).&lt;br /&gt;
&lt;br /&gt;
Audio playback should then work, audio capture (microphone) doesn't seem to work, but I am probably not going to try and fix it, I don't use the capture so I am not concerned with that at the moment.&lt;br /&gt;
'''Update:''' With ALSA CVS, microphone seems to work&lt;br /&gt;
&lt;br /&gt;
If you can't hear the mic boost mic settings.  Here are my settings at KMix&lt;br /&gt;
Output&lt;br /&gt;
   Mic - low&lt;br /&gt;
   Mic Boost - full&lt;br /&gt;
Input &lt;br /&gt;
   Mic boost [enable] - medium&lt;br /&gt;
   capture [enable] - medium&lt;br /&gt;
&lt;br /&gt;
works great with Skype.  Also you can use the 'mic level meter' on KRecord to check the mic&lt;br /&gt;
&lt;br /&gt;
In Gnome, default channel mapped to thinkpad volume buttons is MIC, which is bad. Go to ''System-&amp;gt;Preferences-&amp;gt;Sound-&amp;gt;Default mixer tracks'' to change it&lt;br /&gt;
&lt;br /&gt;
'''Please note''' that internal speakers doesn't work with ALSA CVS. Use the headphone jack. Solution?&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
When starting alsamixer over the terminal I couldn't activate the speakers and only had sound over the headphone. However, I figured out how to easily activate the speakers:&lt;br /&gt;
* Right-click on your microphone icon in the top panel.&lt;br /&gt;
* (If &amp;quot;Mute&amp;quot; is activated, deactivate it. I had that at the beginning and was confused since in alsa you don't really realize it.)&lt;br /&gt;
* Click on &amp;quot;Open Volume Control&amp;quot;&lt;br /&gt;
* Change to the tab &amp;quot;Switches&amp;quot; and activate the option for speaker. &lt;br /&gt;
That should be enough to make it work.&lt;br /&gt;
--[[User:Shuk|Shuk]] 02:51, 11 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
I tried those patches, it didnt work for me. But this python script did: http://www.klabs.be/~fpiat/linux/debian/Etch_on_Thinkpad_T61.html#Sound  .. apparently if you make the PC speaker play constantly, you cant hear it but you can then hear sound. Hopefully gutsy will fix this :/ --[[User:Rubin|Rubin]] 07:18, 14 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Suspend==&lt;br /&gt;
Suspending doesn't work by default. It succesfully suspends, but after resuming, Kernel panic occurs. I didn't test hibernate.&lt;br /&gt;
I managed to get suspend to ram to work by using this script:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 &lt;br /&gt;
 # if launched through a lid event and lid is open, do nothing&lt;br /&gt;
 echo &amp;quot;$1&amp;quot; | grep &amp;quot;button/lid&amp;quot; &amp;amp;&amp;amp; grep -q open /proc/acpi/button/lid/LID/state &amp;amp;&amp;amp; exit 0&lt;br /&gt;
 &lt;br /&gt;
 # remove USB 1.1 driver&lt;br /&gt;
 rmmod uhci_hcd&lt;br /&gt;
 rmmod ehci_hcd&lt;br /&gt;
 &lt;br /&gt;
 # sync filesystem and clock&lt;br /&gt;
 sync&lt;br /&gt;
 /sbin/hwclock --systohc&lt;br /&gt;
 &lt;br /&gt;
 # switch to console&lt;br /&gt;
 FGCONSOLE=`fgconsole`&lt;br /&gt;
 chvt 6&lt;br /&gt;
 &lt;br /&gt;
 # go to sleep&lt;br /&gt;
 sleep 5 &amp;amp;&amp;amp; echo -n &amp;quot;mem&amp;quot; &amp;gt; /sys/power/state&lt;br /&gt;
 &lt;br /&gt;
 # readjust the clock (it might be off a bit after suspend)&lt;br /&gt;
 /sbin/hwclock --adjust&lt;br /&gt;
 /sbin/hwclock --hctosys&lt;br /&gt;
 &lt;br /&gt;
 # reload USB 1.1 driver&lt;br /&gt;
 modprobe uhci_hcd&lt;br /&gt;
 modprobe ehci_hcd&lt;br /&gt;
 &lt;br /&gt;
 # turn on the backlight and switch back to X&lt;br /&gt;
 chvt $FGCONSOLE&lt;br /&gt;
&lt;br /&gt;
It's very similar to script posted on thinkwiki, but I had to add ehci_hcd to removed modules and remove some radeon stuff (when using Nvidia)&lt;br /&gt;
&lt;br /&gt;
'''Problems''' the problem with this suspend script is, that after resuming, the laptop is incredibly slow. Applications start about 20 seconds, Firefox is lagging. But processor doesn't run at highest frequency, nothing seems unusual. '''Suggestions?'''&lt;br /&gt;
&lt;br /&gt;
This X-slow-after-resume is still here (T61p, nVidia Quadro FX 570 M, bleeding edge Gutsy 2.6.22-10-generic kernel). However, I found an official OpenSuSE 10.3 for this problem:&lt;br /&gt;
[https://bugzilla.novell.com/show_bug.cgi?id=290385]&lt;br /&gt;
--[[User:Lech|Lech]] 21:20, 2 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
When using this script, my USB ports are 'dead' after resume (i.e.  nothing connected to it gets any power).  I have commented out 'rmmod ehci_hcd' and 'modprobe ehci_hcd' lines, to make the USB ports active after a suspend/resume cycle.  (this is using nvidia card)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Suspend and hibernate work out-of-the-box for me with the 2.6.21.5 kernel, except that you need to put acpi_sleep=s3_bios in the kernel command line (i.e. at the end of each kernel line in /boot/grub/menu.lst).&lt;br /&gt;
--[[User:Kc8tbe|Kc8tbe]] 13:03, 1 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hmm, with 2.6.21.5 + acpi_sleep=s3_bios,  laptop suspends, but resume fails - machine locks up.  This is with nvidia 140.  Same result when doing it at console.  When I resume, I hear a beep and the machine hangs.  Have to hard-reset.  Suggestions?&lt;br /&gt;
&lt;br /&gt;
Some things seem to break after suspend for me, like network connections time out randomly, cdrom stops working etc. Running 'sudo /etc/init.d/dbus restart' seems to solve it for the most part.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
We are having similar discussions in Ubunutu's Launchpad, and we found kind of a solution which rules out any 2D/3D graphics acceleration but allows to suspend/resume, at least on my 3 weeks old T61p and some other recent T6x/R6x models:&lt;br /&gt;
&lt;br /&gt;
With thinkpad_acpi 0.16 (!) patches applied to 2.6.22 kernel, and with VESA driver only, it works perfectly so far for us.&lt;br /&gt;
&lt;br /&gt;
The discussion and some links can be found at:&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+bug/139089&lt;br /&gt;
https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/129125&lt;br /&gt;
&lt;br /&gt;
I know it's not eye candy not to have satisfying GLX etc., but I consider working suspend/resume much more important than say playing with GoogleEarth.&lt;br /&gt;
&lt;br /&gt;
--[[User:Lech|Lech]] 14:48, 16 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Brightness==&lt;br /&gt;
Changing brightness doesn't work at all. There are many issues. I tried Gutsy and still the same (even worse)&lt;br /&gt;
&lt;br /&gt;
Not a real solution, but if using the vesa driver, brightness control works. ''--Daniel06'' 11:58, 4 July 2007&lt;br /&gt;
&lt;br /&gt;
doesnt work for me with vesa or intel --[[User:Rubin|Rubin]] 06:19, 14 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
It works fine on mine and I have built-in graphics on my motherboard. [[User:SteveSims|SteveSims]] 02:19, 15 August 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
=== one idea ===&lt;br /&gt;
  echo &amp;quot;up&amp;quot; &amp;gt;/proc/acpi/ibm/brightness   &lt;br /&gt;
...works. as does 'down' and 'level x' where x is 1-7.  But how to tie that into the buttons? Seems they are currently using something else in /proc that doesnt exist for us.  --[[User:Rubin|Rubin]] 06:19, 14 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
=== yet another idea ===&lt;br /&gt;
&lt;br /&gt;
You can add the Gnome power manager brightness applet to the gnome panel, which gives you a GUI tool to do the job, rather than hardware buttons.  I don't know about KDE or other window managers.  --[[User:Atoponce|Atoponce]] 13:07 22, Aug 2007&lt;br /&gt;
&lt;br /&gt;
=== Another solution for Brightness, using xbacklight and laptop-mode ===&lt;br /&gt;
&lt;br /&gt;
While the hardware buttons still don't work, I have a solution that will automatically raise and lower the backlight when plugged in or on battery.  &lt;br /&gt;
&lt;br /&gt;
First, make sure Gnome isn't trying to set the brightness, by going to System &amp;gt; Preferences &amp;gt; Power Management.  In the On Battery Power tab, set &amp;quot;Dim display brightness by&amp;quot; to 0%.&lt;br /&gt;
&lt;br /&gt;
Next, install xbacklight.&lt;br /&gt;
&lt;br /&gt;
  sudo apt-get install xbacklight&lt;br /&gt;
&lt;br /&gt;
You can manually set the backlight by using &amp;quot;xbacklight -set &amp;lt;number from 1-100&amp;gt;&amp;quot;.  Note that by using xbacklight, you can make the backlight go brighter or dimmer than normally allowed by Windows or Ubuntu.&lt;br /&gt;
&lt;br /&gt;
To automate brightness changes, first enable laptop-mode&lt;br /&gt;
&lt;br /&gt;
  sudo nano /etc/default/acpi-support&lt;br /&gt;
&lt;br /&gt;
Scroll to the bottom and change ENABLE_LAPTOP_MODE to true&lt;br /&gt;
&lt;br /&gt;
  ENABLE_LAPTOP_MODE=true&lt;br /&gt;
&lt;br /&gt;
Set laptop mode to start automatically&lt;br /&gt;
&lt;br /&gt;
  sudo update-rc.d laptop-mode multiuser&lt;br /&gt;
&lt;br /&gt;
Edit laptop-mode.conf to automate brightness changes.  Scroll down to LCD brightness settings.  Modify the section to read as follows:&lt;br /&gt;
&lt;br /&gt;
  CONTROL_BRIGHTNESS=1&lt;br /&gt;
&lt;br /&gt;
  BATT_BRIGHTNESS_COMMAND=&amp;quot;xbacklight -set 20&amp;quot;&lt;br /&gt;
  LM_AC_BRIGHTNESS_COMMAND=&amp;quot;xbacklight -set 100&amp;quot;&lt;br /&gt;
  NOLM_AC_BRIGHTNESS_COMMAND=&amp;quot;xbacklight -set 100&amp;quot;&lt;br /&gt;
  BRIGHTNESS_OUTPUT=&amp;quot;/dev/null&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note: You can use any value from 1 to 100 after -set, I used 20 and 100 as examples.  After this, start the laptop-mode daemon, and test if it works.  You may have to restart acpid as well.&lt;br /&gt;
&lt;br /&gt;
  sudo /etc/init.d/laptop-mode start&lt;br /&gt;
  sudo /etc/init.d/acpid restart&lt;br /&gt;
&lt;br /&gt;
==Webcam==&lt;br /&gt;
The webcam in T61 is some sort of UVC camera: Found UVC 1.00 device Integrated Camera (17ef:1004). The module loads out of the box. I tested the camera using:&lt;br /&gt;
Luvcview: http://mxhaard.free.fr/spca50x/Investigation/uvc/luvcview-20070512.tar.gz&lt;br /&gt;
Just compile and run using ./luvcview -f yuv (JPG format doesn't work)&lt;br /&gt;
&lt;br /&gt;
I also tried gqcam and webcam, but both doesn't work (first SEGFAULTs, second prints Invalid argument)&lt;br /&gt;
&lt;br /&gt;
luvcview has a button to take pictures. Place your mouse over the buttons at the bottom of the window, and their function is revealed in the title bar. Unfortunately, the button for avi capture does not seem to work (although it does tell you what the video framerate is, which is helpful).&lt;br /&gt;
&lt;br /&gt;
To capture a video stream, run ./luvcview -f yuv -S&lt;br /&gt;
To play back the video stream, run mplayer -demuxer rawvideo -rawvideo fps=7:w=320:h=240:yuy2 stream.raw&lt;br /&gt;
&lt;br /&gt;
==64 bit systems issues==&lt;br /&gt;
If you are running 64 bit Ubuntu, you will face some problems with 32 bit only proprietary applications. Most of them can be solved. &lt;br /&gt;
&lt;br /&gt;
===Firefox &amp;amp; Flash===&lt;br /&gt;
You can use 32bit version of Firefox (see google), or use http://gwenole.beauchesne.info/projects/nspluginwrapper/ nspluginwrapper] which i prefer:&lt;br /&gt;
 sudo apt-get install ia32-libs ia32-libs-gtk linux32 lib32asound2 alien&lt;br /&gt;
Now download both nspluginwrapper rpms (Plugin + Viewer) and convert them:&lt;br /&gt;
 sudo alien nspluginwrapper*.rpm&lt;br /&gt;
 sudo dpkg -i nspluginwrapper*.deb&lt;br /&gt;
&lt;br /&gt;
Download Adobe Flash Player: http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_9_linux.tar.gz&lt;br /&gt;
 tar -xvzf install_flash_player_9_linux.tar.gz&lt;br /&gt;
 cd install_flash_player_9_linux&lt;br /&gt;
 sudo install libflashplayer.so flashplayer.xpt /usr/lib/firefox/plugins&lt;br /&gt;
 nspluginwrapper -i /usr/lib/firefox/plugins/libflashplayer.so&lt;br /&gt;
 cd ~/.mozilla/plugins/&lt;br /&gt;
 sudo install npwrapper.libflashplayer.so /usr/lib/mozilla-firefox/plugins/&lt;br /&gt;
This howto is taken from [http://webzine.smehlik.net/64bit-ubuntu-adobe-flash-plugin-pomoci-nspluginwrapper/ Smehlik Webzine (in Czech)]&lt;br /&gt;
&lt;br /&gt;
===Skype===&lt;br /&gt;
Download Skype for Ubuntu Feisty&lt;br /&gt;
Use this commandlibdbus, libqt4-core, libqt4-gui, libsigc++ to determine missing libraries:&lt;br /&gt;
 ldd /usr/bin/skype | grep not&lt;br /&gt;
It should be these:&lt;br /&gt;
 libdbus, libqt4-core, libqt4-gui, libsigc++ (2.0 version)&lt;br /&gt;
Download them from http://packages.ubuntu.com (32bit versions!)&lt;br /&gt;
 mkdir testlibs&lt;br /&gt;
 dpkg-deb --extract &amp;lt;deb file&amp;gt; testlibs&lt;br /&gt;
Now copy everything from testlibs to /usr/lib32&lt;br /&gt;
 cp -r testlibs/usr/lib/* /usr/lib32&lt;br /&gt;
Freedom lovers are advised to avoid proprietary systems like Skype, however.  Centralized directories and signalling architectures can't be good for your health.&lt;br /&gt;
&lt;br /&gt;
==Bluetooth==&lt;br /&gt;
works for me (TM)&lt;br /&gt;
&lt;br /&gt;
==USB==&lt;br /&gt;
A short time after the system has booted, I get a message on the console of every window indicating IRQ# 23 has fired but noone is expecting it. After this message, the USB ports on the right side fail to work anymore.  It was suggested on a forum that they will work, its just it takes it a long time to discover there is a new device.  I looked in /proc and determined that the bluetooth device is using IRQ23, so it may be involved, but there may be sharing so it could be something else.  Regardless, there are USB bus problems with the T61 and linux.&lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
==Overall==&lt;br /&gt;
I initially had some big problems getting this working, but now its working quite well.  The wifi card worked at startup (uses madwifi) and I am happy because I don't seem to need any proprietary software to run this system.&lt;br /&gt;
&lt;br /&gt;
==Discussion==&lt;br /&gt;
In case you missed it the discussion page (for questions/responses) is right here:  [[Talk: Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T61]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* This guide is listed at the [http://tuxmobil.org/ibm.html TuxMobil Linux laptop and notebook installation guides survey (IBM/Lenovo)].&lt;br /&gt;
* Many other suggestions and references can be found in the following ubuntu forum: http://ubuntuforums.org/showthread.php?t=471563&lt;br /&gt;
&lt;br /&gt;
[[Category:Ubuntu 7.04]]&lt;br /&gt;
[[Category:T61]]&lt;/div&gt;</summary>
		<author><name>Plumpy</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installation_instructions_for_the_ThinkPad_T61&amp;diff=33814</id>
		<title>Installation instructions for the ThinkPad T61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installation_instructions_for_the_ThinkPad_T61&amp;diff=33814"/>
		<updated>2007-10-11T22:44:47Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: gutsy beta =&amp;gt; release candidate&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;See also: General Thinkpad {{T61}} information and installation notes for the previous {{T60}}.&lt;br /&gt;
&lt;br /&gt;
==Distribution-specific instructions==&lt;br /&gt;
&lt;br /&gt;
=== Debian ===&lt;br /&gt;
&lt;br /&gt;
* {{Install|Debian| Lenny|T61}}&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;
&lt;br /&gt;
=== Ubuntu ===&lt;br /&gt;
&lt;br /&gt;
* {{Install|Ubuntu| 7.04 (Feisty Fawn)| T61}}&lt;br /&gt;
* {{Install|Ubuntu| 7.10 (Gutsy Gibbon) Release Candidate| T61}}&lt;br /&gt;
&lt;br /&gt;
=== Fedora ===&lt;br /&gt;
&lt;br /&gt;
* [http://carrot.hep.upenn.edu/wiki/doku.php?id=thinkpad:start Installing Fedora 7 x86_64] on a Thinkpad {{T61}} 15.4&amp;quot; widescreen.&lt;br /&gt;
* {{Install|Fedora| 7|T61}}, including Xen.&lt;br /&gt;
* Useful forum post on [http://www.fedoraforum.org/forum/showthread.php?t=159516 Fedora 7 x86_64] installation. - Updated 7.8.2007 to include suspend&lt;br /&gt;
* [http://lambda.uta.edu/T61/ Fedora Core 7 on a Lenovo ThinkPad T61]&lt;br /&gt;
&lt;br /&gt;
=== openSUSE / SUSE LINUX ===&lt;br /&gt;
* [[Installing Novell SLED 10sp1 on a Thinkpad T61]]&lt;br /&gt;
* [[Installing openSUSE 10.3 Beta 2 on an Thinkpad T61]]&lt;br /&gt;
* [[Installing openSUSE 10.3 Beta 1 on an IBM ThinkPad T61]]&lt;br /&gt;
* [[Installing openSUSE 10.2 on an IBM ThinkPad T61]] - max X resolution in default install is 1024x768&lt;br /&gt;
* [[Installing openSUSE 10.3 GM on a ThinkPad T61]]&lt;br /&gt;
&lt;br /&gt;
=== Gentoo ===&lt;br /&gt;
* Useful forum post on [http://forums.gentoo.org/viewtopic-t-567773-highlight-.html installation of Gentoo].&lt;br /&gt;
* Gentoo-wiki's [http://gentoo-wiki.com/HARDWARE_Lenovo_Thinkpad_T61 Lenovo Thinkpad T61 hardware page].&lt;/div&gt;</summary>
		<author><name>Plumpy</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Talk:Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_T61&amp;diff=33812</id>
		<title>Talk: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=Talk:Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_T61&amp;diff=33812"/>
		<updated>2007-10-11T22:42:41Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: Talk:Installing Ubuntu 7.10 (Gutsy Gibbon) Beta on a ThinkPad T61 moved to Talk:Installing Ubuntu 7.10 (Gutsy Gibbon) Release Candidate on a ThinkPad T61&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Renamed the page==&lt;br /&gt;
&lt;br /&gt;
I renamed the page since we are now at &amp;quot;Beta&amp;quot; and not Tribe.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==New Nvidia Driver released==&lt;br /&gt;
&lt;br /&gt;
http://www.nvidia.com/object/linux_display_ia32_100.14.19.html&lt;br /&gt;
&lt;br /&gt;
Time to test, supposedly it stabilizes compiz.  When I get home tonight I will write up install instructions and what it fixes if someone doesn't beat me to it.&lt;br /&gt;
&lt;br /&gt;
: The new NVIDIA driver doesn't fix the compiz+3d accel bug, causing X to crash, at least not on my system.  I have the NVIDIA Quadro FX570M. I've removed compiz from my system since I value a buggy NVIDIA driver more than cheesy desktop effects.  [[User:Rybu|Rybu]]&lt;br /&gt;
&lt;br /&gt;
== Core 2 Duo running at 800 mHz? ==&lt;br /&gt;
The applications Sysinfo and PowerTOP both say that my CPU is running at 800 MHz. When I first open Sysinfo, it says a number around 2 GHz but it then drops to 800 MHz. Sysinfo says something about laptop CPU frequency changing (being &amp;quot;dynamic&amp;quot;), but it remains static at 800 MHz. [[User:SteveSims|SteveSims]] 00:51, 13 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is normal. This is the &amp;quot;frequency scaling&amp;quot; feature of the laptop. Whenever the processors aren't being used they drop down to 800MHz to conserve power. All you have to do is run some CPU-intensive task and you'll see them jump up to 2GHz. There's a little applet that you can add to the top panel called &amp;quot;CPU Frequency Scaling Monitor&amp;quot; that will let you watch the processor speed up and down in real time: Right-click on the top panel bar and select &amp;quot;Add to Panel&amp;quot; to find it; it's under &amp;quot;System and Hardware&amp;quot; --[[User:Mike Richards|Mike Richards]] 06:31, 13 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Desktop_Applet crash on login after update (2007-09-16) with x86 and AMD64 versions (Fixed in daily build 20070918, reappears in 20070919.1)==&lt;br /&gt;
I found out that my Thinkpad T61 is a 64-bit machine so I installed the 64-bit version of Ubuntu 7.10 Tribe 5. I tried updating the machine, which worked fine until it had to configure and install my updates. With about 12 minutes remaining it hangs up and the terminal within the Update Manager says that some components must be restarted (and the update hangs) so I restart my computer. When I log in, I get an error message that says something about a Deskbar_Applet not working, and it asks me if I want to delete it. Regardless of my selection, I can no longer update the machine nor run Applications --&amp;gt; Add/Remove. I thought it must be a difference between AMD64 and Intel's x86-64 near-clone, so I re-installed the 32-bit version. When I updated, the same thing happened after I updated it. I'm guessing this is a bug withing the [http://en.wikipedia.org/wiki/GUI GUI] or the package manager.&lt;br /&gt;
&lt;br /&gt;
However, I can load Firefox from my panel just fine. [[User:SteveSims|SteveSims]] 05:01, 17 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I had a similar problem.  I found if I just avoided updating the system until after a full reboot, things were fine. [[User:Rybu|Rybu]]&lt;br /&gt;
&lt;br /&gt;
::The most recent update (9-18-2007) solves this problem.&lt;br /&gt;
&lt;br /&gt;
:::The problem appears again in 20070919.1, at least the AMD64 version (I haven't tested the x86-32 version). [[User:SteveSims|SteveSims]] 21:49, 19 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::And it still exists as of September 20th. [[User:SteveSims|SteveSims]] 04:53, 21 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Touchpad issues==&lt;br /&gt;
After updating on September 18th from the original x86 Tribe 5, tapping the touchpad hard no longer clicks, and the right edge no longer scrolls. [[User:SteveSims|SteveSims]] 01:59, 19 September 2007 (UTC)&lt;br /&gt;
:Go to System -&amp;gt; Preferences -&amp;gt; Mouse. In the Touchpad tab you can activate tap to click and vertical scrolling. --[[User:Aerials|aerials]] 13:05, 21 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Daily build 20070918 AMD64 won't install==&lt;br /&gt;
Double-clicking on the Install icon in the LiveCD does nothing. No window loads, I can't install it from the LiveCD. [[User:SteveSims|SteveSims]] 01:59, 19 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Volume/Sound Buttons==&lt;br /&gt;
&lt;br /&gt;
In Kubuntu 7.10 beta work mute button but anything display on screen/desktop. When I press the  volume up button, on the screen display a window and always write 11%, and the volume not hight (if mute is on then mute disabled). When I press the volume down button display 0% but the volume not down.&lt;br /&gt;
&lt;br /&gt;
When the mute is enabled the kmix not display mute. [[User:Fitopaldi|Fitopaldi]]&lt;br /&gt;
&lt;br /&gt;
If add this lines to ''~/.kde/share/config/khotkeysrc'' the volume up button and volume down button works perfectly with kmix with DCOP.&lt;br /&gt;
&lt;br /&gt;
 [Data_4]&lt;br /&gt;
 Comment=&lt;br /&gt;
 DataCount=2&lt;br /&gt;
 Enabled=true&lt;br /&gt;
 Name=Thinkpad&lt;br /&gt;
 SystemGroup=0&lt;br /&gt;
 Type=ACTION_DATA_GROUP&lt;br /&gt;
 &lt;br /&gt;
 [Data_4Conditions]&lt;br /&gt;
 Comment=&lt;br /&gt;
 ConditionsCount=0&lt;br /&gt;
 &lt;br /&gt;
 [Data_4_1]&lt;br /&gt;
 Comment=&lt;br /&gt;
 Enabled=true&lt;br /&gt;
 Name=Volume up&lt;br /&gt;
 Type=DCOP_SHORTCUT_ACTION_DATA&lt;br /&gt;
 &lt;br /&gt;
 [Data_4_1Actions]&lt;br /&gt;
 ActionsCount=1&lt;br /&gt;
 &lt;br /&gt;
 [Data_4_1Actions0]&lt;br /&gt;
 Arguments=1&lt;br /&gt;
 Call=increaseVolume&lt;br /&gt;
 RemoteApp=kmix&lt;br /&gt;
 RemoteObj=Mixer0&lt;br /&gt;
 Type=DCOP&lt;br /&gt;
 &lt;br /&gt;
 [Data_4_1Conditions]&lt;br /&gt;
 Comment=&lt;br /&gt;
 ConditionsCount=0&lt;br /&gt;
 &lt;br /&gt;
 [Data_4_1Triggers]&lt;br /&gt;
 Comment=Simple_action&lt;br /&gt;
 TriggersCount=1&lt;br /&gt;
 &lt;br /&gt;
 [Data_4_1Triggers0]&lt;br /&gt;
 Key=XF86AudioRaiseVolume&lt;br /&gt;
 Type=SHORTCUT&lt;br /&gt;
 &lt;br /&gt;
 [Data_4_2]&lt;br /&gt;
 Comment=&lt;br /&gt;
 Enabled=true&lt;br /&gt;
 Name=Volume down&lt;br /&gt;
 Type=DCOP_SHORTCUT_ACTION_DATA&lt;br /&gt;
 &lt;br /&gt;
 [Data_4_2Actions]&lt;br /&gt;
 ActionsCount=1&lt;br /&gt;
 &lt;br /&gt;
 [Data_4_2Actions0]&lt;br /&gt;
 Arguments=1&lt;br /&gt;
 Call=decreaseVolume&lt;br /&gt;
 RemoteApp=kmix&lt;br /&gt;
 RemoteObj=Mixer0&lt;br /&gt;
 Type=DCOP&lt;br /&gt;
 &lt;br /&gt;
 [Data_4_2Conditions]&lt;br /&gt;
 Comment=&lt;br /&gt;
 ConditionsCount=0&lt;br /&gt;
 &lt;br /&gt;
 [Data_4_2Triggers]&lt;br /&gt;
 Comment=Simple_action&lt;br /&gt;
 TriggersCount=1&lt;br /&gt;
 &lt;br /&gt;
 [Data_4_2Triggers0]&lt;br /&gt;
 Key=XF86AudioLowerVolume&lt;br /&gt;
 Type=SHORTCUT&lt;br /&gt;
&lt;br /&gt;
But this is a temporal solution. ;) With this solution not work the volume info screen. [[User:Fitopaldi|Fitopaldi]]&lt;br /&gt;
&lt;br /&gt;
==Brightness buttons==&lt;br /&gt;
&lt;br /&gt;
The brightness buttons used to work on my system.  But now that I have 2 displays, they don't work anymore.  When I first installed Ubuntu 7.10 the brightness buttons did not work but I found some tips on-line to enable them... unfortunately I don't remember what those tips were... silly me... I'll dig up the info and put it into the wiki, soon. [[User:Rybu|Rybu]]&lt;br /&gt;
&lt;br /&gt;
In Kubuntu Gutsy don't work anymore. When I first installed Kubuntu 7.10 (tribe 5) yes work on console screen, but later the first update not work this. (NVIDIA GPU) [[User:Fitopaldi|Fitopaldi]]&lt;br /&gt;
&lt;br /&gt;
==Compiling existing information==&lt;br /&gt;
&lt;br /&gt;
This [[http://gentoo-wiki.com/HARDWARE_Lenovo_Thinkpad_T61]] link has some useful information that is worthwhile compiling into the wiki here.  [[User:Rybu|Rybu]]&lt;br /&gt;
&lt;br /&gt;
==Desktop effects don't consistenly work==&lt;br /&gt;
I installed new themes and updated today and suddenly the new desktop effects that were added to 7.10 don't work.&lt;br /&gt;
&lt;br /&gt;
However, Deskbar_Applet doesn't crash with the update, even though it does with today's most current LiveCD. [[User:SteveSims|SteveSims]] 06:37, 21 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==NetworkManger Intermittently Fails To Start, No Networking When It Fails==&lt;br /&gt;
After the most recent Kernel patch under Gutsy, NetworkManager doesn't always manage to run when I boot, and when it fails I have no networking.  If I try init.d/networking restart, it fails with 'unknown device' for all devices.  Looking through the logs, my best guess is ath0 isn't ready when NetworkManager starts, so it starts cycling through other devices until it crashes.  Does anyone have any ideas?  It seems to only work about 1-2 boots out of 10.&lt;br /&gt;
&lt;br /&gt;
==I installed libdvdcss2, but DVD playback still doesn't work==&lt;br /&gt;
I have all the GStreamer plugins. When I insert a DVD movie, Movie Player loads and I hear sound but there's no video. If I try to open a video from a location, I get this dialog box:&amp;lt;br&amp;gt;&lt;br /&gt;
[[Image:totem no plugins.png|300px]]&lt;br /&gt;
&lt;br /&gt;
:I always like the idea of using GStreamer instead of Xine, but the fact is, I've never really gotten DVDs to work very well without installing totem-xine.  Maybe you don't want to do that, but if you haven't tried it, consider installing totem-xine?  --[[User:Plumpy|Plumpy]] 23:32, 25 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Here's what I get when I install totem-xine from Synaptic:&lt;br /&gt;
&lt;br /&gt;
:::[[Image:Totem-xine_no_DVD_playback.png]]&amp;lt;br&amp;gt;[[User:SteveSims|SteveSims]] 00:32, 26 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::::I decided to install some more xine plugins but now Totem closes immediately after opening if I insert a DVD. Here's a log of my xine package installations:&lt;br /&gt;
&amp;lt;pre&amp;gt;Commit Log for Tue Sep 25 17:25:49 2007&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Installed the following packages:&lt;br /&gt;
libxine1-console (1.1.7-1ubuntu1)&lt;br /&gt;
libxine1-gnome (1.1.7-1ubuntu1)&lt;br /&gt;
libxine1-plugins (1.1.7-1ubuntu1)&lt;br /&gt;
&lt;br /&gt;
Commit Log for Tue Sep 25 17:23:33 2007&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Installed the following packages:&lt;br /&gt;
libpostproc1d (3:0.cvs20070307-5ubuntu4)&lt;br /&gt;
libxine1-ffmpeg (1.1.7-1ubuntu1)&lt;br /&gt;
&lt;br /&gt;
Commit Log for Tue Sep 25 17:14:25 2007&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Removed the following packages:&lt;br /&gt;
totem-gstreamer&lt;br /&gt;
&lt;br /&gt;
Installed the following packages:&lt;br /&gt;
libmodplug0c2 (1:0.7-5.2ubuntu1)&lt;br /&gt;
libpulse0 (0.9.6-1ubuntu2)&lt;br /&gt;
libxcb-shape0 (1.0-3)&lt;br /&gt;
libxcb-shm0 (1.0-3)&lt;br /&gt;
libxcb-xv0 (1.0-3)&lt;br /&gt;
libxcb1 (1.0-3)&lt;br /&gt;
libxine1 (1.1.7-1ubuntu1)&lt;br /&gt;
libxvmc1 (2:1.0.4-2ubuntu1)&lt;br /&gt;
totem-xine (2.20.0-0ubuntu1)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== x86 vs 64bit on core 2 duo ==&lt;br /&gt;
&lt;br /&gt;
What to choose? Why, why not?&lt;br /&gt;
&lt;br /&gt;
: In my case, I've installed the 64bit kernel.  I develop some of my own software which has a fair amount of optimizations with the 64-bit architecture.  [[User:Rybu|Rybu]]&lt;br /&gt;
&lt;br /&gt;
:: 64-bit will run faster. I say install the AMD64 version. Don't let your new, fast 64-bit processor go to waste! [[User:SteveSims|SteveSims]] 06:16, 5 October 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Black screen at boot ==&lt;br /&gt;
&lt;br /&gt;
When try to boot gutsy-desktop-amd64 the screen turns black, even when i use &amp;quot;Safe Graphics&amp;quot; mode. Having a nVIDIA Quadro NVS 140M card&lt;br /&gt;
&lt;br /&gt;
TURNS OUT I JUST NEED PATIENCE... sorry&lt;br /&gt;
&lt;br /&gt;
==Update 2007-10-1 works fine==&lt;br /&gt;
Announcement. [[User:SteveSims|SteveSims]] 05:15, 2 October 2007 (UTC)&lt;/div&gt;</summary>
		<author><name>Plumpy</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Talk:Installing_Ubuntu_7.10_(Gutsy_Gibbon)_Beta_on_a_ThinkPad_T61&amp;diff=33813</id>
		<title>Talk:Installing Ubuntu 7.10 (Gutsy Gibbon) Beta on a ThinkPad T61</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Talk:Installing_Ubuntu_7.10_(Gutsy_Gibbon)_Beta_on_a_ThinkPad_T61&amp;diff=33813"/>
		<updated>2007-10-11T22:42:41Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: Talk:Installing Ubuntu 7.10 (Gutsy Gibbon) Beta on a ThinkPad T61 moved to Talk:Installing Ubuntu 7.10 (Gutsy Gibbon) Release Candidate on a ThinkPad T61&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Talk:Installing Ubuntu 7.10 (Gutsy Gibbon) Release Candidate on a ThinkPad T61]]&lt;/div&gt;</summary>
		<author><name>Plumpy</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_Beta_on_a_ThinkPad_T61&amp;diff=33811</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) Beta 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)_Beta_on_a_ThinkPad_T61&amp;diff=33811"/>
		<updated>2007-10-11T22:42:40Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: Installing Ubuntu 7.10 (Gutsy Gibbon) Beta on a ThinkPad T61 moved to Installing Ubuntu 7.10 (Gutsy Gibbon) Release Candidate on a ThinkPad T61&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Installing Ubuntu 7.10 (Gutsy Gibbon) Release Candidate on a ThinkPad T61]]&lt;/div&gt;</summary>
		<author><name>Plumpy</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=33810</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=33810"/>
		<updated>2007-10-11T22:42:40Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: Installing Ubuntu 7.10 (Gutsy Gibbon) Beta on a ThinkPad T61 moved to Installing Ubuntu 7.10 (Gutsy Gibbon) Release Candidate on a ThinkPad T61&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installation Notes ==&lt;br /&gt;
&lt;br /&gt;
*If booting with the default options gives you a blank screen you should select the &amp;quot;Safe Graphics&amp;quot; menu choice when booting from the live CD.&lt;br /&gt;
&lt;br /&gt;
*If you are doing a text mode install such as PXE/network then your screen will be corrupted during the process, a fix was released on September 28th either use a daily iso or one of the workarounds outlined at: https://bugs.launchpad.net/ubuntu/+source/xresprobe/+bug/127008&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&lt;br /&gt;
&lt;br /&gt;
===Installing Nvidia drivers manually===&lt;br /&gt;
&lt;br /&gt;
{{WARN| Installing the drivers via Synaptic or the Restricted Drivers Manager are the only supported methods of installing the Nvidia driver, the method below (while it works for most people) is not supported}}&lt;br /&gt;
&lt;br /&gt;
Download the drivers from http://www.nvidia.com/object/linux_display_ia32_100.14.19.html and save it to your Desktop.&lt;br /&gt;
Exit to a virtual terminal by pressing [CTRL]+[ALT]+[F2]&lt;br /&gt;
&lt;br /&gt;
Stop the X server:&lt;br /&gt;
&lt;br /&gt;
$ sudo /etc/init.d/gdm stop (stopping the X server)&lt;br /&gt;
&lt;br /&gt;
Remove nvidia-glx-new&lt;br /&gt;
&lt;br /&gt;
$ sudo apt-get remove nvidia-glx-new&lt;br /&gt;
&lt;br /&gt;
Install the drivers:&lt;br /&gt;
&lt;br /&gt;
$ sudo sh NVIDIA-Linux-x86-100.14.19-pkg1.run (depending on the version that will be online)&lt;br /&gt;
&lt;br /&gt;
Follow instructions in the installer, when complete restart the X-Server with:&lt;br /&gt;
&lt;br /&gt;
$ sudo /etc/init.d/gdm restart (restarting the X server)&lt;br /&gt;
&lt;br /&gt;
===Multiple Monitors===&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. &lt;br /&gt;
&lt;br /&gt;
It has been reported that the NVIDIA drivers tend to crash with xinerama enabled.  2 displays with xinerama off has been stable.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Twinview works but a movie will span both the laptop screen and second monitor or projector.  &lt;br /&gt;
Has anyone found a fix for this? &lt;br /&gt;
Does the Ubuntu wiki &amp;lt;https://help.ubuntu.com/community/NvidiaTVOut&amp;gt; work?&lt;br /&gt;
What adjustments are needed for Gutsy and  NVIDIA Quadro NVS 140M&lt;br /&gt;
&lt;br /&gt;
Is it possible to do set up Twinview with movies that don't span screens in the Applications-&amp;gt;System Tools-&amp;gt;Nvidia Settings?&lt;br /&gt;
&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.  Following the instructions on [http://www.thinkwiki.org/wiki/Intel_Graphics_Media_Accelerator_X3100 this page] to extend your desktop to the second monitor does *not* work; it results in the crash described [http://lists.freedesktop.org/archives/xorg/2007-April/023326.html here].  According to [http://lists.freedesktop.org/archives/xorg/2007-April/023335.html this post] and [https://bugs.freedesktop.org/show_bug.cgi?id=10706 this bug report], the problem is a new Xinerama implementation and an old config file.  &lt;br /&gt;
&lt;br /&gt;
To extend your desktop to the second monitor, you'll want to do what [http://wiki.debian.org/XStrikeForce/ReleaseNotes this page] suggests (under &amp;quot;Dual-Head config breakage with xserver-xorg-video-intel&amp;quot;).  &lt;br /&gt;
&lt;br /&gt;
Below 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;
{{Fixme|If someone could include an example of the change described above it would be greatly appreciated}}&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), the default fonts are too big ([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 do not work out of the box, but they should work once you apply all of the system updates.&lt;br /&gt;
&lt;br /&gt;
However, there now appears to be a bug where the brightness controls stop working after you resume from a suspend.&lt;br /&gt;
&lt;br /&gt;
Until the brightness bugs are finally worked out, you can install &amp;quot;xbacklight&amp;quot; (Applications -&amp;gt; Accessories -&amp;gt; Terminal, type &amp;quot;sudo apt-get install xbacklight&amp;quot; without the quotation marks and hit enter), which allows you to set the brightness from the command line and provides a greater range of brightness values.&lt;br /&gt;
&lt;br /&gt;
To set brightness, go back to the terminal and type &amp;quot;xbacklight =VALUE&amp;quot; where VALUE is a number from 0 to 100 for how bright you want your display to be.&lt;br /&gt;
&lt;br /&gt;
=====Creating brightness shortcuts=====&lt;br /&gt;
If you don't want to use the terminal you can set up shortcuts to pre-defined brightness levels:&lt;br /&gt;
&lt;br /&gt;
1) Right-click on the desktop and select Create Launcher...&lt;br /&gt;
&lt;br /&gt;
2) Make it look like this:&amp;lt;br&amp;gt;&lt;br /&gt;
[[Image:XBacklight launcher 50.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
The 50 means that the backlight will be at 50% brightness. If you want your shortcut to set the brightness to 100% then simply replace 50 with 100 when you create your launcher (Shortcuts in Windows are analogous to Launchers in Ubuntu). Many people use at least two brightness levels (for example, 100% when on AC power, 50% when on battery power) so it's a good idea to make a launcher for each commonly used brightness level. I also suggest adding them to the upper panel (Linux for menu bar) so that they're easily accessible. If you want, you can use your own custom icons by right-clicking the launcher, selecting Properties, and then clicking on the picture in the Properties window and browsing for your own.&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&lt;br /&gt;
&lt;br /&gt;
switching back to X (ctrl+alt+7) may freeze your computer with a black screen.&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;
Microphone may not work with applications (like sound recorder and skype) even though sound can be heard through the speakers or headphones.  If you have success in using the built in microphone please update this section.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
It worked for me after i followed the instructions in this thread for ALSA&lt;br /&gt;
http://ubuntuforums.org/showthread.php?p=2635174#post2635174&lt;br /&gt;
&lt;br /&gt;
I had to tick the following tracks to make my mic work in Sound Recorder&lt;br /&gt;
PCM, Microphone, Capture, Capture1, Input Source, Input Source, Internal Mic, Speaker.&lt;br /&gt;
&lt;br /&gt;
For those that find the above instructions vague:&lt;br /&gt;
&lt;br /&gt;
The whole 'Volume Control Center' could be better labelled but here is what i believe to be true:  &lt;br /&gt;
the microphone will work but only through the OSS mixer.  the ALSA mixer is what causes the listed problem (not working with applications like skype) but the sound quality of alsa mixer is far better than the OSS mixer and it would be much more convenient to control so it would be hugely beneficial to get it working. Nonetheless here are more detailed instructions for getting sound working.&lt;br /&gt;
&lt;br /&gt;
In the Playback tab you should have PCM, which is the only important one.  If you have anything else there you should mute them.&lt;br /&gt;
&lt;br /&gt;
In the 'recording' tab should be 'Capture' and 'Capture 1'(if they aren't you have to check them in Edit--&amp;gt;Preferences) 'Capture' controls the volume for the ALSA mic input and 'Capture 1' controls the volume for the OSS mic input.  Mute 'Capture'  and increase the volume of 'Capture 1'&lt;br /&gt;
&lt;br /&gt;
The 'switches' tab should be as you set it up in the audio section of this wiki. headphones [check] and speakers [check].&lt;br /&gt;
&lt;br /&gt;
The options tab (which i haven't quite figured out) should have a list of two 'Input Sources' I have mine set to 'Internal Mic' on the top and 'Mic' on the bottom.  i don't know if that is correct but it is working for me.&lt;br /&gt;
&lt;br /&gt;
Now go to File--&amp;gt;Change Device--&amp;gt; Analog Devices (OSS Mixer)&lt;br /&gt;
You should see a 'Playback' tab with 'Microphone', 'PCM-2' and 'In-gain'.&lt;br /&gt;
If you do not see these then open Edit--&amp;gt;Preferences and select them.&lt;br /&gt;
Place your microphone volume at your desired level (mine is at about 7/8ths) and mute it when you are not using it, otherwise you get the crackle.  The 'PCM-2' seems to only go fully up or fully down, i leave it fully up. I haven't figured out what effect the 'In-gain' has yet. (you'll be the first to know when i do)&lt;br /&gt;
&lt;br /&gt;
This should give you the ability to record sound or skype but it is tedious as you will have to mute and unmute the microphone in the Analog Devices OSS area.  Maybe there is a way to simplfy this method but i haven't found it.  Hopefully soon recording with the ALSA mixer will work.&lt;br /&gt;
&lt;br /&gt;
===Sound Cracking===&lt;br /&gt;
The sound may be cracking if ALSA is used, 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;
The above does not appear to work for everyone. &lt;br /&gt;
&lt;br /&gt;
Another thing to check is to see if this issue is only occurring for Rhythmbox (which is where i noticed this issue). If this is the case, go to Edit &amp;gt; Preferences &amp;gt; Playback &amp;gt; and Check &amp;quot;Use Crossfading Backend&amp;quot;&lt;br /&gt;
Restart Rhythmbox and you should have better audio quality.&lt;br /&gt;
&lt;br /&gt;
===Hissing===&lt;br /&gt;
Once sound started working, it produced a lot of hissing during playback, and even when idle.  Here's how I fixed it:&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;Headphon&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;
&lt;br /&gt;
&lt;br /&gt;
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;
== 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;
'''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;
http://www.thinkwiki.org/index.php?title=Installing_Ubuntu_7.10_%28Gutsy_Gibbon%29_Tribe_5_on_a_ThinkPad_T61&amp;amp;action=edit&amp;amp;section=8&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 - https://bugs.launchpad.net/ubuntu/+bug/136287&lt;br /&gt;
* USB ports can end up temporarily disabled - https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/126369&lt;br /&gt;
* Wireless activity LED&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>Plumpy</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Talk:Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_T61&amp;diff=33385</id>
		<title>Talk: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=Talk:Installing_Ubuntu_7.10_(Gutsy_Gibbon)_on_a_ThinkPad_T61&amp;diff=33385"/>
		<updated>2007-09-25T23:32:34Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==New Nvidia Driver released==&lt;br /&gt;
&lt;br /&gt;
http://www.nvidia.com/object/linux_display_ia32_100.14.19.html&lt;br /&gt;
&lt;br /&gt;
Time to test, supposedly it stabilizes compiz.  When I get home tonight I will write up install instructions and what it fixes if someone doesn't beat me to it.&lt;br /&gt;
&lt;br /&gt;
: The new NVIDIA driver doesn't fix the compiz+3d accel bug, causing X to crash, at least not on my system.  I have the NVIDIA Quadro FX570M. I've removed compiz from my system since I value a buggy NVIDIA driver more than cheesy desktop effects.  [[User:Rybu|Rybu]]&lt;br /&gt;
&lt;br /&gt;
== Core 2 Duo running at 800 mHz? ==&lt;br /&gt;
The applications Sysinfo and PowerTOP both say that my CPU is running at 800 MHz. When I first open Sysinfo, it says a number around 2 GHz but it then drops to 800 MHz. Sysinfo says something about laptop CPU frequency changing (being &amp;quot;dynamic&amp;quot;), but it remains static at 800 MHz. [[User:SteveSims|SteveSims]] 00:51, 13 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is normal. This is the &amp;quot;frequency scaling&amp;quot; feature of the laptop. Whenever the processors aren't being used they drop down to 800MHz to conserve power. All you have to do is run some CPU-intensive task and you'll see them jump up to 2GHz. There's a little applet that you can add to the top panel called &amp;quot;CPU Frequency Scaling Monitor&amp;quot; that will let you watch the processor speed up and down in real time: Right-click on the top panel bar and select &amp;quot;Add to Panel&amp;quot; to find it; it's under &amp;quot;System and Hardware&amp;quot; --[[User:Mike Richards|Mike Richards]] 06:31, 13 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Desktop_Applet crash on login after update (2007-09-16) with x86 and AMD64 versions (Fixed in daily build 20070918, reappears in 20070919.1)==&lt;br /&gt;
I found out that my Thinkpad T61 is a 64-bit machine so I installed the 64-bit version of Ubuntu 7.10 Tribe 5. I tried updating the machine, which worked fine until it had to configure and install my updates. With about 12 minutes remaining it hangs up and the terminal within the Update Manager says that some components must be restarted (and the update hangs) so I restart my computer. When I log in, I get an error message that says something about a Deskbar_Applet not working, and it asks me if I want to delete it. Regardless of my selection, I can no longer update the machine nor run Applications --&amp;gt; Add/Remove. I thought it must be a difference between AMD64 and Intel's x86-64 near-clone, so I re-installed the 32-bit version. When I updated, the same thing happened after I updated it. I'm guessing this is a bug withing the [http://en.wikipedia.org/wiki/GUI GUI] or the package manager.&lt;br /&gt;
&lt;br /&gt;
However, I can load Firefox from my panel just fine. [[User:SteveSims|SteveSims]] 05:01, 17 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I had a similar problem.  I found if I just avoided updating the system until after a full reboot, things were fine. [[User:Rybu|Rybu]]&lt;br /&gt;
&lt;br /&gt;
::The most recent update (9-18-2007) solves this problem.&lt;br /&gt;
&lt;br /&gt;
:::The problem appears again in 20070919.1, at least the AMD64 version (I haven't tested the x86-32 version). [[User:SteveSims|SteveSims]] 21:49, 19 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::And it still exists as of September 20th. [[User:SteveSims|SteveSims]] 04:53, 21 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Touchpad issues==&lt;br /&gt;
After updating on September 18th from the original x86 Tribe 5, tapping the touchpad hard no longer clicks, and the right edge no longer scrolls. [[User:SteveSims|SteveSims]] 01:59, 19 September 2007 (UTC)&lt;br /&gt;
:Go to System -&amp;gt; Preferences -&amp;gt; Mouse. In the Touchpad tab you can activate tap to click and vertical scrolling. --[[User:Aerials|aerials]] 13:05, 21 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Daily build 20070918 AMD64 won't install==&lt;br /&gt;
Double-clicking on the Install icon in the LiveCD does nothing. No window loads, I can't install it from the LiveCD. [[User:SteveSims|SteveSims]] 01:59, 19 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Brightness buttons==&lt;br /&gt;
&lt;br /&gt;
The brightness buttons used to work on my system.  But now that I have 2 displays, they don't work anymore.  When I first installed Ubuntu 7.10 the brightness buttons did not work but I found some tips on-line to enable them... unfortunately I don't remember what those tips were... silly me... I'll dig up the info and put it into the wiki, soon. [[User:Rybu|Rybu]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Compiling existing information==&lt;br /&gt;
&lt;br /&gt;
This [[http://gentoo-wiki.com/HARDWARE_Lenovo_Thinkpad_T61]] link has some useful information that is worthwhile compiling into the wiki here.  [[User:Rybu|Rybu]]&lt;br /&gt;
&lt;br /&gt;
==Desktop effects don't consistenly work==&lt;br /&gt;
I installed new themes and updated today and suddenly the new desktop effects that were added to 7.10 don't work.&lt;br /&gt;
&lt;br /&gt;
However, Deskbar_Applet doesn't crash with the update, even though it does with today's most current LiveCD. [[User:SteveSims|SteveSims]] 06:37, 21 September 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==NetworkManger Intermittently Fails To Start, No Networking When It Fails==&lt;br /&gt;
After the most recent Kernel patch under Gutsy, NetworkManager doesn't always manage to run when I boot, and when it fails I have no networking.  If I try init.d/networking restart, it fails with 'unknown device' for all devices.  Looking through the logs, my best guess is ath0 isn't ready when NetworkManager starts, so it starts cycling through other devices until it crashes.  Does anyone have any ideas?  It seems to only work about 1-2 boots out of 10.&lt;br /&gt;
&lt;br /&gt;
==I installed libdvdcss2, but DVD playback still doesn't work==&lt;br /&gt;
I have all the GStreamer plugins. When I insert a DVD movie, Movie Player loads and I hear sound but there's no video. If I try to open a video from a location, I get this dialog box:&amp;lt;br&amp;gt;&lt;br /&gt;
[[Image:totem no plugins.png]]&lt;br /&gt;
&lt;br /&gt;
I always like the idea of using GStreamer instead of Xine, but the fact is, I've never really gotten DVDs to work very well without installing totem-xine.  Maybe you don't want to do that, but if you haven't tried it, consider installing totem-xine?  --[[User:Plumpy|Plumpy]] 23:32, 25 September 2007 (UTC)&lt;/div&gt;</summary>
		<author><name>Plumpy</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=32982</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=32982"/>
		<updated>2007-09-07T20:02:04Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installation Notes ==&lt;br /&gt;
&lt;br /&gt;
If booting with the default options gives you a blank screen you should select the &amp;quot;Safe Graphics&amp;quot; menu choice when booting from the live CD.&lt;br /&gt;
&lt;br /&gt;
== Video ==&lt;br /&gt;
&lt;br /&gt;
'''Intel''' video works out of the box, but '''Nvidia''' accelerated 3D support is not installed by default.  To install Nvidia 3D support click System-&amp;gt;Administration-&amp;gt;Restricted Drivers Manager&lt;br /&gt;
&lt;br /&gt;
With Nvidia, you may experience a bug where the X server crashes or fails to start. Numerous solutions are provided (with mixed results) in the [https://bugs.launchpad.net/bugs/98641 Launchpad bug report] as well as  [http://ubuntuforums.org/showthread.php?t=533557&amp;amp;highlight=Thinkpad+T61 this thread] on the Ubuntu forums.&lt;br /&gt;
&lt;br /&gt;
Adding a second monitor may break your xorg.conf if you use the graphical interface.  I haven't tried editing the xorg file manually to see if one can be added.&lt;br /&gt;
&lt;br /&gt;
== Audio ==&lt;br /&gt;
&lt;br /&gt;
Audio does not work out of the box, but will work once you apply all the updates.&lt;br /&gt;
&lt;br /&gt;
Microphone may not work with applications (like sound recorder and skype) even though sound can be heard through the speakers or headphones.&lt;br /&gt;
&lt;br /&gt;
===Enabling Sound and Fixing the Volume 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. 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;
== 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;
&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].&lt;br /&gt;
&lt;br /&gt;
Debian packages for i386 can be found at: http://www.rubixlinux.org/debian/thinkfinger/&lt;br /&gt;
&lt;br /&gt;
After the package is installed add the following two lines to /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;
Note: Instructions in French available at http://doc.ubuntu-fr.org/materiel/thinkfinger&lt;br /&gt;
&lt;br /&gt;
* Recording fingerprints works&lt;br /&gt;
* Login works&lt;br /&gt;
* gksudo crashes : for example it is necessary to run synaptic twice and enter your password upon failure.&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;
&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;
&lt;br /&gt;
== Hibernate/Suspend ==&lt;br /&gt;
&lt;br /&gt;
=== Blank Screen Fix ===&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;
=== Intel 3495ABG Wireless ===&lt;br /&gt;
&lt;br /&gt;
Sometimes after a resume, the wireless card won't come back up.  When the [[http://people.freedesktop.org/~hughsient/quirk/quirk-suspend-debug.html quirk checker script]] is run, it says:&lt;br /&gt;
&lt;br /&gt;
  CRITICAL ERROR: Use the mac80211 iwl3945 driver instead. ipw3945d is closed source sometimes hangs on resume.&lt;br /&gt;
&lt;br /&gt;
The iwl3945 driver generally only works for about 30 minutes to an hour, though, so it's not a suitable replacement.&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), the default fonts are too big. 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;
== Brightness ==&lt;br /&gt;
&lt;br /&gt;
The brightness controls (Fn-Home, Fn-End) don't seem to work reliably (if at all), and the brightness dialog box occasionally will pop up at random or &amp;quot;stick&amp;quot; on the screen, often causing the screen to flicker. Messing around with the brightness controls (Fn-Home, Fn-End) will usually make the dialog to go away and the flickering stop.  [https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/123854 Launchpad bug report].&lt;br /&gt;
&lt;br /&gt;
With the Nvidia card to increase/decrease brightness hit Ctrl+Alt+F1 to drop to a virtual console, change the brightness and hit Ctrl-Alt-F7 to return to Gnome.  This can be done without affecting running applications.&lt;br /&gt;
&lt;br /&gt;
If you have an Intel card you can install the Gnome Brightness Applet to give you an easy way to change the brightness from within Gnome:&lt;br /&gt;
&lt;br /&gt;
# Right-click on the top menu bar.&lt;br /&gt;
# Select &amp;quot;Add to Panel&amp;quot;.&lt;br /&gt;
# Scroll down to the &amp;quot;System &amp;amp; Hardware&amp;quot; section.&lt;br /&gt;
# Highlight the &amp;quot;Brightness Applet&amp;quot; and click the &amp;quot;Add&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
Using this applet often results in the &amp;quot;flickering screen syndrome&amp;quot; described above, but jiggling the brightness slider a little will cause this flickering to stop.&lt;br /&gt;
&lt;br /&gt;
As an alternative, install the program xbacklight which requires using the command line, but doesn't suffer from issues with flickering screens.  For example to set 50% brightness:&lt;br /&gt;
&lt;br /&gt;
  xbacklight =50&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 work&lt;br /&gt;
&lt;br /&gt;
'''Network Card'''&lt;br /&gt;
&lt;br /&gt;
'''Firewire'''&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;
'''Headphones/Microphone jacks'''&lt;br /&gt;
&lt;br /&gt;
'''Bluetooth:''' The bluetooth module is detected but I have no bluetooth device to check with.&lt;br /&gt;
&lt;br /&gt;
'''Keyboard Shortcuts:'''&lt;br /&gt;
&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&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 xrandr for Intel cards or using the Nvidia Control Panel with the Nvidia card.&lt;br /&gt;
&lt;br /&gt;
{{HELP|Does the new displayconfig-gtk tool work for switching video with the Intel card?}}&lt;br /&gt;
&lt;br /&gt;
* Network Pass-through: Works&lt;br /&gt;
&lt;br /&gt;
* Modem Pass-through: Works&lt;br /&gt;
&lt;br /&gt;
* USB ports: Connected upon docking&lt;br /&gt;
&lt;br /&gt;
* PS/2 Ports: Untested, may require a reboot.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{NOTE|Please see the Talk page for discussions on this category, if it is needed and alternatives}} &lt;br /&gt;
&lt;br /&gt;
[[Category: T61]] [[Category: Ubuntu 7.10]]&lt;/div&gt;</summary>
		<author><name>Plumpy</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=32970</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=32970"/>
		<updated>2007-09-07T08:36:21Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installation Notes ==&lt;br /&gt;
&lt;br /&gt;
If booting with the default options gives you a blank screen you should select the &amp;quot;Safe Graphics&amp;quot; menu choice when booting from the live CD.&lt;br /&gt;
&lt;br /&gt;
== Video ==&lt;br /&gt;
&lt;br /&gt;
'''Intel''' video works out of the box, but '''Nvidia''' accelerated 3D support is not installed by default.  To install Nvidia 3D support click System-&amp;gt;Administration-&amp;gt;Restricted Drivers Manager&lt;br /&gt;
&lt;br /&gt;
With Nvidia, you may experience a bug where the X server crashes or fails to start. Numerous solutions are provided (with mixed results) in the [https://bugs.launchpad.net/bugs/98641 Launchpad bug report] as well as  [http://ubuntuforums.org/showthread.php?t=533557&amp;amp;highlight=Thinkpad+T61 this thread] on the Ubuntu forums.&lt;br /&gt;
&lt;br /&gt;
Adding a second monitor may break your xorg.conf if you use the graphical interface.  I haven't tried editing the xorg file manually to see if one can be added.&lt;br /&gt;
&lt;br /&gt;
== Audio ==&lt;br /&gt;
&lt;br /&gt;
Audio does not work out of the box, but will work once you apply all the updates.&lt;br /&gt;
&lt;br /&gt;
Microphone may not work with applications (like sound recorder and skype) even though sound can be heard through the speakers or headphones.&lt;br /&gt;
&lt;br /&gt;
===Enabling Sound and Fixing the Volume 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. 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;
== 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;
&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].&lt;br /&gt;
&lt;br /&gt;
Debian packages for i386 can be found at: http://www.rubixlinux.org/debian/thinkfinger/&lt;br /&gt;
&lt;br /&gt;
After the package is installed add the following two lines to /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;
Note: Instructions in French available at http://doc.ubuntu-fr.org/materiel/thinkfinger&lt;br /&gt;
&lt;br /&gt;
* Recording fingerprints works&lt;br /&gt;
* Login works&lt;br /&gt;
* gksudo crashes : for example it is necessary to run synaptic twice and enter your password upon failure.&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;
&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;
&lt;br /&gt;
== Hibernate/Suspend ==&lt;br /&gt;
&lt;br /&gt;
=== Blank Screen Fix ===&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;
=== Intel 3495ABG Wireless ===&lt;br /&gt;
&lt;br /&gt;
Sometimes after a resume, the wireless card won't come back up.  When the [[http://people.freedesktop.org/~hughsient/quirk/quirk-suspend-debug.html quirk checker script]] is run, it says:&lt;br /&gt;
&lt;br /&gt;
  CRITICAL ERROR: Use the mac80211 iwl3945 driver instead. ipw3945d is closed source sometimes hangs on resume.&lt;br /&gt;
&lt;br /&gt;
There are mixed reviews of that driver.  Maybe someone will post about their experiences with the driver to the talk page?  To enable the iwl3945 driver driver, you first have to disable the default driver.  Create a file named {{path|/etc/modprobe.d/blacklist-ipw3945}} and add the single line&lt;br /&gt;
&lt;br /&gt;
  blacklist ipw3945&lt;br /&gt;
&lt;br /&gt;
Then tell Ubuntu to load the alternate driver by editing {{path|/etc/modules}} and adding the single line:&lt;br /&gt;
&lt;br /&gt;
  iwl3945&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), the default fonts are too big. 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;
== Brightness ==&lt;br /&gt;
&lt;br /&gt;
The brightness controls (Fn-Home, Fn-End) don't seem to work reliably (if at all), and the brightness dialog box occasionally will pop up at random or &amp;quot;stick&amp;quot; on the screen, often causing the screen to flicker. Messing around with the brightness controls (Fn-Home, Fn-End) will usually make the dialog to go away and the flickering stop.  [https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/123854 Launchpad bug report].&lt;br /&gt;
&lt;br /&gt;
With the Nvidia card to increase/decrease brightness hit Ctrl+Alt+F1 to drop to a virtual console, change the brightness and hit Ctrl-Alt-F7 to return to Gnome.  This can be done without affecting running applications.&lt;br /&gt;
&lt;br /&gt;
If you have an Intel card you can install the Gnome Brightness Applet to give you an easy way to change the brightness from within Gnome:&lt;br /&gt;
&lt;br /&gt;
# Right-click on the top menu bar.&lt;br /&gt;
# Select &amp;quot;Add to Panel&amp;quot;.&lt;br /&gt;
# Scroll down to the &amp;quot;System &amp;amp; Hardware&amp;quot; section.&lt;br /&gt;
# Highlight the &amp;quot;Brightness Applet&amp;quot; and click the &amp;quot;Add&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
Using this applet often results in the &amp;quot;flickering screen syndrome&amp;quot; described above, but jiggling the brightness slider a little will cause this flickering to stop.&lt;br /&gt;
&lt;br /&gt;
As an alternative, install the program xbacklight which requires using the command line, but doesn't suffer from issues with flickering screens.  For example to set 50% brightness:&lt;br /&gt;
&lt;br /&gt;
  xbacklight =50&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 work&lt;br /&gt;
&lt;br /&gt;
'''Network Card'''&lt;br /&gt;
&lt;br /&gt;
'''Firewire'''&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;
'''Headphones/Microphone jacks'''&lt;br /&gt;
&lt;br /&gt;
'''Bluetooth:''' The bluetooth module is detected but I have no bluetooth device to check with.&lt;br /&gt;
&lt;br /&gt;
'''Keyboard Shortcuts:'''&lt;br /&gt;
&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&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 xrandr for Intel cards or using the Nvidia Control Panel with the Nvidia card.&lt;br /&gt;
&lt;br /&gt;
{{HELP|Does the new displayconfig-gtk tool work for switching video with the Intel card?}}&lt;br /&gt;
&lt;br /&gt;
* Network Pass-through: Works&lt;br /&gt;
&lt;br /&gt;
* Modem Pass-through: Works&lt;br /&gt;
&lt;br /&gt;
* USB ports: Connected upon docking&lt;br /&gt;
&lt;br /&gt;
* PS/2 Ports: Untested, may require a reboot.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{NOTE|Please see the Talk page for discussions on this category, if it is needed and alternatives}} &lt;br /&gt;
&lt;br /&gt;
[[Category: T61]] [[Category: Ubuntu 7.10]]&lt;/div&gt;</summary>
		<author><name>Plumpy</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=32942</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=32942"/>
		<updated>2007-09-05T08:26:00Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: /* Hibernate/Suspend */ added a more complete grub solution for sleep&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installation Notes ==&lt;br /&gt;
&lt;br /&gt;
If booting with the default options gives you a blank screen you should select the &amp;quot;Safe Graphics&amp;quot; menu choice when booting from the live CD.&lt;br /&gt;
&lt;br /&gt;
== Video ==&lt;br /&gt;
&lt;br /&gt;
'''Intel''' video works out of the box, but '''Nvidia''' accelerated 3D support is not installed by default.  To install Nvidia 3D support click System-&amp;gt;Administration-&amp;gt;Restricted Drivers Manager&lt;br /&gt;
&lt;br /&gt;
With Nvidia, you may experience a bug where the X server crashes or fails to start. Numerous solutions are provided (with mixed results) in the [https://bugs.launchpad.net/bugs/98641 Launchpad bug report] as well as  [http://ubuntuforums.org/showthread.php?t=533557&amp;amp;highlight=Thinkpad+T61 this thread] on the Ubuntu forums.&lt;br /&gt;
&lt;br /&gt;
Adding a second monitor may break your xorg.conf if you use the graphical interface.  I haven't tried editing the xorg file manually to see if one can be added.&lt;br /&gt;
&lt;br /&gt;
== Audio ==&lt;br /&gt;
&lt;br /&gt;
Audio does not work out of the box, but will work once you apply all the updates.&lt;br /&gt;
&lt;br /&gt;
Microphone may not work with applications (like sound recorder and skype) even though sound can be heard through the speakers or headphones.&lt;br /&gt;
&lt;br /&gt;
===Enabling Sound and Fixing the Volume 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. 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;
== 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;
&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].&lt;br /&gt;
&lt;br /&gt;
Debian packages for i386 can be found at: http://www.rubixlinux.org/debian/thinkfinger/&lt;br /&gt;
&lt;br /&gt;
After the package is installed add the following two lines to /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;
Note: Instructions in French available at http://doc.ubuntu-fr.org/materiel/thinkfinger&lt;br /&gt;
&lt;br /&gt;
* Recording fingerprints works&lt;br /&gt;
* Login works&lt;br /&gt;
* gksudo crashes : for example it is necessary to run synaptic twice and enter your password upon failure.&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;
&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;
&lt;br /&gt;
== Hibernate/Suspend ==&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;
== Fonts on High-Res Screens ==&lt;br /&gt;
&lt;br /&gt;
On high-res screens (e.g. 15&amp;quot; 1680x1050), the default fonts are too big. 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;
== Brightness ==&lt;br /&gt;
&lt;br /&gt;
The brightness controls (Fn-Home, Fn-End) don't seem to work reliably (if at all), and the brightness dialog box occasionally will pop up at random or &amp;quot;stick&amp;quot; on the screen, often causing the screen to flicker. Messing around with the brightness controls (Fn-Home, Fn-End) will usually make the dialog to go away and the flickering stop.  [https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/123854 Launchpad bug report].&lt;br /&gt;
&lt;br /&gt;
With the Nvidia card to increase/decrease brightness hit Ctrl+Alt+F1 to drop to a virtual console, change the brightness and hit Ctrl-Alt-F7 to return to Gnome.  This can be done without affecting running applications.&lt;br /&gt;
&lt;br /&gt;
If you have an Intel card you can install the Gnome Brightness Applet to give you an easy way to change the brightness from within Gnome:&lt;br /&gt;
&lt;br /&gt;
# Right-click on the top menu bar.&lt;br /&gt;
# Select &amp;quot;Add to Panel&amp;quot;.&lt;br /&gt;
# Scroll down to the &amp;quot;System &amp;amp; Hardware&amp;quot; section.&lt;br /&gt;
# Highlight the &amp;quot;Brightness Applet&amp;quot; and click the &amp;quot;Add&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
Using this applet often results in the &amp;quot;flickering screen syndrome&amp;quot; described above, but jiggling the brightness slider a little will cause this flickering to stop.&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 work&lt;br /&gt;
&lt;br /&gt;
'''Network Card'''&lt;br /&gt;
&lt;br /&gt;
'''Firewire'''&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;
'''Headphones/Microphone jacks'''&lt;br /&gt;
&lt;br /&gt;
'''Bluetooth:''' The bluetooth module is detected but I have no bluetooth device to check with.&lt;br /&gt;
&lt;br /&gt;
'''Keyboard Shortcuts:'''&lt;br /&gt;
&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&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 xrandr for Intel cards or using the Nvidia Control Panel with the Nvidia card.&lt;br /&gt;
&lt;br /&gt;
{{HELP|Does the new displayconfig-gtk tool work for switching video with the Intel card?}}&lt;br /&gt;
&lt;br /&gt;
* Network Pass-through: Works&lt;br /&gt;
&lt;br /&gt;
* Modem Pass-through: Works&lt;br /&gt;
&lt;br /&gt;
* USB ports: Connected upon docking&lt;br /&gt;
&lt;br /&gt;
* PS/2 Ports: Untested, may require a reboot.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{NOTE|Please see the Talk page for discussions on this category, if it is needed and alternatives}} &lt;br /&gt;
&lt;br /&gt;
[[Category: T61]] [[Category: Ubuntu 7.10]]&lt;/div&gt;</summary>
		<author><name>Plumpy</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=32745</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=32745"/>
		<updated>2007-08-30T02:38:25Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: /* Audio */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Video ==&lt;br /&gt;
&lt;br /&gt;
'''Intel X3100''' Works out of the box&lt;br /&gt;
&lt;br /&gt;
'''Nvidia''' accelerated 3D support is not installed by default.  To install 3D support click System-&amp;gt;Administration-&amp;gt;Restricted Drivers Manager&lt;br /&gt;
&lt;br /&gt;
The Restricted Drivers Manager drivers didn't work for me, crashing X on reboot. This is a known bug [http://bugs.launchpad.net/bugs/98641]. The really quite easy solution was to install the latest Nvidia drivers using the ENVY script, which needs to be slightly edited to run on Gutsy... see this thread [http://ubuntuforums.org/showthread.php?t=533557&amp;amp;highlight=Thinkpad+T61] at Ubuntu forums for details.&lt;br /&gt;
&lt;br /&gt;
== Audio ==&lt;br /&gt;
&lt;br /&gt;
Audio does not work out of the box but should work once you apply all the updates (specifically, you need linux-ubuntu-modules-2.6.22-10-generic version 10.25). See the [https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/122560 Launchpad bug report].&lt;br /&gt;
&lt;br /&gt;
===Enabling Sound and Fixing the Volume 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. 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;
== 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;
&lt;br /&gt;
== Fingerprint Reader ==&lt;br /&gt;
&lt;br /&gt;
The reader works with ThinkFinger. [http://www.thinkwiki.org/wiki/Integrated_Fingerprint_Reader Instructions].&lt;br /&gt;
&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;
&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;
== Suspend/Hibernate ==&lt;br /&gt;
&lt;br /&gt;
'''Hibernate''' works fine, but when resuming from a '''suspend''' the backlight doesn't come back on, making it nearly impossible to see anything on the screen. Switching to a console (Ctrl-Alt-F1) and then back to X (Ctrl-Alt-F7) brings the screen back to life. [https://bugs.launchpad.net/ubuntu/+bug/134391 Launchpad bug report].&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), the default fonts are too big. 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 until fonts look how you like them (96dpi is a common standard)&lt;br /&gt;
# Make sure you have Subpixel (LCD) Smoothing enabled&lt;br /&gt;
# Close the Details window and adjust the Application, Document, Desktop, etc fonts as desired (I set them all to 10).&lt;br /&gt;
&lt;br /&gt;
== Brightness ==&lt;br /&gt;
&lt;br /&gt;
The brightness controls (Fn-Home, Fn-End) don't seem to work reliably (if at all), and the brightness dialog box occasionally will pop up at random or &amp;quot;stick&amp;quot; on the screen, often causing the screen to flicker. Messing around with the brightness controls (Fn-Home, Fn-End) will usually make the dialog to go away and the flickering stop.  [https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/123854 Launchpad bug report].&lt;br /&gt;
&lt;br /&gt;
With the Nvidia card to increase/decrease brightness hit Ctrl+Alt+F1 to drop to a virtual console, change the brightness and hit Ctrl-Alt-F7 to return to Gnome.  This can be done without affecting running applications.&lt;br /&gt;
&lt;br /&gt;
If you install the Gnome Brightness Applet, it'll give you an easy way to change the brightness from within Gnome:&lt;br /&gt;
&lt;br /&gt;
# Right-click on the top menu bar.&lt;br /&gt;
# Select &amp;quot;Add to Panel&amp;quot;.&lt;br /&gt;
# Scroll down to the &amp;quot;System &amp;amp; Hardware&amp;quot; section.&lt;br /&gt;
# Highlight the &amp;quot;Brightness Applet&amp;quot; and click the &amp;quot;Add&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
Using this applet often results in the &amp;quot;flickering screen syndrome&amp;quot; described above, but jiggling the brightness slider a little will cause this flickering to stop.&lt;br /&gt;
&lt;br /&gt;
[[Category: T61]] [[Category: Ubuntu 7.10]]&lt;/div&gt;</summary>
		<author><name>Plumpy</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_Tribe_4_on_a_ThinkPad_T61&amp;diff=32141</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) Tribe 4 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)_Tribe_4_on_a_ThinkPad_T61&amp;diff=32141"/>
		<updated>2007-08-16T23:04:31Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: /* Trackpad scrolling */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Initial Install ==&lt;br /&gt;
&lt;br /&gt;
'''Issue #1:''' The initial install from the live CD graphical installer does not work if the laptop is in SATA AHCI mode. You have to go into the BIOS and set the SATA controller to &amp;quot;Compatibility&amp;quot; mode or else you get a &amp;quot;can't access tty&amp;quot; error. After Ubuntu is intalled and you've done an &amp;quot;apt-get update&amp;quot; you can -- and should -- set the controller back to AHCI mode.&lt;br /&gt;
&lt;br /&gt;
'''Issue #2:''' The initial install from the live CD graphical installer hangs with a blank tan screen after gdm loads. It is clear that gdm is running, but the desktop never actually loads. The solution is to:&lt;br /&gt;
&lt;br /&gt;
EITHER &lt;br /&gt;
&lt;br /&gt;
# switch to a console (Ctrl-Alt-F1)&lt;br /&gt;
# type &amp;quot;sudo bash&amp;quot;&lt;br /&gt;
# type &amp;quot;killall gdm&amp;quot;&lt;br /&gt;
# type &amp;quot;/etc/init.d/gdm start&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note that typing &amp;quot;/etc/init.d/gdm stop&amp;quot; does not work for step 3 -- you '''must''' run &amp;quot;killall gdm&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
OR&lt;br /&gt;
&lt;br /&gt;
# Simply (Ctrl-Alt-Backspace) which will kill gdm, and bring you back to the login screen.  Login as normal now.&lt;br /&gt;
&lt;br /&gt;
== Video ==&lt;br /&gt;
&lt;br /&gt;
'''Intel:'''&lt;br /&gt;
&lt;br /&gt;
At higher resolutions, the gnome toolbars function in a smaller area than the rest of the desktop. This is because the TV output is turned on. If you see the login screen show up in the top-left corner of the screen, taking up only 2/3 of the screen, then you have this issue and you'll need to disable the TV output.&lt;br /&gt;
&lt;br /&gt;
To turn the TV output off and fix the small desktop issue, add the following section in /etc/X11/xorg.conf. &lt;br /&gt;
&lt;br /&gt;
  Section &amp;quot;Monitor&amp;quot;&lt;br /&gt;
    Identifier &amp;quot;TVOutput&amp;quot;&lt;br /&gt;
    Option &amp;quot;Disable&amp;quot; &amp;quot;true&amp;quot;&lt;br /&gt;
  EndSection&lt;br /&gt;
&lt;br /&gt;
and then in the Device Section, add the option:&lt;br /&gt;
&lt;br /&gt;
  Option &amp;quot;monitor-TV&amp;quot; &amp;quot;TVOutput&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Reference: [http://ubuntuforums.org/showthread.php?p=2944730]&lt;br /&gt;
&lt;br /&gt;
'''Nvidia:'''&lt;br /&gt;
&lt;br /&gt;
If you would like 3D acceleration then you must download and install the proprietary drivers from Nvidia here: http://www.nvidia.com/object/unix.html&lt;br /&gt;
&lt;br /&gt;
To install these drivers:&lt;br /&gt;
&lt;br /&gt;
# install build-essentials from Synaptic&lt;br /&gt;
# Download the drivers from the link above to your home directory&lt;br /&gt;
# When the download completes hit Ctrl-ALT-F1 to drop to a console.&lt;br /&gt;
# Login and type:&lt;br /&gt;
## sudo /etc/init.d/gdm stop&lt;br /&gt;
## sudo sh NVIDIA-Linux-x86-100.14.11-pkg1.run&lt;br /&gt;
&lt;br /&gt;
If the file you download is newer that 100.14.11 make sure you modify the command appropriately&lt;br /&gt;
&lt;br /&gt;
When asked, permit the installer to modify xorg.conf&lt;br /&gt;
&lt;br /&gt;
Reboot: # sudo shutdown -r now&lt;br /&gt;
&lt;br /&gt;
{{NOTE|With each new Kernel release this process must be repeated except you should tell the installer to not update xorg.conf}}&lt;br /&gt;
&lt;br /&gt;
== Audio ==&lt;br /&gt;
&lt;br /&gt;
Audio does not work out of the box. You need to download and compile [http://alsa.opensrc.org/index.php/AlsaCVS ALSA from CVS]&lt;br /&gt;
&lt;br /&gt;
Also look at [https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/122560 Ubuntu Launchpad bug# 122560] for the relevant patches to apply over Alsa driver 1.0.14 if you do not want to use the CVS version.&lt;br /&gt;
&lt;br /&gt;
==Wireless:==&lt;br /&gt;
&lt;br /&gt;
====Thinkpad 11A/B/G====&lt;br /&gt;
The Atheros card works with the Madwifi driver included as part of the Restricted-Modules package in Gutsy and should be installed by default&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Intel IWL4965 A/G/N====&lt;br /&gt;
The iwlwifi driver included in Gutsy often stops transmitting or receiving after an hour or so.  This issue can be resolved by installing [http://intellinuxwireless.org/?p=iwlwifi iwlwifi 1.0.0-1].&lt;br /&gt;
&lt;br /&gt;
==Fingerprint Reader==&lt;br /&gt;
The reader works with ThinkFinger, see instructions at: [http://www.thinkwiki.org/wiki/Integrated_Fingerprint_Reader]&lt;br /&gt;
&lt;br /&gt;
==Trackpad scrolling==&lt;br /&gt;
&lt;br /&gt;
To enable using the middle mouse button to scroll add the following in your Trackpoint section in /etc/X11/xorg.conf&lt;br /&gt;
{{path|/etc/X11/xorg.conf}}:&lt;br /&gt;
&lt;br /&gt;
        Option          &amp;quot;EmulateWheel&amp;quot;          &amp;quot;on&amp;quot;&lt;br /&gt;
        Option          &amp;quot;EmulateWheelButton&amp;quot;    &amp;quot;2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Trackpad scrolling works out of the box for me in the standard thinkpad way: slide your finger up and down the very right edge of the trackpad --[[User:Plumpy|Plumpy]] 23:04, 16 August 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Bugs ==&lt;br /&gt;
&lt;br /&gt;
'''Font Issues on High-Res Screens:''' On high-res screens (15&amp;quot; 1680x1050), the default fonts are too bold above 8 or 9px (the exact number depends on the font). I have not heard people with normal-resolution screens complaining about this. You can easily see this by running gnome-specimen and gradually stepping up the font size. At some point (usually around 8-9px) the font will turn bold.&lt;br /&gt;
&lt;br /&gt;
'''Suspend/Hibernate:''' Suspend has major problems. Suspend-to-disk always hangs, and the only suspend-to-ram command I've gotten to work at all is &amp;quot;s2ram -f -a1&amp;quot;. About half the time s2ram never resumes, and usually when it fails to resume it just shows a blank console with &amp;quot;Linux!&amp;quot; written in the upper left. However, even when it does resume to the desktop, it invariably does something very odd: It *loses* a processor and a half. Before running s2ram you can do a &amp;quot;cat /proc/cpuinfo&amp;quot; and see two processors running at ~1800MHz, but after resuming from a s2ram, the same command will only show a single processor running at ~900MHz, and any further suspends will completely hang the system. Very bizarre.&lt;br /&gt;
&lt;br /&gt;
'''Console Switching:''' After a while of running in X mode, it becomes impossible to switch to a console and see anything. I've not figured out any pattern here, but this is what eventually happens after a few hours: You do a Ctrl-Alt-F1 (or F2 or whatever) to go from X to a console, and all you see is a blank screen. The console is actually there and running -- you just cannot see it. You can log in blind and type commands into the console and they'll run just find; you just cannot see what you're doing.&lt;br /&gt;
&lt;br /&gt;
'''Brightness:''' After installing the proprietary Nvidia drivers you will be unable to modify the brightness setting.  A workaround is to drop into a text console by hitting ctrl-alt-F1, modify the brightness and then return to X windows with ctrl-alt-F7.  Your X session will not be lost and you can do this with applications running.&lt;br /&gt;
&lt;br /&gt;
'''Launchpad bugs related to the T61:'''&lt;br /&gt;
&lt;br /&gt;
General listing of issues: [https://bugs.launchpad.net/ubuntu/+bug/131406]&lt;br /&gt;
&lt;br /&gt;
Update Nvidia GLX: [https://bugs.launchpad.net/ubuntu/+source/linux-restricted-modules-2.6.22/+bug/120943]&lt;br /&gt;
&lt;br /&gt;
Update ALSA to support the sound card in the T61: [https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/122560]&lt;br /&gt;
&lt;br /&gt;
Brightness dialog doesn't always disappear: [https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/123854]&lt;br /&gt;
&lt;br /&gt;
'''Wireless connection &amp;quot;Hangs&amp;quot; after a couple of hours:'''  &lt;br /&gt;
&lt;br /&gt;
This is reported to be fixed in version 1.0.0.-1 to install this version follow the instructions below **Note, this did not fix it for me**:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install the necessary prerequisites and get the directories symlinked right.&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install build-essential linux-headers-`uname -r`&lt;br /&gt;
 sudo ln -s /usr/src/linux-headers-`uname -r` /lib/modules/`uname -r`/source&lt;br /&gt;
&lt;br /&gt;
Download and install the latest mac80211 from the 8.x.x branch.  8.0.2 is the latest as of this edit.  The 9.x.x branch is currently experimental.&lt;br /&gt;
&lt;br /&gt;
 wget http://intellinuxwireless.org/mac80211/downloads/mac80211-8.0.2.tgz&lt;br /&gt;
 tar -xzf mac80211-8.0.2.tgz&lt;br /&gt;
 cd mac80211-8.0.2/&lt;br /&gt;
 sudo make patch_kernel&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
Download and install the latest iwlwifi from the 1.0.x branch.  1.0.0-1 is the latest as of this edit.  The 0.1.x branch is currently experimental, but is necessary if you need to use 802.11n.  These instructions may or may not work if you want to use 0.1.x.&lt;br /&gt;
&lt;br /&gt;
 wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-1.0.0-1.tgz&lt;br /&gt;
 tar -xzf iwlwifi-1.0.0-1.tgz&lt;br /&gt;
 cd iwlwifi-1.0.0-1/&lt;br /&gt;
 make&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
Download and install the latest 4965 ucode.&lt;br /&gt;
&lt;br /&gt;
 wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-4965-ucode-4.44.17.tgz&lt;br /&gt;
 tar -xzf iwlwifi-4965-ucode-4.44.17.tgz&lt;br /&gt;
 cd iwlwifi-4965-ucode-4.44.17/&lt;br /&gt;
 sudo cp iwlwifi-4965.ucode /lib/firmware/`uname -r`&lt;br /&gt;
&lt;br /&gt;
Make sure the hardware wifi switch is on before doing this.&lt;br /&gt;
 &lt;br /&gt;
 sudo rmmod iwl4965&lt;br /&gt;
 sudo modprobe iwl4965&lt;br /&gt;
&lt;br /&gt;
After that, you should simply be able to connect to wireless networks using Gnome's network manager.&lt;br /&gt;
&lt;br /&gt;
{{T61}}&lt;/div&gt;</summary>
		<author><name>Plumpy</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_Tribe_3_on_a_ThinkPad_T61&amp;diff=31771</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) Tribe 3 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)_Tribe_3_on_a_ThinkPad_T61&amp;diff=31771"/>
		<updated>2007-08-04T02:06:51Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: Confirming that the HD mode switch is no longer necessary&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Opening Notes:===&lt;br /&gt;
&lt;br /&gt;
1) This is written for Tribe 3, as development moves forward many of the items listed here will (hopefully) no longer be necessary or no longer apply.&lt;br /&gt;
&lt;br /&gt;
2) Use the Alternative Installer, the Desktop installer installs but fails to boot&lt;br /&gt;
&lt;br /&gt;
3) While Gutsy has been relatively stable lately if you are looking for stability stay with Feisty.&lt;br /&gt;
&lt;br /&gt;
===Video:===&lt;br /&gt;
&lt;br /&gt;
====Intel:====&lt;br /&gt;
Install using the regular CD and hit F4 to change VGA settings to 1024x768x32.&lt;br /&gt;
&lt;br /&gt;
Starting with Tribe 3 on the T61, Ubuntu defaults to using the Intel driver and you can use the regular CD to install.  However there have been problems with the resolution where the gnome toolbars are functioning in a smaller area than the rest of the desktop.  This is because the TV output is turned on.  If you see the login screen show up in the top-left corner of the screen, taking up only 2/3 of the screen, then you have this issue and you'll need to disable the TV output.&lt;br /&gt;
&lt;br /&gt;
To turn the TV output off and fix the small desktop issue, add the following section in {{path|/etc/X11/xorg.conf}}.&lt;br /&gt;
&lt;br /&gt;
 Section &amp;quot;Monitor&amp;quot;&lt;br /&gt;
   Identifier &amp;quot;TVOutput&amp;quot;&lt;br /&gt;
   Option &amp;quot;Disable&amp;quot; &amp;quot;true&amp;quot;&lt;br /&gt;
 EndSection&lt;br /&gt;
&lt;br /&gt;
and then in the Device Section, add the option:&lt;br /&gt;
&lt;br /&gt;
 Option &amp;quot;monitor-TV&amp;quot; &amp;quot;TVOutput&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Reference: http://ubuntuforums.org/showthread.php?p=2944730&lt;br /&gt;
&lt;br /&gt;
====Nvidia:====&lt;br /&gt;
&lt;br /&gt;
As of July 10th the latest nv 2D driver was released that supports the 140m in the T61 and this driver is in Tribe3.&lt;br /&gt;
&lt;br /&gt;
If you would like 3D acceleration then you must download and install the proprietary drivers from Nvidia here:&lt;br /&gt;
http://www.nvidia.com/object/unix.html&lt;br /&gt;
&lt;br /&gt;
To install these drivers:&lt;br /&gt;
&lt;br /&gt;
1) install build-essentials from Synaptic&lt;br /&gt;
&lt;br /&gt;
2) Download the drivers from the link above to your home directory&lt;br /&gt;
&lt;br /&gt;
3) When the download completes hit Ctrl-ALT-F1 to drop to a console.  &lt;br /&gt;
&lt;br /&gt;
4) Login and type:&lt;br /&gt;
&lt;br /&gt;
{{cmdroot|sudo /etc/init.d/gdm stop}}&lt;br /&gt;
&lt;br /&gt;
{{cmdroot|sudo sh NVIDIA-Linux-x86-100.14.11-pkg1.run}} &lt;br /&gt;
&lt;br /&gt;
If the file you download is newer that 100.14.11 make sure you modify the command appropriately&lt;br /&gt;
&lt;br /&gt;
When asked permit the installer to modify your xorg.conf&lt;br /&gt;
&lt;br /&gt;
Reboot: &lt;br /&gt;
{{cmdroot|sudo shutdown -r now}}&lt;br /&gt;
&lt;br /&gt;
{{NOTE|With each new Kernel release this process must be repeated except you should tell the installer to not update xorg.conf}}&lt;br /&gt;
&lt;br /&gt;
===Wireless:===&lt;br /&gt;
&lt;br /&gt;
====Thinkpad 11A/B/G====&lt;br /&gt;
The Atheros card works with the Madwifi driver included as part of the Restricted-Modules package in Gutsy and should be installed by default&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Intel IWL4965 A/G/N====&lt;br /&gt;
As of July 26th the IWL4965 driver and firmware is included in linux-ubuntu-modules-2.6.22 which should be installed by default.&lt;br /&gt;
https://lists.ubuntu.com/archives/gutsy-changes/2007-July/005258.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Audio:===&lt;br /&gt;
&lt;br /&gt;
Audio does not work out of the box, download and install the latest version of Alsa from CVS using the instructions here:&lt;br /&gt;
http://alsa.opensrc.org/index.php/Quick_Install&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* This guide is listed at the [http://tuxmobil.org/ibm.html TuxMobil Linux laptop and notebook installation guides survey (IBM/Lenovo)].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Updates==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{NOTE|The section below is optional}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====IWL4965====&lt;br /&gt;
As of July 27th Ubuntu ships version 0.42 of the iwlwifi driver, if you would like to install version 1.0 follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
{{NOTE|As the release process moves forward the Kernel will be updated so make sure to update the paths below}}&lt;br /&gt;
&lt;br /&gt;
{{NOTE|With each new Kernel release this process must be repeated}}&lt;br /&gt;
&lt;br /&gt;
Install the necessary prerequisites and get the directories symlinked right.&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install build-essential linux-headers-`uname -r`&lt;br /&gt;
 sudo ln -s /usr/src/linux-headers-`uname -r` /lib/modules/`uname -r`/source&lt;br /&gt;
&lt;br /&gt;
Download and install the latest mac80211 from the 8.x.x branch.  8.0.2 is the latest as of this edit.  The 9.x.x branch is currently experimental.&lt;br /&gt;
&lt;br /&gt;
 wget http://intellinuxwireless.org/mac80211/downloads/mac80211-8.0.2.tgz&lt;br /&gt;
 tar -xzf mac80211-8.0.2.tgz&lt;br /&gt;
 cd mac80211-8.0.2/&lt;br /&gt;
 sudo make patch_kernel&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
Download and install the latest iwlwifi from the 1.0.x branch.  1.0.0 is the latest as of this edit.  The 0.1.x branch is currently experimental, but is necessary if you need to use 802.11n.  These instructions may or may not work if you want to use 0.1.x.&lt;br /&gt;
&lt;br /&gt;
 wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-1.0.0.tgz&lt;br /&gt;
 tar -xzf iwlwifi-1.0.0.tgz&lt;br /&gt;
 cd iwlwifi-1.0.0/&lt;br /&gt;
 make&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
Download and install the latest 4965 ucode.&lt;br /&gt;
&lt;br /&gt;
 wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-4965-ucode-4.44.17.tgz&lt;br /&gt;
 tar -xzf iwlwifi-4965-ucode-4.44.17.tgz&lt;br /&gt;
 cd iwlwifi-4965-ucode-4.44.17/&lt;br /&gt;
 sudo cp iwlwifi-4965.ucode /lib/firmware/`uname -r`&lt;br /&gt;
&lt;br /&gt;
Make sure the hardware wifi switch is on before doing this.&lt;br /&gt;
&lt;br /&gt;
 sudo modprobe iwl4965&lt;br /&gt;
&lt;br /&gt;
After that, you should simply be able to connect to wireless networks using Gnome's network manager.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{T61}}&lt;/div&gt;</summary>
		<author><name>Plumpy</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_Tribe_3_on_a_ThinkPad_T61&amp;diff=31770</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) Tribe 3 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)_Tribe_3_on_a_ThinkPad_T61&amp;diff=31770"/>
		<updated>2007-08-04T01:28:52Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: /* Intel: */ and make it a little prettier while I'm at it.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Opening Notes:===&lt;br /&gt;
&lt;br /&gt;
1) This is written for Tribe 3, as development moves forward many of the items listed here will (hopefully) no longer be necessary or no longer apply.&lt;br /&gt;
&lt;br /&gt;
2) Use the Alternative Installer, the Desktop installer installs but fails to boot&lt;br /&gt;
&lt;br /&gt;
3) While Gutsy has been relatively stable lately if you are looking for stability stay with Feisty.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Hard Disk Controller===&lt;br /&gt;
When the system boots hit F1 to enter the Bios, select Config-&amp;gt;Serial ATA (SATA) and set the SATA Controller mode option to &amp;quot;Compatibility&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[Update] This does not appear to be necessary any more. I just installed Tribe 3 on a T61 today and left it in AHCI mode and the install went fine. Can anyone else confirm?&lt;br /&gt;
&lt;br /&gt;
===Video:===&lt;br /&gt;
&lt;br /&gt;
====Intel:====&lt;br /&gt;
Install using the regular CD and hit F4 to change VGA settings to 1024x768x32.&lt;br /&gt;
&lt;br /&gt;
Starting with Tribe 3 on the T61, Ubuntu defaults to using the Intel driver and you can use the regular CD to install.  However there have been problems with the resolution where the gnome toolbars are functioning in a smaller area than the rest of the desktop.  This is because the TV output is turned on.  If you see the login screen show up in the top-left corner of the screen, taking up only 2/3 of the screen, then you have this issue and you'll need to disable the TV output.&lt;br /&gt;
&lt;br /&gt;
To turn the TV output off and fix the small desktop issue, add the following section in {{path|/etc/X11/xorg.conf}}.&lt;br /&gt;
&lt;br /&gt;
 Section &amp;quot;Monitor&amp;quot;&lt;br /&gt;
   Identifier &amp;quot;TVOutput&amp;quot;&lt;br /&gt;
   Option &amp;quot;Disable&amp;quot; &amp;quot;true&amp;quot;&lt;br /&gt;
 EndSection&lt;br /&gt;
&lt;br /&gt;
and then in the Device Section, add the option:&lt;br /&gt;
&lt;br /&gt;
 Option &amp;quot;monitor-TV&amp;quot; &amp;quot;TVOutput&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Reference: http://ubuntuforums.org/showthread.php?p=2944730&lt;br /&gt;
&lt;br /&gt;
====Nvidia:====&lt;br /&gt;
&lt;br /&gt;
As of July 10th the latest nv 2D driver was released that supports the 140m in the T61 and this driver is in Tribe3.&lt;br /&gt;
&lt;br /&gt;
If you would like 3D acceleration then you must download and install the proprietary drivers from Nvidia here:&lt;br /&gt;
http://www.nvidia.com/object/unix.html&lt;br /&gt;
&lt;br /&gt;
To install these drivers:&lt;br /&gt;
&lt;br /&gt;
1) install build-essentials from Synaptic&lt;br /&gt;
&lt;br /&gt;
2) Download the drivers from the link above to your home directory&lt;br /&gt;
&lt;br /&gt;
3) When the download completes hit Ctrl-ALT-F1 to drop to a console.  &lt;br /&gt;
&lt;br /&gt;
4) Login and type:&lt;br /&gt;
&lt;br /&gt;
{{cmdroot|sudo /etc/init.d/gdm stop}}&lt;br /&gt;
&lt;br /&gt;
{{cmdroot|sudo sh NVIDIA-Linux-x86-100.14.11-pkg1.run}} &lt;br /&gt;
&lt;br /&gt;
If the file you download is newer that 100.14.11 make sure you modify the command appropriately&lt;br /&gt;
&lt;br /&gt;
When asked permit the installer to modify your xorg.conf&lt;br /&gt;
&lt;br /&gt;
Reboot: &lt;br /&gt;
{{cmdroot|sudo shutdown -r now}}&lt;br /&gt;
&lt;br /&gt;
{{NOTE|With each new Kernel release this process must be repeated except you should tell the installer to not update xorg.conf}}&lt;br /&gt;
&lt;br /&gt;
===Wireless:===&lt;br /&gt;
&lt;br /&gt;
====Thinkpad 11A/B/G====&lt;br /&gt;
The Atheros card works with the Madwifi driver included as part of the Restricted-Modules package in Gutsy and should be installed by default&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Intel IWL4965 A/G/N====&lt;br /&gt;
As of July 26th the IWL4965 driver and firmware is included in linux-ubuntu-modules-2.6.22 which should be installed by default.&lt;br /&gt;
https://lists.ubuntu.com/archives/gutsy-changes/2007-July/005258.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Audio:===&lt;br /&gt;
&lt;br /&gt;
Audio does not work out of the box, download and install the latest version of Alsa from CVS using the instructions here:&lt;br /&gt;
http://alsa.opensrc.org/index.php/Quick_Install&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* This guide is listed at the [http://tuxmobil.org/ibm.html TuxMobil Linux laptop and notebook installation guides survey (IBM/Lenovo)].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Updates==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{NOTE|The section below is optional}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====IWL4965====&lt;br /&gt;
As of July 27th Ubuntu ships version 0.42 of the iwlwifi driver, if you would like to install version 1.0 follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
{{NOTE|As the release process moves forward the Kernel will be updated so make sure to update the paths below}}&lt;br /&gt;
&lt;br /&gt;
{{NOTE|With each new Kernel release this process must be repeated}}&lt;br /&gt;
&lt;br /&gt;
Install the necessary prerequisites and get the directories symlinked right.&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install build-essential linux-headers-`uname -r`&lt;br /&gt;
 sudo ln -s /usr/src/linux-headers-`uname -r` /lib/modules/`uname -r`/source&lt;br /&gt;
&lt;br /&gt;
Download and install the latest mac80211 from the 8.x.x branch.  8.0.2 is the latest as of this edit.  The 9.x.x branch is currently experimental.&lt;br /&gt;
&lt;br /&gt;
 wget http://intellinuxwireless.org/mac80211/downloads/mac80211-8.0.2.tgz&lt;br /&gt;
 tar -xzf mac80211-8.0.2.tgz&lt;br /&gt;
 cd mac80211-8.0.2/&lt;br /&gt;
 sudo make patch_kernel&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
Download and install the latest iwlwifi from the 1.0.x branch.  1.0.0 is the latest as of this edit.  The 0.1.x branch is currently experimental, but is necessary if you need to use 802.11n.  These instructions may or may not work if you want to use 0.1.x.&lt;br /&gt;
&lt;br /&gt;
 wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-1.0.0.tgz&lt;br /&gt;
 tar -xzf iwlwifi-1.0.0.tgz&lt;br /&gt;
 cd iwlwifi-1.0.0/&lt;br /&gt;
 make&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
Download and install the latest 4965 ucode.&lt;br /&gt;
&lt;br /&gt;
 wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-4965-ucode-4.44.17.tgz&lt;br /&gt;
 tar -xzf iwlwifi-4965-ucode-4.44.17.tgz&lt;br /&gt;
 cd iwlwifi-4965-ucode-4.44.17/&lt;br /&gt;
 sudo cp iwlwifi-4965.ucode /lib/firmware/`uname -r`&lt;br /&gt;
&lt;br /&gt;
Make sure the hardware wifi switch is on before doing this.&lt;br /&gt;
&lt;br /&gt;
 sudo modprobe iwl4965&lt;br /&gt;
&lt;br /&gt;
After that, you should simply be able to connect to wireless networks using Gnome's network manager.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{T61}}&lt;/div&gt;</summary>
		<author><name>Plumpy</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.10_(Gutsy_Gibbon)_Tribe_3_on_a_ThinkPad_T61&amp;diff=31769</id>
		<title>Installing Ubuntu 7.10 (Gutsy Gibbon) Tribe 3 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)_Tribe_3_on_a_ThinkPad_T61&amp;diff=31769"/>
		<updated>2007-08-04T01:27:36Z</updated>

		<summary type="html">&lt;p&gt;Plumpy: /* Intel: */ Make it more clear that the small desktop issue and the &amp;quot;tv output is on&amp;quot; issue are related (I didn't understand that when I read it)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Opening Notes:===&lt;br /&gt;
&lt;br /&gt;
1) This is written for Tribe 3, as development moves forward many of the items listed here will (hopefully) no longer be necessary or no longer apply.&lt;br /&gt;
&lt;br /&gt;
2) Use the Alternative Installer, the Desktop installer installs but fails to boot&lt;br /&gt;
&lt;br /&gt;
3) While Gutsy has been relatively stable lately if you are looking for stability stay with Feisty.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Hard Disk Controller===&lt;br /&gt;
When the system boots hit F1 to enter the Bios, select Config-&amp;gt;Serial ATA (SATA) and set the SATA Controller mode option to &amp;quot;Compatibility&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[Update] This does not appear to be necessary any more. I just installed Tribe 3 on a T61 today and left it in AHCI mode and the install went fine. Can anyone else confirm?&lt;br /&gt;
&lt;br /&gt;
===Video:===&lt;br /&gt;
&lt;br /&gt;
====Intel:====&lt;br /&gt;
Install using the regular CD and hit F4 to change VGA settings to 1024x768x32.&lt;br /&gt;
&lt;br /&gt;
Starting with Tribe 3 on the T61, Ubuntu defaults to using the Intel driver and you can use the regular CD to install.  However there have been problems with the resolution where the gnome toolbars are functioning in a smaller area than the rest of the desktop.  This is because the TV output is turned on.  If you see the login screen show up in the top-left corner of the screen, taking up only 2/3 of the screen, then you have this issue and you'll need to disable the TV output.&lt;br /&gt;
&lt;br /&gt;
To turn the TV output off and fix the small desktop issue, add the following section in {{path|/etc/X11/xorg.conf}}.&lt;br /&gt;
&lt;br /&gt;
{{cmdresult|Section &amp;quot;Monitor&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
{{cmdresult|Identifier &amp;quot;TVOutput&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
{{cmdresult|Option &amp;quot;Disable&amp;quot; &amp;quot;true&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
{{cmdresult|EndSection}}&lt;br /&gt;
&lt;br /&gt;
and then in the Device Section, add the option:&lt;br /&gt;
&lt;br /&gt;
{{cmdresult|Option &amp;quot;monitor-TV&amp;quot; &amp;quot;TVOutput&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
Reference: http://ubuntuforums.org/showthread.php?p=2944730&lt;br /&gt;
&lt;br /&gt;
====Nvidia:====&lt;br /&gt;
&lt;br /&gt;
As of July 10th the latest nv 2D driver was released that supports the 140m in the T61 and this driver is in Tribe3.&lt;br /&gt;
&lt;br /&gt;
If you would like 3D acceleration then you must download and install the proprietary drivers from Nvidia here:&lt;br /&gt;
http://www.nvidia.com/object/unix.html&lt;br /&gt;
&lt;br /&gt;
To install these drivers:&lt;br /&gt;
&lt;br /&gt;
1) install build-essentials from Synaptic&lt;br /&gt;
&lt;br /&gt;
2) Download the drivers from the link above to your home directory&lt;br /&gt;
&lt;br /&gt;
3) When the download completes hit Ctrl-ALT-F1 to drop to a console.  &lt;br /&gt;
&lt;br /&gt;
4) Login and type:&lt;br /&gt;
&lt;br /&gt;
{{cmdroot|sudo /etc/init.d/gdm stop}}&lt;br /&gt;
&lt;br /&gt;
{{cmdroot|sudo sh NVIDIA-Linux-x86-100.14.11-pkg1.run}} &lt;br /&gt;
&lt;br /&gt;
If the file you download is newer that 100.14.11 make sure you modify the command appropriately&lt;br /&gt;
&lt;br /&gt;
When asked permit the installer to modify your xorg.conf&lt;br /&gt;
&lt;br /&gt;
Reboot: &lt;br /&gt;
{{cmdroot|sudo shutdown -r now}}&lt;br /&gt;
&lt;br /&gt;
{{NOTE|With each new Kernel release this process must be repeated except you should tell the installer to not update xorg.conf}}&lt;br /&gt;
&lt;br /&gt;
===Wireless:===&lt;br /&gt;
&lt;br /&gt;
====Thinkpad 11A/B/G====&lt;br /&gt;
The Atheros card works with the Madwifi driver included as part of the Restricted-Modules package in Gutsy and should be installed by default&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Intel IWL4965 A/G/N====&lt;br /&gt;
As of July 26th the IWL4965 driver and firmware is included in linux-ubuntu-modules-2.6.22 which should be installed by default.&lt;br /&gt;
https://lists.ubuntu.com/archives/gutsy-changes/2007-July/005258.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Audio:===&lt;br /&gt;
&lt;br /&gt;
Audio does not work out of the box, download and install the latest version of Alsa from CVS using the instructions here:&lt;br /&gt;
http://alsa.opensrc.org/index.php/Quick_Install&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* This guide is listed at the [http://tuxmobil.org/ibm.html TuxMobil Linux laptop and notebook installation guides survey (IBM/Lenovo)].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Updates==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{NOTE|The section below is optional}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====IWL4965====&lt;br /&gt;
As of July 27th Ubuntu ships version 0.42 of the iwlwifi driver, if you would like to install version 1.0 follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
{{NOTE|As the release process moves forward the Kernel will be updated so make sure to update the paths below}}&lt;br /&gt;
&lt;br /&gt;
{{NOTE|With each new Kernel release this process must be repeated}}&lt;br /&gt;
&lt;br /&gt;
Install the necessary prerequisites and get the directories symlinked right.&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install build-essential linux-headers-`uname -r`&lt;br /&gt;
 sudo ln -s /usr/src/linux-headers-`uname -r` /lib/modules/`uname -r`/source&lt;br /&gt;
&lt;br /&gt;
Download and install the latest mac80211 from the 8.x.x branch.  8.0.2 is the latest as of this edit.  The 9.x.x branch is currently experimental.&lt;br /&gt;
&lt;br /&gt;
 wget http://intellinuxwireless.org/mac80211/downloads/mac80211-8.0.2.tgz&lt;br /&gt;
 tar -xzf mac80211-8.0.2.tgz&lt;br /&gt;
 cd mac80211-8.0.2/&lt;br /&gt;
 sudo make patch_kernel&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
Download and install the latest iwlwifi from the 1.0.x branch.  1.0.0 is the latest as of this edit.  The 0.1.x branch is currently experimental, but is necessary if you need to use 802.11n.  These instructions may or may not work if you want to use 0.1.x.&lt;br /&gt;
&lt;br /&gt;
 wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-1.0.0.tgz&lt;br /&gt;
 tar -xzf iwlwifi-1.0.0.tgz&lt;br /&gt;
 cd iwlwifi-1.0.0/&lt;br /&gt;
 make&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
Download and install the latest 4965 ucode.&lt;br /&gt;
&lt;br /&gt;
 wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-4965-ucode-4.44.17.tgz&lt;br /&gt;
 tar -xzf iwlwifi-4965-ucode-4.44.17.tgz&lt;br /&gt;
 cd iwlwifi-4965-ucode-4.44.17/&lt;br /&gt;
 sudo cp iwlwifi-4965.ucode /lib/firmware/`uname -r`&lt;br /&gt;
&lt;br /&gt;
Make sure the hardware wifi switch is on before doing this.&lt;br /&gt;
&lt;br /&gt;
 sudo modprobe iwl4965&lt;br /&gt;
&lt;br /&gt;
After that, you should simply be able to connect to wireless networks using Gnome's network manager.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{T61}}&lt;/div&gt;</summary>
		<author><name>Plumpy</name></author>
		
	</entry>
</feed>