<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How To Analyse &amp; Reduce Your Computer&#8217;s Power Consumption [Linux]</title>
	<atom:link href="http:///tag/how-to-analyse-and-reduce-your-computers-power-consumption-linux/feed/" rel="self" type="application/rss+xml" />
	<link>/tag/how-to-analyse-and-reduce-your-computers-power-consumption-linux/</link>
	<description>Cool Websites, Software and Internet Tips</description>
	<lastBuildDate>Sat, 11 Feb 2012 06:26:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Mackenzie</title>
		<link>/tag/how-to-analyse-and-reduce-your-computers-power-consumption-linux/#comment-382110</link>
		<dc:creator>Mackenzie</dc:creator>
		<pubDate>Wed, 08 Apr 2009 23:26:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=15287#comment-382110</guid>
		<description>CPU frequency scaling?  Google says: http://www.ubuntugeek.com/howto-change-cpu-frequency-scaling-in-ubuntu.html</description>
		<content:encoded><![CDATA[<p>CPU frequency scaling?  Google says: <a href="http://www.ubuntugeek.com/howto-change-cpu-frequency-scaling-in-ubuntu.html" rel="nofollow">http://www.ubuntugeek.com/howto-change-cpu-frequency-scaling-in-ubuntu.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mchlbk</title>
		<link>/tag/how-to-analyse-and-reduce-your-computers-power-consumption-linux/#comment-382047</link>
		<dc:creator>mchlbk</dc:creator>
		<pubDate>Wed, 08 Apr 2009 12:52:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=15287#comment-382047</guid>
		<description>Been looking for a way to reduce my laptop&#039;s power consumption when running *buntu.

When running Vista I undervolt the CPU using Rightmark CPU Clock Utility. That way the max core temp. is 60-65 degrees Celcius (140-149F). Without Rightmark max temperature is close to 100C (212F).

Ideas on how to undervolt in linux?</description>
		<content:encoded><![CDATA[<p>Been looking for a way to reduce my laptop&#8217;s power consumption when running *buntu.</p>
<p>When running Vista I undervolt the CPU using Rightmark CPU Clock Utility. That way the max core temp. is 60-65 degrees Celcius (140-149F). Without Rightmark max temperature is close to 100C (212F).</p>
<p>Ideas on how to undervolt in linux?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mackenzie</title>
		<link>/tag/how-to-analyse-and-reduce-your-computers-power-consumption-linux/#comment-382015</link>
		<dc:creator>Mackenzie</dc:creator>
		<pubDate>Wed, 08 Apr 2009 03:43:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=15287#comment-382015</guid>
		<description>I blacklist the Bluetooth module for both security and battery life.

When I&#039;m not using wireless (ex: I&#039;m on a train/plane), I unload my wireless module as well.  My boyfriend unloads his ethernet module, but I usually forget to do this.

For me, those would be:
# modprobe -r btusb iwlagn sky2

If it has to be quiet and I don&#039;t have headphones, well, no point in having sound drivers, is there?
# alsa force-unload
Though warning, this will kill all running sound apps (including any volume mixer applets you have on your panel).

You can load modules again when you&#039;re done with:
# modprobe 
Giving it a list of modules where it says .

Warning: If you use the K option (disable polling CD ROM drive), you will need to manually mount your CDs with:
sudo mount -t iso9660 /dev/cdrom /media/cdrom
or something close to that (check your mountpoint and device nodes).

Note that &quot;#&quot; means at a root prompt.  Ubuntu users, that means &quot;use sudo&quot;.

If you want to see what modules are in use, the &quot;lsmod&quot; command will tell you.  Here are common things you can look for:
&lt;b&gt;WiFi:&lt;/b&gt;
Intel: lsmod &#124; grep &quot;iwl\&#124;ipw&quot;
Atheros: lsmod &#124; grep &quot;ath\&#124;madwifi&quot;
Prism or Orinoco chipsets: lsmod &#124; grep &quot;orinoco\&#124;hostap\&#124;wlan&quot;
Broadcom: lsmod &#124; grep &quot;^b*43*&quot;
Realtek or Ralink chipsets: lsmod &#124; grep &quot;^rt&quot;
&lt;b&gt;Audio:&lt;/b&gt;
lsmod &#124; grep &quot;^snd&quot;
&lt;b&gt;Ethernet:&lt;/b&gt;
sky2 is one of the most common for laptops</description>
		<content:encoded><![CDATA[<p>I blacklist the Bluetooth module for both security and battery life.</p>
<p>When I&#8217;m not using wireless (ex: I&#8217;m on a train/plane), I unload my wireless module as well.  My boyfriend unloads his ethernet module, but I usually forget to do this.</p>
<p>For me, those would be:<br />
# modprobe -r btusb iwlagn sky2</p>
<p>If it has to be quiet and I don&#8217;t have headphones, well, no point in having sound drivers, is there?<br />
# alsa force-unload<br />
Though warning, this will kill all running sound apps (including any volume mixer applets you have on your panel).</p>
<p>You can load modules again when you&#8217;re done with:<br />
# modprobe<br />
Giving it a list of modules where it says .</p>
<p>Warning: If you use the K option (disable polling CD ROM drive), you will need to manually mount your CDs with:<br />
sudo mount -t iso9660 /dev/cdrom /media/cdrom<br />
or something close to that (check your mountpoint and device nodes).</p>
<p>Note that &#8220;#&#8221; means at a root prompt.  Ubuntu users, that means &#8220;use sudo&#8221;.</p>
<p>If you want to see what modules are in use, the &#8220;lsmod&#8221; command will tell you.  Here are common things you can look for:<br />
<b>WiFi:</b><br />
Intel: lsmod | grep &#8220;iwl\|ipw&#8221;<br />
Atheros: lsmod | grep &#8220;ath\|madwifi&#8221;<br />
Prism or Orinoco chipsets: lsmod | grep &#8220;orinoco\|hostap\|wlan&#8221;<br />
Broadcom: lsmod | grep &#8220;^b*43*&#8221;<br />
Realtek or Ralink chipsets: lsmod | grep &#8220;^rt&#8221;<br />
<b>Audio:</b><br />
lsmod | grep &#8220;^snd&#8221;<br />
<b>Ethernet:</b><br />
sky2 is one of the most common for laptops</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vadim P.</title>
		<link>/tag/how-to-analyse-and-reduce-your-computers-power-consumption-linux/#comment-381998</link>
		<dc:creator>Vadim P.</dc:creator>
		<pubDate>Wed, 08 Apr 2009 00:15:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=15287#comment-381998</guid>
		<description>It is useful when you&#039;re on batteries and want to save more.</description>
		<content:encoded><![CDATA[<p>It is useful when you&#8217;re on batteries and want to save more.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (Requested URI is rejected)
Database Caching 1/5 queries in 0.006 seconds using apc
Object Caching 206/207 objects using disk: basic
Content Delivery Network via main.makeuseoflimited.netdna-cdn.com

Served from: www.makeuseof.com @ 2012-02-11 07:17:36 -->
