<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Flavio Preto's Weblog</title>
	<atom:link href="http://fpreto.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://fpreto.wordpress.com</link>
	<description>Another blog in a giant world, just trying to survive :)</description>
	<lastBuildDate>Tue, 13 Dec 2011 21:19:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='fpreto.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Flavio Preto's Weblog</title>
		<link>http://fpreto.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://fpreto.wordpress.com/osd.xml" title="Flavio Preto&#039;s Weblog" />
	<atom:link rel='hub' href='http://fpreto.wordpress.com/?pushpress=hub'/>
		<item>
		<title>OpenSuSE 11.2 and Lotus Notes 8.5</title>
		<link>http://fpreto.wordpress.com/2009/11/23/opensuse-11-2-and-lotus-notes-8-5/</link>
		<comments>http://fpreto.wordpress.com/2009/11/23/opensuse-11-2-and-lotus-notes-8-5/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 12:38:27 +0000</pubDate>
		<dc:creator>fpreto</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://fpreto.wordpress.com/?p=88</guid>
		<description><![CDATA[Recently I have migrated from Ubuntu to OpenSuSE due to my work requirements. Since OpenSuSE is an RPM-based distro, I thought that Lotus Notes 8.5 would be easier to install. I was mistaken. Lotus Notes 8.5 depends on some libraries that were updated on OpenSuSE 11.2 causing some panels to appears blank. After a weekend [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=88&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I have migrated from Ubuntu to OpenSuSE due to my work requirements.</p>
<p>Since OpenSuSE is an RPM-based distro, I thought that Lotus Notes 8.5 would be easier to install. I was mistaken.</p>
<p>Lotus Notes 8.5 depends on some libraries that were updated on OpenSuSE 11.2 causing some panels to appears blank. After a weekend debuging I was able to isolate the required libraries.</p>
<div id="attachment_89" class="wp-caption aligncenter" style="width: 310px"><a href="http://fpreto.files.wordpress.com/2009/11/notes_85_blank_panel.png"><img class="size-medium wp-image-89" title="Lotus Notes 8.5 Error: Blank Panel" src="http://fpreto.files.wordpress.com/2009/11/notes_85_blank_panel.png?w=300&#038;h=200" alt="Lotus Notes 8.5 Error: Blank Panel" width="300" height="200" /></a><p class="wp-caption-text">Lotus Notes 8.5 Blank Panel</p></div>
<p>The trick is that Lotus Notes requires the following libraries from OpenSuSE 11.1 (note that I am running a 64-bit version, so your required library may be the default one):</p>
<ul>
<li>gtk2-32bit</li>
<li>pango-32bit</li>
</ul>
<p>Go to the<a href="http://download.opensuse.org/distribution/11.1/repo/oss/suse/x86_64/" target="_blank"> OpenSuSE 11.1 repository</a> and grab the packages but do not install. If you install it will break the GTK applications on your desktop.</p>
<p>The trick here is to use these libraries only for Notes. To achieve these we must extract the RPM in a temporary dir, move the lib file to a isolate path and create a wrapper for the Notes to use LD_DIRECTORY_PATH.</p>
<p>So, as a root, do the following:</p>
<blockquote><p># mkdir /tmp/rpmsextracted<br />
# cd /tmp/rpmsextracted<br />
# rpm2cpio &lt;PATH_WHERE_DOWNLOADED_RPMS&gt;/gtk2-32bit*.rpm | cpio -idmv<br />
# rpm2cpio &lt;PATH_WHERE_DOWNLOADED_RPMS&gt;/pango-32bit*.rpm | cpio -idvm<br />
# mkdir /opt/ibm/ibm-lotus-notes-compat<br />
# mv /tmp/rpmsextracted/usr/lib /opt/ibm/ibm-lotus-notes-compat<br />
# chmod 755 /opt/ibm/ibm-lotus-notes-compat/lib<br />
# chown -R root:root /opt/ibm/ibm-lotus-notes-compat<br />
# mv /opt/ibm/lotus/notes/notes /opt/ibm/lotus/notes/notes.real</p></blockquote>
<p>Now you have the libraries on <em>/opt/ibm/ibm-lotus-notes-compat</em>, so lets create a wrapper. Create a new file <em>/opt/ibm/lotus/notes/notes</em> with execute permissions (<em>chmod 755 /opt/ibm/lotus/notes/notes</em>) and the following content:</p>
<blockquote><p>#!/bin/bash</p>
<p>NOTESCOMPAT=/opt/ibm/ibm-lotus-notes-compat/lib<br />
export LD_LIBRARY_PATH=$NOTESCOMPAT:/opt/ibm/lotus/notes:$LD_LIBRARY_PATH<br />
echo $LD_LIBRARY_PATH<br />
/opt/ibm/lotus/notes/notes.real $@</p></blockquote>
<p>That&#8217;s it. Now runs Notes and see if everything is working as expected.</p>
<div id="attachment_93" class="wp-caption aligncenter" style="width: 310px"><a href="http://fpreto.files.wordpress.com/2009/11/notes_86_ok.png"><img class="size-medium wp-image-93" title="Lotus Notes 8.5 Working as Expected" src="http://fpreto.files.wordpress.com/2009/11/notes_86_ok.png?w=300&#038;h=200" alt="Lotus Notes 8.5 Working as Expected" width="300" height="200" /></a><p class="wp-caption-text">Lotus Notes 8.5 Working as Expected</p></div>
<p><em>Final Note: You must have other gtk libraries installed as well. If you are running 64-bits, make sure that you have the 32-bits libs installed.</em></p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpreto.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpreto.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpreto.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpreto.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpreto.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpreto.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpreto.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpreto.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpreto.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpreto.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpreto.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpreto.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpreto.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpreto.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=88&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpreto.wordpress.com/2009/11/23/opensuse-11-2-and-lotus-notes-8-5/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a8559f8cc1e1fb6991447031900c5d4?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">fpreto</media:title>
		</media:content>

		<media:content url="http://fpreto.files.wordpress.com/2009/11/notes_85_blank_panel.png?w=300" medium="image">
			<media:title type="html">Lotus Notes 8.5 Error: Blank Panel</media:title>
		</media:content>

		<media:content url="http://fpreto.files.wordpress.com/2009/11/notes_86_ok.png?w=300" medium="image">
			<media:title type="html">Lotus Notes 8.5 Working as Expected</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu 8.10 and the Sony Ericsson MD300 modem</title>
		<link>http://fpreto.wordpress.com/2008/11/17/ubuntu-810-and-the-sony-ericsson-md300-modem/</link>
		<comments>http://fpreto.wordpress.com/2008/11/17/ubuntu-810-and-the-sony-ericsson-md300-modem/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 10:21:11 +0000</pubDate>
		<dc:creator>fpreto</dc:creator>
				<category><![CDATA[Tricks and Tips]]></category>
		<category><![CDATA[3G]]></category>
		<category><![CDATA[Intrepid]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MD300]]></category>
		<category><![CDATA[Modem]]></category>
		<category><![CDATA[Sony Ericsson]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[udev]]></category>

		<guid isPermaLink="false">http://fpreto.wordpress.com/?p=75</guid>
		<description><![CDATA[Since the 3G network is growing fast here in Brazil I decided to give it a try. My carrier offered me a Sony Ericsson MD300 modem as part of the service. Then I had the mission to make it work under Linux, in specific the Ubuntu 8.10 (my current distribution). The MD300 modem is not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=75&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since the 3G network is growing fast here in Brazil I decided to give it a try. My carrier offered me a Sony Ericsson MD300 modem as part of the service. Then I had the mission to make it work under Linux, in specific the Ubuntu 8.10 (my current distribution).</p>
<p>The MD300 modem is not officially supported but as I will show bellow, it is quite well compatbile with the Ubuntu 8.10. This USB device comes with 3 different operation modes. The defaul mode is the 1, which the device acts like a flash drive and of course we are not interested. Then we have to tell the Linux to switch to the mode 3 (serial modem) when the new device is plugged. To do so, we create an udev rule. It is quite easy.</p>
<p>Create a udev rule&#8217;s file (on the /etc/udev/rules.d) for the device</p>
<blockquote><p>sudo gedit /etc/udev/rules.d/50-md300modem.rules</p></blockquote>
<p>Then put the following content on the rule&#8217;s file:</p>
<blockquote><p>ACTION!=&#8221;add&#8221;, GOTO=&#8221;3G_End&#8221;<br />
BUS==&#8221;usb&#8221;, SYSFS{idProduct}==&#8221;d0cf&#8221;, SYSFS{idVendor}==&#8221;0fce&#8221;, NAME=&#8221;%k&#8221;,SYMLINK=&#8221;modem3G-%n&#8221;, PROGRAM=&#8221;/bin/sh -c &#8216;echo 3 &gt; /sys/%p/device/bConfigurationValue&#8217;&#8221;<br />
LABEL=&#8221;3G_End&#8221;</p></blockquote>
<p>Be careful with the like breaks. The text above has only 3 lines.</p>
<p>After those steps, reboot your machine so the new rules can be applied and connect your modem at an USB port. Now it should be working and two devices must have appeader (/dev/ttyACM0 and /dev/ttyACM1)</p>
<br />Posted in Tricks and Tips Tagged: 3G, Intrepid, Linux, MD300, Modem, Sony Ericsson, Ubuntu, udev <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpreto.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpreto.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpreto.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpreto.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpreto.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpreto.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpreto.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpreto.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpreto.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpreto.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpreto.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpreto.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpreto.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpreto.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=75&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpreto.wordpress.com/2008/11/17/ubuntu-810-and-the-sony-ericsson-md300-modem/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a8559f8cc1e1fb6991447031900c5d4?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">fpreto</media:title>
		</media:content>
	</item>
		<item>
		<title>YABP: MainStream</title>
		<link>http://fpreto.wordpress.com/2008/10/10/yabp-mainstream/</link>
		<comments>http://fpreto.wordpress.com/2008/10/10/yabp-mainstream/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 21:41:14 +0000</pubDate>
		<dc:creator>fpreto</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Band]]></category>
		<category><![CDATA[MainStream]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Rock]]></category>

		<guid isPermaLink="false">http://fpreto.wordpress.com/?p=73</guid>
		<description><![CDATA[Yet another band project is starting. The MainStream (no idea where the name came from) is a band from some guys from my work. They recorded a demo with 2 musics, although it is not finishd I really enjoyed it. In my humble opinion, they are trying to make the type of music that is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=73&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yet another band project is starting. The MainStream (no idea where the name came from) is a band from some guys from my work. They recorded a demo with 2 musics, although it is not finishd I really enjoyed it. In my humble opinion, they are trying to make the type of music that is pop without forgetting the roots of metal and rock. I wish a lot of lucky on this project!</p>
<p>If you wanna listen the recorded music, just go to the <a href="http://blog.afmacedo.com/?p=14" target="_blank">Andre&#8217;s Blog</a> and download them.</p>
<br />Posted in News Tagged: Band, MainStream, MP3, Music, Rock <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpreto.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpreto.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpreto.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpreto.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpreto.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpreto.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpreto.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpreto.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpreto.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpreto.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpreto.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpreto.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpreto.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpreto.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=73&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpreto.wordpress.com/2008/10/10/yabp-mainstream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a8559f8cc1e1fb6991447031900c5d4?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">fpreto</media:title>
		</media:content>
	</item>
		<item>
		<title>e1000e driver is back on Intrepid</title>
		<link>http://fpreto.wordpress.com/2008/10/06/e1000e-driver-is-back-on-intrepid/</link>
		<comments>http://fpreto.wordpress.com/2008/10/06/e1000e-driver-is-back-on-intrepid/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 16:19:17 +0000</pubDate>
		<dc:creator>fpreto</dc:creator>
				<category><![CDATA[Tricks and Tips]]></category>
		<category><![CDATA[8.10]]></category>
		<category><![CDATA[Alpha]]></category>
		<category><![CDATA[driver]]></category>
		<category><![CDATA[e1000e]]></category>
		<category><![CDATA[ethernet]]></category>
		<category><![CDATA[Intrepid]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://fpreto.wordpress.com/?p=67</guid>
		<description><![CDATA[Since my last kernel update the driver e1000e was not blacklist anymore. I am not sure if it is the final solution. This is the bug fix solution (from kernel.org): Set the hardware to ignore all write/erase cycles to the GbE region in the ICHx NVM. This feature can be disabled by the WriteProtectNVM module [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=67&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since my last kernel update the driver e1000e was not blacklist anymore. I am not sure if it is the final solution. This is the bug fix solution (from <a href="http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4a7703582836f55a1cbad0e2c1c6ebbee3f9b3a7" target="_blank">kernel.org</a>):</p>
<blockquote><p><em>Set the hardware to ignore all write/erase cycles to the GbE region in the ICHx NVM.  This feature can be disabled by the WriteProtectNVM module parameter (enabled by default) only after a hardware reset, but the machine must be power cycled before trying to enable writes.</em></p></blockquote>
<p>Although the e1000e was unblacklisted I had to modprobe it again to work on my Ubuntu Intrepid. On a terminal:</p>
<blockquote><p>sudo modprobe e1000e</p></blockquote>
<br />Posted in Tricks and Tips Tagged: 8.10, Alpha, driver, e1000e, ethernet, Intrepid, Solution, Ubuntu <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpreto.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpreto.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpreto.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpreto.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpreto.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpreto.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpreto.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpreto.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpreto.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpreto.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpreto.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpreto.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpreto.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpreto.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=67&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpreto.wordpress.com/2008/10/06/e1000e-driver-is-back-on-intrepid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a8559f8cc1e1fb6991447031900c5d4?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">fpreto</media:title>
		</media:content>
	</item>
		<item>
		<title>Shockwave Theory applied on Traffic Jams</title>
		<link>http://fpreto.wordpress.com/2008/10/06/shockwave-theory-applied-on-traffic-jams/</link>
		<comments>http://fpreto.wordpress.com/2008/10/06/shockwave-theory-applied-on-traffic-jams/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 03:17:56 +0000</pubDate>
		<dc:creator>fpreto</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Japanese Scientists]]></category>
		<category><![CDATA[Shockwave]]></category>
		<category><![CDATA[Traffic Jam]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://fpreto.wordpress.com/?p=63</guid>
		<description><![CDATA[Japanese Scientists executed an experiment to demonstrate that some Traffic Jams can appear from nowhere due the shockwave principle. It&#8217;s amazing how the variation of speed may induce a complete stop on the traffic. Posted in Uncategorized Tagged: Japanese Scientists, Shockwave, Traffic Jam, Video, YouTube<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=63&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://fpreto.wordpress.com/2008/10/06/shockwave-theory-applied-on-traffic-jams/"><img src="http://img.youtube.com/vi/Suugn-p5C1M/2.jpg" alt="" /></a></span>
<p>Japanese Scientists executed an experiment to demonstrate that some Traffic Jams can appear from nowhere due the shockwave principle. It&#8217;s amazing how the variation of speed may induce a complete stop on the traffic.</p>
<br />Posted in Uncategorized Tagged: Japanese Scientists, Shockwave, Traffic Jam, Video, YouTube <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpreto.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpreto.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpreto.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpreto.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpreto.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpreto.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpreto.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpreto.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpreto.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpreto.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpreto.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpreto.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpreto.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpreto.wordpress.com/63/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=63&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpreto.wordpress.com/2008/10/06/shockwave-theory-applied-on-traffic-jams/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a8559f8cc1e1fb6991447031900c5d4?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">fpreto</media:title>
		</media:content>
	</item>
		<item>
		<title>XBMC, the solution for a media center</title>
		<link>http://fpreto.wordpress.com/2008/10/05/xbmc-the-solution-for-a-media-center/</link>
		<comments>http://fpreto.wordpress.com/2008/10/05/xbmc-the-solution-for-a-media-center/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 02:15:07 +0000</pubDate>
		<dc:creator>fpreto</dc:creator>
				<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Media Center]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[XBMC]]></category>

		<guid isPermaLink="false">http://fpreto.wordpress.com/?p=57</guid>
		<description><![CDATA[Last week Murillo told me about the XBMC project and since my media center was lacking of a good software to browse my collection I decided to install it. My set up is composed by a Mac Mini running Mac OS X. Front Row is terrible, it does not support a lot of formats and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=57&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter" title="Screenshot" src="http://farm4.static.flickr.com/3144/2876723351_1661633b32_o_d.png" alt="XBMC" width="385" height="215" /></p>
<p>Last week <a href="http://mfbernardes.com/" target="_blank">Murillo</a> told me about the XBMC project and since my media center was lacking of a good software to browse my collection I decided to install it. My set up is composed by a Mac Mini running Mac OS X. Front Row is terrible, it does not support a lot of formats and some media codecs are very slow.</p>
<p>My first impression on XBMC was very good. The interface is totally eye-candy with support for skins and other customizations. The support for file formats and codecs are so extensive that if I had to describe it here I would spend a lot of time <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . But, for my purpose it only have to play mkv (matroska) in 720p smoothly, which it did flawless.</p>
<p>Also, the support for plugins and scripts enables the XBMC to play YouTube videos, download lyrics and subtitles, and much more. And the best thing is that the plugins are written in python!</p>
<p>Of course the XMBC has some issues since it is on a beta version. I witnessed some freezes on playback and on some scripts. Also, the navigation using mouse is not fully operational (at least on the skins available). Some subtitles don&#8217;t work very well and are not displayed.</p>
<p>Check out the project at <a href="http://xbmc.org/" target="_blank">http://xbmc.org/</a> .</p>
<br />Posted in Analysis Tagged: Mac OS, Media Center, Music, Video, XBMC <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpreto.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpreto.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpreto.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpreto.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpreto.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpreto.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpreto.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpreto.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpreto.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpreto.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpreto.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpreto.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpreto.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpreto.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=57&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpreto.wordpress.com/2008/10/05/xbmc-the-solution-for-a-media-center/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a8559f8cc1e1fb6991447031900c5d4?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">fpreto</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3144/2876723351_1661633b32_o_d.png" medium="image">
			<media:title type="html">Screenshot</media:title>
		</media:content>
	</item>
		<item>
		<title>Video: Airtraffic density over 24h, just crazy!</title>
		<link>http://fpreto.wordpress.com/2008/09/27/video-airtraffic-density-over-24h-just-crazy/</link>
		<comments>http://fpreto.wordpress.com/2008/09/27/video-airtraffic-density-over-24h-just-crazy/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 16:37:37 +0000</pubDate>
		<dc:creator>fpreto</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Air craft]]></category>
		<category><![CDATA[Air traffic]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://fpreto.wordpress.com/?p=53</guid>
		<description><![CDATA[This video on YouTube shows the air crafts on the world over a period of 24 hours. It is amazing and terrifying. The amount of information required to manage all those air crafts is so huge, that even the smallest mistakes may lead to huge accidents. Posted in Misc, Uncategorized Tagged: Air craft, Air traffic, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=53&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This video on YouTube shows the air crafts on the world over a period of 24 hours.</p>
<span style="text-align:center; display: block;"><a href="http://fpreto.wordpress.com/2008/09/27/video-airtraffic-density-over-24h-just-crazy/"><img src="http://img.youtube.com/vi/1XBwjQsOEeg/2.jpg" alt="" /></a></span>
<p>It is amazing and terrifying. The amount of information required to manage all those air crafts is so huge, that even the smallest mistakes may lead to huge accidents.</p>
<br />Posted in Misc, Uncategorized Tagged: Air craft, Air traffic, Video, YouTube <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpreto.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpreto.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpreto.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpreto.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpreto.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpreto.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpreto.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpreto.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpreto.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpreto.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpreto.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpreto.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpreto.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpreto.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=53&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpreto.wordpress.com/2008/09/27/video-airtraffic-density-over-24h-just-crazy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a8559f8cc1e1fb6991447031900c5d4?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">fpreto</media:title>
		</media:content>
	</item>
		<item>
		<title>Flash High CPU Usage on Intrepid: a better solution</title>
		<link>http://fpreto.wordpress.com/2008/09/27/flash-high-cpu-usage-on-intrepid-a-better-solution/</link>
		<comments>http://fpreto.wordpress.com/2008/09/27/flash-high-cpu-usage-on-intrepid-a-better-solution/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 15:47:06 +0000</pubDate>
		<dc:creator>fpreto</dc:creator>
				<category><![CDATA[Tricks and Tips]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Intrepid]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://fpreto.wordpress.com/?p=50</guid>
		<description><![CDATA[There is a better alternative to solve the Flash High CPU usage on the Ubuntu Intrepid 8.10, using a possible official patch. This patch will generate a new .deb that can be installed and removed using the Debian&#8217;s Package Manager. To quickly install just follow the commands below on a Terminal (Applications -&#62; Accessories -&#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=50&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There is a better alternative to solve the Flash High CPU usage on the Ubuntu Intrepid 8.10, using a possible official patch. This patch will generate a new .deb that can be installed and removed using the Debian&#8217;s Package Manager. To quickly install just follow the commands below on a Terminal (Applications -&gt; Accessories -&gt; Terminal).</p>
<blockquote><p>sudo apt-get install build-essential fakeroot devscripts<br />
cd /tmp<br />
wget http://launchpadlibrarian.net/17178225/flashplugin-nonfree_10.0.1.218%2B10.0.0.569ubuntu1.debdiff<br />
apt-get source flashplugin-nonfree<br />
sudo apt-get build-dep flashplugin-nonfree<br />
cd flashplugin-nonfree-10.0.1.218+10.0.0.525ubuntu1<br />
patch -p1 &lt; ../flashplugin-nonfree_10.0.1.218+10.0.0.569ubuntu1.debdiff<br />
debuild -uc -us<br />
sudo dpkg -i ../flashplugin-nonfree_10.0.1.218+10.0.0.569ubuntu1_i386.deb</p></blockquote>
<p>This will generate a .deb and install it.</p>
<p>Update: patch was misspelled. Thanks Doug!<strong><strong></strong></strong><strong></strong><strong></strong></p>
<br />Posted in Tricks and Tips Tagged: Flash, Intrepid, Linux, Solution, Ubuntu <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpreto.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpreto.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpreto.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpreto.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpreto.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpreto.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpreto.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpreto.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpreto.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpreto.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpreto.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpreto.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpreto.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpreto.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=50&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpreto.wordpress.com/2008/09/27/flash-high-cpu-usage-on-intrepid-a-better-solution/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a8559f8cc1e1fb6991447031900c5d4?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">fpreto</media:title>
		</media:content>
	</item>
		<item>
		<title>e1000e banned on 2.6.27-4</title>
		<link>http://fpreto.wordpress.com/2008/09/24/e1000e-banned-on-2627-4/</link>
		<comments>http://fpreto.wordpress.com/2008/09/24/e1000e-banned-on-2627-4/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 13:30:31 +0000</pubDate>
		<dc:creator>fpreto</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[e1000e]]></category>
		<category><![CDATA[Intrepid]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://fpreto.wordpress.com/?p=47</guid>
		<description><![CDATA[As a desperated measure, the maintainers of Ubuntu Kernel decided to put the e1000e driver on the blacklist. It is a temporary measure to avoid more problems, but also disabled ethernet on a huge number o machines (including mine ). I hope this issue will be solved as soon as possible. Posted in News Tagged: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=47&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As a desperated measure, the maintainers of Ubuntu Kernel decided to put the e1000e driver on the blacklist. It is a temporary measure to avoid more problems, but also disabled ethernet on a huge number o machines (including mine <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).</p>
<p>I hope this issue will be solved as soon as possible.</p>
<br />Posted in News Tagged: e1000e, Intrepid, kernel, Linux, Ubuntu <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpreto.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpreto.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpreto.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpreto.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpreto.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpreto.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpreto.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpreto.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpreto.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpreto.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpreto.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpreto.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpreto.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpreto.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=47&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpreto.wordpress.com/2008/09/24/e1000e-banned-on-2627-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a8559f8cc1e1fb6991447031900c5d4?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">fpreto</media:title>
		</media:content>
	</item>
		<item>
		<title>Intrepid ships hardware-blower driver</title>
		<link>http://fpreto.wordpress.com/2008/09/23/intrepid-ships-hardware-blower-driver/</link>
		<comments>http://fpreto.wordpress.com/2008/09/23/intrepid-ships-hardware-blower-driver/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 21:17:28 +0000</pubDate>
		<dc:creator>fpreto</dc:creator>
				<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Alpha]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[driver]]></category>
		<category><![CDATA[e1000e]]></category>
		<category><![CDATA[Intrepid]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://fpreto.wordpress.com/?p=41</guid>
		<description><![CDATA[In the Ubuntu 8.10 Intrepid Alpha, the kernel used is the 2.6.27 which contains a very dangerous version of the e1000e driver. This specific version of the driver maps the firmware of the hardware on memory and gives write access to it, so a misbehaved kernel (which is common in a development branch) can overwrite [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=41&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In the Ubuntu 8.10 Intrepid Alpha, the kernel used is the 2.6.27 which contains a very dangerous version of the e1000e driver. This specific version of the driver maps the firmware of the hardware on memory and gives write access to it, so a misbehaved kernel (which is common in a development branch) can overwrite the firmware.</p>
<p>The attempts to recover the firmware using the Intel&#8217;s tools just make the things worse and brick the entire network card (the card is not recognized as PCI device anymore).</p>
<p>In other words, the driver allows a sequence of events to destroy the network card, which in many cases is onboard or at a laptop (there is already some occurrences of this fact).</p>
<p>You can track the bug on <a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/263555" target="_blank">LaunchPad</a>.</p>
<br />Posted in Analysis Tagged: Alpha, bug, driver, e1000e, Intrepid, kernel, Linux, Ubuntu <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpreto.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpreto.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpreto.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpreto.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpreto.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpreto.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpreto.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpreto.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpreto.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpreto.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpreto.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpreto.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpreto.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpreto.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpreto.wordpress.com&amp;blog=4886337&amp;post=41&amp;subd=fpreto&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpreto.wordpress.com/2008/09/23/intrepid-ships-hardware-blower-driver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a8559f8cc1e1fb6991447031900c5d4?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">fpreto</media:title>
		</media:content>
	</item>
	</channel>
</rss>
