<?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=Alain40</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=Alain40"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Alain40"/>
	<updated>2026-05-05T20:49:46Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41779</id>
		<title>Extending battery life on X200</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41779"/>
		<updated>2009-03-03T20:44:15Z</updated>

		<summary type="html">&lt;p&gt;Alain40: /* Reducing CPU voltage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
&lt;br /&gt;
I own the beautiful Lenovo X200 and run Ubuntu Intrepid on the machine. Its battery life is significantly lower than that under Windows and many users have reported that it runs hotter than under Windows. &lt;br /&gt;
&lt;br /&gt;
With the changes below and a 9 cell battery I get over 9 hours on an idle system with backlight at the lowest level and wireless radios off. Before the changes I was only getting 5 hours. &lt;br /&gt;
&lt;br /&gt;
The system also runs a lot cooler and I do not need tpfan (sw fan control for the ThinkPad available [[Fan_control_scripts|here]]), the built-in hw controller falls back to the lower speeds shortly after a CPU load subsides.&lt;br /&gt;
&lt;br /&gt;
=== Details ===&lt;br /&gt;
&lt;br /&gt;
The changes fall into 3 categories:&lt;br /&gt;
* '''Removing packages that create unnecessarily frequent wake up interrupts.'''&lt;br /&gt;
**These interrupts wake up the CPU, preventing it from staying in its most energy efficient state.&lt;br /&gt;
**I used Powertop from [[www.lesswatts.org]] for this task.&lt;br /&gt;
* '''Lowering the voltage supplied to the CPU.''' &lt;br /&gt;
** Lowering CPU voltage does ''not'' impact performance since the clock frequency is unaffected&lt;br /&gt;
**I used phc patches and phctools available at [[www.linux-phc.org]] for this task.&lt;br /&gt;
*'''Turning off radios you do not need'''&lt;br /&gt;
**My X200 has 3 wireless radios: Wifi, Blutooth, Broadband wireless&lt;br /&gt;
== Finding and removing high interrupt packages ==&lt;br /&gt;
Install PowerTOP from [[www.lesswatts.org/projects/powertop/download.php | here]].&lt;br /&gt;
&lt;br /&gt;
Run PowerTOP as root (sudo powertop) and look for the packages that come up on top of the interrupt frequency list. These are the packages that wake up the CPU most frequently.&lt;br /&gt;
&lt;br /&gt;
In my case the majority of the ''easily'' ''preventable'' interrupts were from 3 packages:&lt;br /&gt;
*i915, the intel graphics driver&lt;br /&gt;
*SCIM&lt;br /&gt;
*Gnome Power Manager&lt;br /&gt;
&lt;br /&gt;
With the first one accounting for the bulk of the battery life improvement. &lt;br /&gt;
&lt;br /&gt;
The %'s in PowerTOP give you an indication of what to focus on, no need to worry about a 1% problem (unless it is easy to prevent that it), it will not have much impact on your battery life.&lt;br /&gt;
&lt;br /&gt;
Remember that over time these packages will improve  and will not need to be removed.&lt;br /&gt;
=== Turning off DRI ===&lt;br /&gt;
Just insert:  Option &amp;quot;NoDRI&amp;quot;&lt;br /&gt;
to the &amp;quot;Device&amp;quot; section in /etc/X11/xorg.conf. This turns off all 3D, so no compiz or other fancy effect. Worth it for me because the impact on battery life is substantial.&lt;br /&gt;
===Turning off SCIM===&lt;br /&gt;
I had my system set to accept foreign characters. Going to System &amp;gt; Language Support &amp;gt; Disable support to enter complex characters does the trick.&lt;br /&gt;
===Turning off Gnome Power Manager===&lt;br /&gt;
A nice feature set withotu which you may not want to live. On my system I disabled Gnome Power Manager from the startup list: System &amp;gt; Sessions &amp;gt; Power Management daemon. I replaced it with the Gnome Panel Battery Charge Monitor (Add to Panel...) which works well enough for me.&lt;br /&gt;
&lt;br /&gt;
== Reducing CPU voltage ==&lt;br /&gt;
===Installing phc module patches===&lt;br /&gt;
The phc module patches are available [[www.ubuntuforums.org/showthread.php?t=786402 | here]], make sure you get the version that matches you kernel version. You can easily check by typing uname -r in a console.&lt;br /&gt;
&lt;br /&gt;
You need not compile your own module, check the thread, users have posted already compiled versions of the acpi-cpufreg.ko module for most kernel versions.&lt;br /&gt;
&lt;br /&gt;
Once you have the apci-cpufreq.ko module, back up the old module:&lt;br /&gt;
sudo cp /lib/modules/`uname -r`/kernel/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.ko /lib/modules/`uname -r`/kernel/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.ko.bak&lt;br /&gt;
&lt;br /&gt;
Then copy the new module to the right place:&lt;br /&gt;
sudo cp acpi-cpufreq.ko /lib/modules/$(uname -r)/kernel/arch/x86/kernel/cpu/cpufreq&lt;br /&gt;
&lt;br /&gt;
Restart your system and check that you now have voltage controls by typing:&lt;br /&gt;
more /sys/devices/system/cpu/cpu0/cpufreq/phc_vids&lt;br /&gt;
&lt;br /&gt;
You should see something like: 39 25 17 13 (your values may be different). These are the voltage values for the 4 frequencies available on your CPU&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Intalling phctools===&lt;br /&gt;
===Experimenting with lower voltages===&lt;br /&gt;
===Making the voltages stick===&lt;br /&gt;
&lt;br /&gt;
==Turning off the wireless radios==&lt;/div&gt;</summary>
		<author><name>Alain40</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41777</id>
		<title>Extending battery life on X200</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41777"/>
		<updated>2009-03-03T20:35:03Z</updated>

		<summary type="html">&lt;p&gt;Alain40: /* Finding and removing high interrupt packages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
&lt;br /&gt;
I own the beautiful Lenovo X200 and run Ubuntu Intrepid on the machine. Its battery life is significantly lower than that under Windows and many users have reported that it runs hotter than under Windows. &lt;br /&gt;
&lt;br /&gt;
With the changes below and a 9 cell battery I get over 9 hours on an idle system with backlight at the lowest level and wireless radios off. Before the changes I was only getting 5 hours. &lt;br /&gt;
&lt;br /&gt;
The system also runs a lot cooler and I do not need tpfan (sw fan control for the ThinkPad available [[Fan_control_scripts|here]]), the built-in hw controller falls back to the lower speeds shortly after a CPU load subsides.&lt;br /&gt;
&lt;br /&gt;
=== Details ===&lt;br /&gt;
&lt;br /&gt;
The changes fall into 3 categories:&lt;br /&gt;
* '''Removing packages that create unnecessarily frequent wake up interrupts.'''&lt;br /&gt;
**These interrupts wake up the CPU, preventing it from staying in its most energy efficient state.&lt;br /&gt;
**I used Powertop from [[www.lesswatts.org]] for this task.&lt;br /&gt;
* '''Lowering the voltage supplied to the CPU.''' &lt;br /&gt;
** Lowering CPU voltage does ''not'' impact performance since the clock frequency is unaffected&lt;br /&gt;
**I used phc patches and phctools available at [[www.linux-phc.org]] for this task.&lt;br /&gt;
*'''Turning off radios you do not need'''&lt;br /&gt;
**My X200 has 3 wireless radios: Wifi, Blutooth, Broadband wireless&lt;br /&gt;
== Finding and removing high interrupt packages ==&lt;br /&gt;
Install PowerTOP from [[www.lesswatts.org/projects/powertop/download.php | here]].&lt;br /&gt;
&lt;br /&gt;
Run PowerTOP as root (sudo powertop) and look for the packages that come up on top of the interrupt frequency list. These are the packages that wake up the CPU most frequently.&lt;br /&gt;
&lt;br /&gt;
In my case the majority of the ''easily'' ''preventable'' interrupts were from 3 packages:&lt;br /&gt;
*i915, the intel graphics driver&lt;br /&gt;
*SCIM&lt;br /&gt;
*Gnome Power Manager&lt;br /&gt;
&lt;br /&gt;
With the first one accounting for the bulk of the battery life improvement. &lt;br /&gt;
&lt;br /&gt;
The %'s in PowerTOP give you an indication of what to focus on, no need to worry about a 1% problem (unless it is easy to prevent that it), it will not have much impact on your battery life.&lt;br /&gt;
&lt;br /&gt;
Remember that over time these packages will improve  and will not need to be removed.&lt;br /&gt;
=== Turning off DRI ===&lt;br /&gt;
Just insert:  Option &amp;quot;NoDRI&amp;quot;&lt;br /&gt;
to the &amp;quot;Device&amp;quot; section in /etc/X11/xorg.conf. This turns off all 3D, so no compiz or other fancy effect. Worth it for me because the impact on battery life is substantial.&lt;br /&gt;
===Turning off SCIM===&lt;br /&gt;
I had my system set to accept foreign characters. Going to System &amp;gt; Language Support &amp;gt; Disable support to enter complex characters does the trick.&lt;br /&gt;
===Turning off Gnome Power Manager===&lt;br /&gt;
A nice feature set withotu which you may not want to live. On my system I disabled Gnome Power Manager from the startup list: System &amp;gt; Sessions &amp;gt; Power Management daemon. I replaced it with the Gnome Panel Battery Charge Monitor (Add to Panel...) which works well enough for me.&lt;br /&gt;
&lt;br /&gt;
== Reducing CPU voltage ==&lt;br /&gt;
===Installing phc module patches===&lt;br /&gt;
===Intalling phctools===&lt;br /&gt;
===Experimenting with lower voltages===&lt;br /&gt;
===Making the voltages stick===&lt;br /&gt;
==Turning off the wireless radios==&lt;/div&gt;</summary>
		<author><name>Alain40</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41775</id>
		<title>Extending battery life on X200</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41775"/>
		<updated>2009-03-03T20:32:03Z</updated>

		<summary type="html">&lt;p&gt;Alain40: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
&lt;br /&gt;
I own the beautiful Lenovo X200 and run Ubuntu Intrepid on the machine. Its battery life is significantly lower than that under Windows and many users have reported that it runs hotter than under Windows. &lt;br /&gt;
&lt;br /&gt;
With the changes below and a 9 cell battery I get over 9 hours on an idle system with backlight at the lowest level and wireless radios off. Before the changes I was only getting 5 hours. &lt;br /&gt;
&lt;br /&gt;
The system also runs a lot cooler and I do not need tpfan (sw fan control for the ThinkPad available [[Fan_control_scripts|here]]), the built-in hw controller falls back to the lower speeds shortly after a CPU load subsides.&lt;br /&gt;
&lt;br /&gt;
=== Details ===&lt;br /&gt;
&lt;br /&gt;
The changes fall into 3 categories:&lt;br /&gt;
* '''Removing packages that create unnecessarily frequent wake up interrupts.'''&lt;br /&gt;
**These interrupts wake up the CPU, preventing it from staying in its most energy efficient state.&lt;br /&gt;
**I used Powertop from [[www.lesswatts.org]] for this task.&lt;br /&gt;
* '''Lowering the voltage supplied to the CPU.''' &lt;br /&gt;
** Lowering CPU voltage does ''not'' impact performance since the clock frequency is unaffected&lt;br /&gt;
**I used phc patches and phctools available at [[www.linux-phc.org]] for this task.&lt;br /&gt;
*'''Turning off radios you do not need'''&lt;br /&gt;
**My X200 has 3 wireless radios: Wifi, Blutooth, Broadband wireless&lt;br /&gt;
== Finding and removing high interrupt packages ==&lt;br /&gt;
Install PowerTOP from [[http://www.lesswatts.org/projects/powertop/download.php|PowerTOP]].&lt;br /&gt;
&lt;br /&gt;
Run PowerTOP as root (sudo powertop) and look for the packages that come up on top of the interrupt frequency list. These are the packages that wake up the CPU most frequently.&lt;br /&gt;
&lt;br /&gt;
In my case the bulk of the ''easily'' ''preventable'' interrupts were from 3 packages:&lt;br /&gt;
*i915, the intel graphics driver&lt;br /&gt;
*SCIM&lt;br /&gt;
*Gnome Power Manager&lt;br /&gt;
&lt;br /&gt;
With the first one accounting for the bulk of the battery life improvement. The %'s in PowerTOP give you an indication of what to focus on, no need to worry about a 1% problem (unless it is easy to prevent that it), it will not have much impact on your battery life.&lt;br /&gt;
&lt;br /&gt;
Remember that over time these packages will improve and will not need to be removed when the new versions become better behaved.&lt;br /&gt;
=== Turning off DRI ===&lt;br /&gt;
Just insert:  Option &amp;quot;NoDRI&amp;quot;&lt;br /&gt;
to the &amp;quot;Device&amp;quot; section in /etc/X11/xorg.conf. This turns off all 3D, so no compiz or other fancy effect. Worth it for me because the impact on battery life is substantial.&lt;br /&gt;
===Turning off SCIM===&lt;br /&gt;
I had my system set to accept foreign characters. Going to System &amp;gt; Language Support &amp;gt; Disable support to enter complex characters does the trick.&lt;br /&gt;
===Turning off Gnome Power Manager===&lt;br /&gt;
A nice feature set which you may want to keep. On my system I disabled it from the startup list: System &amp;gt; Sessions &amp;gt; Power Management deamon. I replaced it with the Gnome Panel Battery Charge Monitor (Add to Panel...) which works well enough for me.&lt;br /&gt;
&lt;br /&gt;
== Reducing CPU voltage ==&lt;br /&gt;
===Installing phc module patches===&lt;br /&gt;
===Intalling phctools===&lt;br /&gt;
===Experimenting with lower voltages===&lt;br /&gt;
===Making the voltages stick===&lt;br /&gt;
==Turning off the wireless radios==&lt;/div&gt;</summary>
		<author><name>Alain40</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41772</id>
		<title>Extending battery life on X200</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41772"/>
		<updated>2009-03-03T17:22:59Z</updated>

		<summary type="html">&lt;p&gt;Alain40: /* Finding and removing high interrupt packages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
&lt;br /&gt;
I own the beautiful Lenovo X200 and run Ubuntu Intrepid on the machine. Its battery life is significantly lower than that under Windows and many users have reported that it runs hotter than under Windows. &lt;br /&gt;
&lt;br /&gt;
With the changes below and a 9 cell battery I get over 9 hours on an idle system with backlight on but at the lowest level and wireless radios off. Before the changes I was only getting 5 hours. &lt;br /&gt;
&lt;br /&gt;
The system also runs a lot cooler and I do not need tpfan (sw fan control for the ThinkPad available [[Fan_control_scripts|here]]), the built-in hw controller falls back to the lower speeds shortly after a CPU load subsides.&lt;br /&gt;
&lt;br /&gt;
=== Details ===&lt;br /&gt;
&lt;br /&gt;
The changes fall into 3 categories:&lt;br /&gt;
* '''Removing packages that create unnecessarily frequent wake up interrupts.'''&lt;br /&gt;
**These interrupts wake up the CPU, preventing it from staying in its most energy efficient state.&lt;br /&gt;
**I used Powertop from [[www.lesswatts.org]] for this task.&lt;br /&gt;
* '''Lowering the voltage supplied to the CPU.''' &lt;br /&gt;
** Lowering CPU voltage does ''not'' impact performance since the clock frequency is unaffected&lt;br /&gt;
**I used phc patches and phctools available at [[www.linux-phc.org]] for this task.&lt;br /&gt;
*'''Turning off radios you do not need'''&lt;br /&gt;
**My X200 has 3 wireless radios: Wifi, Blutooth, Broadband wireless&lt;br /&gt;
== Finding and removing high interrupt packages ==&lt;br /&gt;
Install PowerTOP from [[http://www.lesswatts.org/projects/powertop/download.php|PowerTOP]].&lt;br /&gt;
&lt;br /&gt;
Run PowerTOP as root (sudo powertop) and look for the packages that come up on top of the interrupt frequency list. These are the packages that wake up the CPU most frequently.&lt;br /&gt;
&lt;br /&gt;
In my case the bulk of the ''easily'' ''preventable'' interrupts were from 3 packages:&lt;br /&gt;
*i915, the intel graphics driver&lt;br /&gt;
*SCIM&lt;br /&gt;
*Gnome Power Manager&lt;br /&gt;
&lt;br /&gt;
With the first one accounting for the bulk of the battery life improvement. The %'s in PowerTOP give you an indication of what to focus on, no need to worry about a 1% problem (unless it is easy to prevent that it), it will not have much impact on your battery life.&lt;br /&gt;
&lt;br /&gt;
Remember that over time these packages will improve and will not need to be removed when the new versions become better behaved.&lt;br /&gt;
=== Turning off DRI ===&lt;br /&gt;
Just insert:  Option &amp;quot;NoDRI&amp;quot;&lt;br /&gt;
to the &amp;quot;Device&amp;quot; section in /etc/X11/xorg.conf. This turns off all 3D, so no compiz or other fancy effect. Worth it for me because the impact on battery life is substantial.&lt;br /&gt;
===Turning off SCIM===&lt;br /&gt;
I had my system set to accept foreign characters. Going to System &amp;gt; Language Support &amp;gt; Disable support to enter complex characters does the trick.&lt;br /&gt;
===Turning off Gnome Power Manager===&lt;br /&gt;
A nice feature set which you may want to keep. On my system I disabled it from the startup list: System &amp;gt; Sessions &amp;gt; Power Management deamon. I replaced it with the Gnome Panel Battery Charge Monitor (Add to Panel...) which works well enough for me.&lt;br /&gt;
&lt;br /&gt;
== Reducing CPU voltage ==&lt;br /&gt;
===Installing phc module patches===&lt;br /&gt;
===Intalling phctools===&lt;br /&gt;
===Experimenting with lower voltages===&lt;br /&gt;
===Making the voltages stick===&lt;br /&gt;
==Turning off the wireless radios==&lt;/div&gt;</summary>
		<author><name>Alain40</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41771</id>
		<title>Extending battery life on X200</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41771"/>
		<updated>2009-03-03T17:07:19Z</updated>

		<summary type="html">&lt;p&gt;Alain40: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
&lt;br /&gt;
I own the beautiful Lenovo X200 and run Ubuntu Intrepid on the machine. Its battery life is significantly lower than that under Windows and many users have reported that it runs hotter than under Windows. &lt;br /&gt;
&lt;br /&gt;
With the changes below and a 9 cell battery I get over 9 hours on an idle system with backlight on but at the lowest level and wireless radios off. Before the changes I was only getting 5 hours. &lt;br /&gt;
&lt;br /&gt;
The system also runs a lot cooler and I do not need tpfan (sw fan control for the ThinkPad available [[Fan_control_scripts|here]]), the built-in hw controller falls back to the lower speeds shortly after a CPU load subsides.&lt;br /&gt;
&lt;br /&gt;
=== Details ===&lt;br /&gt;
&lt;br /&gt;
The changes fall into 3 categories:&lt;br /&gt;
* '''Removing packages that create unnecessarily frequent wake up interrupts.'''&lt;br /&gt;
**These interrupts wake up the CPU, preventing it from staying in its most energy efficient state.&lt;br /&gt;
**I used Powertop from [[www.lesswatts.org]] for this task.&lt;br /&gt;
* '''Lowering the voltage supplied to the CPU.''' &lt;br /&gt;
** Lowering CPU voltage does ''not'' impact performance since the clock frequency is unaffected&lt;br /&gt;
**I used phc patches and phctools available at [[www.linux-phc.org]] for this task.&lt;br /&gt;
*'''Turning off radios you do not need'''&lt;br /&gt;
**My X200 has 3 wireless radios: Wifi, Blutooth, Broadband wireless&lt;br /&gt;
== Finding and removing high interrupt packages ==&lt;br /&gt;
===Installing Powertop===&lt;br /&gt;
=== Turning off DRI ===&lt;br /&gt;
===Turning off Gnome Power Manager===&lt;br /&gt;
===Turning off SCIM===&lt;br /&gt;
== Reducing CPU voltage ==&lt;br /&gt;
===Installing phc module patches===&lt;br /&gt;
===Intalling phctools===&lt;br /&gt;
===Experimenting with lower voltages===&lt;br /&gt;
===Making the voltages stick===&lt;br /&gt;
==Turning off the wireless radios==&lt;/div&gt;</summary>
		<author><name>Alain40</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41770</id>
		<title>Extending battery life on X200</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41770"/>
		<updated>2009-03-03T17:04:43Z</updated>

		<summary type="html">&lt;p&gt;Alain40: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
&lt;br /&gt;
I own the beautiful Lenovo X200 and run Ubuntu Intrepid on the machine. Its battery life is significantly lower than that under Windows and many users have reported that it runs hotter than under Windows. &lt;br /&gt;
&lt;br /&gt;
With the changes below and a 9 cell battery I get over 9 hours on an idle system with backlight on but at the lowest level and wireless radios off. Before the changes I was only getting 5 hours. &lt;br /&gt;
&lt;br /&gt;
The system also runs a lot cooler and I do not need tpfan (sw fan control for the ThinkPad available [[Fan_control_scripts|here]]), the built-in hw controller falls back to the lower speeds shortly after a CPU load subsides.&lt;br /&gt;
&lt;br /&gt;
=== Details ===&lt;br /&gt;
&lt;br /&gt;
The changes fall into 3 categories:&lt;br /&gt;
* '''Removing packages that create unnecessarily frequent wake up interrupts.'''&lt;br /&gt;
**These interrupts wake up the CPU, preventing it from staying in its most energy efficient state.&lt;br /&gt;
**I used Powertop from [[www.lesswatts.org]] for this task.&lt;br /&gt;
* '''Lowering the voltage supplied to the CPU.''' &lt;br /&gt;
** Lowering the voltage supplied to the CPU has other positive side effects beside battery life: my system runs a lot cooler and ... &lt;br /&gt;
** Lowering CPU voltage does ''not'' affect performance since the clock runs at the same speeds (22700, 22600, 16000, or 800Mhz for the X200).&lt;br /&gt;
**I used phc patches and phctools available at [[www.linux-phc.org]] for this task.&lt;br /&gt;
*'''Turning off radios you do not need'''&lt;br /&gt;
**The X200 has a button to turn off all radios, best way to reduce power supply when not using wireless&lt;br /&gt;
**&lt;br /&gt;
== Finding and removing high interrupt packages ==&lt;br /&gt;
===Installing Powertop===&lt;br /&gt;
=== Turning off DRI ===&lt;br /&gt;
===Turning off Gnome Power Manager===&lt;br /&gt;
===Turning off SCIM===&lt;br /&gt;
== Reducing CPU voltage ==&lt;br /&gt;
===Installing phc module patches===&lt;br /&gt;
===Intalling phctools===&lt;br /&gt;
===Experimenting with lower voltages===&lt;br /&gt;
===Making the voltages stick===&lt;br /&gt;
==Turning off the wireless radios==&lt;/div&gt;</summary>
		<author><name>Alain40</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41764</id>
		<title>Extending battery life on X200</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41764"/>
		<updated>2009-03-03T03:45:59Z</updated>

		<summary type="html">&lt;p&gt;Alain40: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
&lt;br /&gt;
I own the beautiful Lenovo X200 and run Ubuntu Intrepid on the machine. Its battery life is significantly lower than that under Windows and many users have reported that it runs hotter than under Windows. &lt;br /&gt;
&lt;br /&gt;
With the changes below and a 9 cell battery I get over 9 hours on an idle system with backlight on but at the lowest level. Before the changes I was getting a bit over 5 hours. The system also runs a lot cooler.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Details ===&lt;br /&gt;
&lt;br /&gt;
The changes fall into 3 categories:&lt;br /&gt;
* '''Removing packages that create unnecessarily frequent wake up interrupts.'''&lt;br /&gt;
**These interrupts wake up the CPU, preventing it from staying in its most energy efficient state.&lt;br /&gt;
**I used Powertop from [[www.lesswatts.org]] for this task.&lt;br /&gt;
* '''Lowering the voltage supplied to the CPU.''' &lt;br /&gt;
** Lowering the voltage supplied to the CPU has other positive side effects beside battery life: my system runs a lot cooler and ... I do not need tpfan (sw fan control for the ThinkPad), the built-in hw controller falls back to lower speed shortly after a CPU load subsides.&lt;br /&gt;
** Lowering CPU voltage does ''not'' affect performance since the clock runs at the same speeds (22700, 22600, 16000, or 800Mhz for the X200).&lt;br /&gt;
**I used phc patches and phctools available at [[www.linux-phc.org]] for this task.&lt;br /&gt;
*'''Turning off radios you do not need'''&lt;br /&gt;
**The X200 has a button to turn off all radios, best way to reduce power supply when not using wireless&lt;br /&gt;
**&lt;br /&gt;
== Finding and removing high interrupt packages ==&lt;br /&gt;
===Installing Powertop===&lt;br /&gt;
=== Turning off DRI ===&lt;br /&gt;
===Turning off Gnome Power Manager===&lt;br /&gt;
===Turning off SCIM===&lt;br /&gt;
== Reducing CPU voltage ==&lt;br /&gt;
===Installing phc module patches===&lt;br /&gt;
===Intalling phctools===&lt;br /&gt;
===Experimenting with lower voltages===&lt;br /&gt;
===Making the voltages stick===&lt;br /&gt;
==Turning off the wireless radios==&lt;/div&gt;</summary>
		<author><name>Alain40</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41761</id>
		<title>Extending battery life on X200</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41761"/>
		<updated>2009-03-02T19:55:12Z</updated>

		<summary type="html">&lt;p&gt;Alain40: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
&lt;br /&gt;
I own the beautiful Lenovo X200 and run Ubuntu Intrepid on the machine. Its battery life is significantly lower than that under Windows and many users have reported that it runs hotter than under Windows. &lt;br /&gt;
&lt;br /&gt;
With the changes below and a 9 cell battery I get over 9 hours on an idle system with backlight on but at the lowest level. Before the changes I was getting a bit over 5 hours. The system also runs a lot cooler.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Details ===&lt;br /&gt;
&lt;br /&gt;
The changes fall in 2 categories:&lt;br /&gt;
* '''Removing packages that create unnecessarily frequent wake up interrupts.'''&lt;br /&gt;
**These interrupts wake up the CPU, preventing it from staying in its most energy efficient state.&lt;br /&gt;
**I used Powertop from [[www.lesswatts.org]] for this task.&lt;br /&gt;
* '''Lowering the voltage supplied to the CPU.''' &lt;br /&gt;
** Lowering the voltage supplied to the CPU has other positive side effects beside battery life: my system runs a lot cooler and ... I do not need tpfan (sw fan control for the ThinkPad), the built-in hw controller does a great job and falls back to lower speed shortly after a CPU load subsides.&lt;br /&gt;
** It should be noted that this does ''not'' affect performance since the clock runs at the same speeds (22700, 22600, 16000, or 800Mhz for the X200).&lt;br /&gt;
**I used phc patches and phctools available at [[www.linux-phc.org]] for this task.&lt;br /&gt;
&lt;br /&gt;
== Finding and removing high interrupt packages ==&lt;br /&gt;
===Installing Powertop===&lt;br /&gt;
=== Turning off DRI ===&lt;br /&gt;
===Turning off Gnome Power Manager===&lt;br /&gt;
===Turning off SCIM===&lt;br /&gt;
===Turning off the wireless radios===&lt;br /&gt;
== Reducing CPU voltage ==&lt;br /&gt;
===Installing phc module patches===&lt;br /&gt;
===Intalling phctools===&lt;br /&gt;
===Experimenting with lower voltages===&lt;br /&gt;
===Making the voltages stick===&lt;/div&gt;</summary>
		<author><name>Alain40</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41760</id>
		<title>Extending battery life on X200</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41760"/>
		<updated>2009-03-02T19:54:48Z</updated>

		<summary type="html">&lt;p&gt;Alain40: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
&lt;br /&gt;
I own the beautiful Lenovo X200 and run Ubuntu Intrepid on the machine. Its battery life is significantly lower than that under Windows and many users have reported that it runs hotter than under Windows. &lt;br /&gt;
&lt;br /&gt;
With the changes below and a 9 cell battery I get over 9 hours on an idle system with backlight on but at the lowest level. Before the changes I was getting a bit over 5 hours. The system also runs a lot cooler.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
&lt;br /&gt;
The changes fall in 2 categories:&lt;br /&gt;
* '''Removing packages that create unnecessarily frequent wake up interrupts.'''&lt;br /&gt;
**These interrupts wake up the CPU, preventing it from staying in its most energy efficient state.&lt;br /&gt;
**I used Powertop from [[www.lesswatts.org]] for this task.&lt;br /&gt;
* '''Lowering the voltage supplied to the CPU.''' &lt;br /&gt;
** Lowering the voltage supplied to the CPU has other positive side effects beside battery life: my system runs a lot cooler and ... I do not need tpfan (sw fan control for the ThinkPad), the built-in hw controller does a great job and falls back to lower speed shortly after a CPU load subsides.&lt;br /&gt;
** It should be noted that this does ''not'' affect performance since the clock runs at the same speeds (22700, 22600, 16000, or 800Mhz for the X200).&lt;br /&gt;
**I used phc patches and phctools available at [[www.linux-phc.org]] for this task.&lt;br /&gt;
&lt;br /&gt;
== Finding and removing high interrupt packages ==&lt;br /&gt;
===Installing Powertop===&lt;br /&gt;
=== Turning off DRI ===&lt;br /&gt;
===Turning off Gnome Power Manager===&lt;br /&gt;
===Turning off SCIM===&lt;br /&gt;
===Turning off the wireless radios===&lt;br /&gt;
== Reducing CPU voltage ==&lt;br /&gt;
===Installing phc module patches===&lt;br /&gt;
===Intalling phctools===&lt;br /&gt;
===Experimenting with lower voltages===&lt;br /&gt;
===Making the voltages stick===&lt;/div&gt;</summary>
		<author><name>Alain40</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41759</id>
		<title>Extending battery life on X200</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41759"/>
		<updated>2009-03-02T19:52:46Z</updated>

		<summary type="html">&lt;p&gt;Alain40: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
&lt;br /&gt;
I own the beautiful Lenovo X200 and run Ubuntu Intrepid on the machine. Its battery life is significantly lower than that under Windows and many users have reported that it runs hotter than under Windows. &lt;br /&gt;
&lt;br /&gt;
With the changes below and a 9 cell battery I get over 9 hours on an idle system with backlight on but at the lowest level. Before the changes I was getting a bit over 5 hours. The system also runs a lot cooler.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
&lt;br /&gt;
The changes fall in 2 categories:&lt;br /&gt;
* '''Removing packages that create unnecessarily frequent wake up interrupts.'''&lt;br /&gt;
**These interrupts wake up the CPU, preventing it from staying in its most energy efficient state.&lt;br /&gt;
**I used Powertop from [[www.lesswatts.org]] for this task.&lt;br /&gt;
* '''Lowering the voltage supplied to the CPU.''' &lt;br /&gt;
** Lowering the voltage supplied to the CPU has other positive side effects beside battery life: my system runs a lot cooler and ... I do not need tpfan (sw fan control for the ThinkPad), the built-in hw controller does a great job and falls back to lower speed shortly after a CPU load subsides.&lt;br /&gt;
** It should be noted that this does ''not'' affect performance since the clock runs at the same speeds (22700, 22600, 16000, or 800Mhz for the X200).&lt;br /&gt;
**I used phc patches and phctools available at [[www.linux-phc.org]] for this task.&lt;br /&gt;
&lt;br /&gt;
== Finding and removing high interrupt packages ==&lt;br /&gt;
===Installing Powertop===&lt;br /&gt;
=== Turning off DRI ===&lt;br /&gt;
===Turning off Gnome===&lt;br /&gt;
===Turning off SCIM===&lt;br /&gt;
===Turning off the radios===&lt;br /&gt;
== Reducing CPU voltage ==&lt;/div&gt;</summary>
		<author><name>Alain40</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41758</id>
		<title>Extending battery life on X200</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41758"/>
		<updated>2009-03-02T19:48:39Z</updated>

		<summary type="html">&lt;p&gt;Alain40: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
&lt;br /&gt;
I own the beautiful Lenovo X200 and run Ubuntu Intrepid on the machine. I noted that its batter life was significantly lower than that under Windows and many users have reported that it runs hotter than under Windows. &lt;br /&gt;
&lt;br /&gt;
With the changes below and a 9 cell battery I get over 9 hours on an idle system with backlight on but at the lowest level. Before the changes I was getting a bit over 5 hours.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
&lt;br /&gt;
The changes fall in 2 categories:&lt;br /&gt;
* '''Removing packages that create unnecessarily frequent wake up interrupts.'''&lt;br /&gt;
**These interrupts wake up the CPU, preventing it from staying in its most energy efficient state.&lt;br /&gt;
**I used Powertop from [[www.lesswatts.org]] for this task.&lt;br /&gt;
* '''Lowering the voltage supplied to the CPU.''' &lt;br /&gt;
** Lowering the voltage supplied to the CPU has other positive side effects beside battery life: my system runs a lot cooler and ... I do not need tpfan (sw fan control for the ThinkPad), the built-in hw controller does a great job and falls back to lower speed shortly after a CPU load subsides.&lt;br /&gt;
** It should be noted that this does ''not'' affect performance since the clock runs at the same speeds (22700, 22600, 16000, or 800Mhz for the X200).&lt;br /&gt;
**I used phc patches and phctools available at [[www.linux-phc.org]] for this task.&lt;br /&gt;
&lt;br /&gt;
== Finding and removing high interrupt packages ==&lt;br /&gt;
Installing Powertop&lt;br /&gt;
Turning off 3D&lt;br /&gt;
Turning off Gnome&lt;br /&gt;
&lt;br /&gt;
== Reducing CPU voltage ==&lt;/div&gt;</summary>
		<author><name>Alain40</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41756</id>
		<title>Extending battery life on X200</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41756"/>
		<updated>2009-03-02T19:43:35Z</updated>

		<summary type="html">&lt;p&gt;Alain40: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
&lt;br /&gt;
With the changes below and a 9 cell battery I get over 9 hours on an idle system with backlight on but at the lowest level. Before the changes I was getting a bit over 5 hours.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
&lt;br /&gt;
The changes fall in 2 categories:&lt;br /&gt;
* '''Removing packages that create unnecessarily frequent wake up interrupts.'''&lt;br /&gt;
**These interrupts wake up the CPU, preventing it from staying in its most energy efficient state.&lt;br /&gt;
**I used Powertop from [[www.lesswatts.org]] for this task.&lt;br /&gt;
* '''Lowering the voltage supplied to the CPU.''' &lt;br /&gt;
** Lowering the voltage supplied to the CPU has other positive side effects beside battery life: my system runs a lot cooler and ... I do not need tpfan (sw fan control for the ThinkPad), the built-in hw controller does a great job and falls back to lower speed shortly after a CPU load subsides.&lt;br /&gt;
** It should be noted that this does ''not'' affect performance since the clock runs at the same speeds (22700, 22600, 16000, or 800Mhz for the X200).&lt;br /&gt;
**I used phc patches and phctools available at [[www.linux-phc.org]] for this task.&lt;br /&gt;
&lt;br /&gt;
== Finding and removing high interrupt packages ==&lt;br /&gt;
&lt;br /&gt;
== Reducing CPU voltage ==&lt;/div&gt;</summary>
		<author><name>Alain40</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41752</id>
		<title>Extending battery life on X200</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Extending_battery_life_on_X200&amp;diff=41752"/>
		<updated>2009-03-02T19:37:03Z</updated>

		<summary type="html">&lt;p&gt;Alain40: â†Created page with 'With the changes below and a 9 cell battery I get over 9 hours on an idle system with backlight on but at the lowest level. Before the changes I was getting a bit over 5 h...'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;With the changes below and a 9 cell battery I get over 9 hours on an idle system with backlight on but at the lowest level. Before the changes I was getting a bit over 5 hours.&lt;br /&gt;
&lt;br /&gt;
The changes fall in 2 categories:&lt;br /&gt;
* '''Removing packages that create unnecessarily frequent wake up interrupts.'''&lt;br /&gt;
**These interrupts wake up the CPU, preventing it from staying in its most energy efficient state.&lt;br /&gt;
**I used Powertop from [[www.lesswatts.org]] for this task.&lt;br /&gt;
* '''Lowering the voltage supplied to the CPU.''' &lt;br /&gt;
** Lowering the voltage supplied to the CPU has other positive side effects beside battery life: my system runs a lot cooler and ... I do not need tpfan (sw fan control for the ThinkPad), the built-in hw controller does a great job and falls back to lower speed shortly after a CPU load subsides.&lt;br /&gt;
** It should be noted that this does ''not'' affect performance since the clock runs at the same speeds (22700, 22600, 16000, or 800Mhz for the X200).&lt;br /&gt;
**I used phc patches and phctools available at [[www.linux-phc.org]] for this task.&lt;/div&gt;</summary>
		<author><name>Alain40</name></author>
		
	</entry>
</feed>