<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Albertux~# ./Blog &#187; hardware</title>
	<atom:link href="http://albertux.ayalasoft.com/es/tag/hardware/feed/" rel="self" type="application/rss+xml" />
	<link>http://albertux.ayalasoft.com</link>
	<description>61 20 64 65 76 65 6c 6f 70 65 72 20 6c 69 66 65</description>
	<lastBuildDate>Thu, 01 Jul 2010 16:23:33 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.5.3" -->
	<copyright>2008 </copyright>
	<managingEditor>albertoi7@gmail.com (Albertux~# ./Blog)</managingEditor>
	<webMaster>albertoi7@gmail.com (Albertux~# ./Blog)</webMaster>
	<category>posts</category>
	<ttl>1440</ttl>
	<image>
		<url>http://ayalasoft.com/img/podcast02.jpg</url>
		<title>Albertux~# ./Blog &#187; hardware</title>
		<link>http://albertux.ayalasoft.com</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary>After three days without programming, life becomes meaningless.</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Technology">
		<itunes:category text="Software How-To" />
	</itunes:category>
	<itunes:category text="Technology">
		<itunes:category text="Podcasting" />
	</itunes:category>
	<itunes:author>Albertux~# ./Blog</itunes:author>
	<itunes:owner>
		<itunes:name>Albertux~# ./Blog</itunes:name>
		<itunes:email>albertoi7@gmail.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://ayalasoft.com/img/podcast01.jpg" />
		<item>
		<title>Toshiba Fan On Ubuntu</title>
		<link>http://albertux.ayalasoft.com/es/2008/09/28/toshiba-fan-on-ubuntu/</link>
		<comments>http://albertux.ayalasoft.com/es/2008/09/28/toshiba-fan-on-ubuntu/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 21:09:15 +0000</pubDate>
		<dc:creator>albertux</dc:creator>
				<category><![CDATA[hardware]]></category>
		<category><![CDATA[unix/linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[toshiba]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://albertux.ayalasoft.com/es/?p=611</guid>
		<description><![CDATA[Toshiba Fan On Ubuntu You need to install toshset include on toshutils (do you have lm-sensors ?) sudo apt-get install toshutils This script make the fan run high, low or normal #!/bin/bash case $1 in h&#41; sudo toshset -fan 4 # high ;; n&#41; sudo toshset -fan 5 # normal ;; l&#41; sudo toshset -fan [...]<p><a href="http://albertux.ayalasoft.com/es/2008/09/28/toshiba-fan-on-ubuntu/">Toshiba Fan On Ubuntu</a> is a post from: <a href="http://albertux.ayalasoft.com">Albertux~# ./Blog</a></p>
]]></description>
			<content:encoded><![CDATA[<p><strong>Toshiba Fan On Ubuntu</strong></p>
<p><img src="http://ayalasoft.com/img/cputemp.jpg"></p>
<p>You need to install toshset include on toshutils (do you have lm-sensors ?)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> toshutils</pre></div></div>

<p>This script make the fan run high, low or normal</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #000000; font-weight: bold;">case</span> $<span style="color: #000000;">1</span> <span style="color: #000000; font-weight: bold;">in</span>
	h<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> toshset <span style="color: #660033;">-fan</span> <span style="color: #000000;">4</span> <span style="color: #666666; font-style: italic;"># high</span>
	<span style="color: #000000; font-weight: bold;">;;</span>
	n<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> toshset <span style="color: #660033;">-fan</span> <span style="color: #000000;">5</span> <span style="color: #666666; font-style: italic;"># normal</span>
	<span style="color: #000000; font-weight: bold;">;;</span>
	l<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> toshset <span style="color: #660033;">-fan</span> <span style="color: #000000;">6</span> <span style="color: #666666; font-style: italic;"># low</span>
	<span style="color: #000000; font-weight: bold;">;;</span>
<span style="color: #000000; font-weight: bold;">esac</span></pre></div></div>

<p>If you live in warn places, &#8220;~$ script.sh h&#8221; could be help you a little don&#8217;t use all time this option, to normalize your fan run &#8220;~$script.sh n&#8221;.</p>
<p>There are other tools on toshset &#8220;man toshset&#8221;.</p>
<p><a href="http://albertux.ayalasoft.com/es/2008/09/28/toshiba-fan-on-ubuntu/">Toshiba Fan On Ubuntu</a> is a post from: <a href="http://albertux.ayalasoft.com">Albertux~# ./Blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://albertux.ayalasoft.com/es/2008/09/28/toshiba-fan-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
