<?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/"
	>

<channel>
	<title>paulocabido.com &#187; linux</title>
	<atom:link href="http://www.paulocabido.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.paulocabido.com</link>
	<description>I do all my own stunts!</description>
	<lastBuildDate>Fri, 27 Jan 2012 17:22:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Maildir &#8211; Resending emails via formail and procmail</title>
		<link>http://www.paulocabido.com/linux/maildir-resending-emails-via-formail-and-procmail/</link>
		<comments>http://www.paulocabido.com/linux/maildir-resending-emails-via-formail-and-procmail/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 15:32:23 +0000</pubDate>
		<dc:creator>pcabido</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[EN]]></category>
		<category><![CDATA[grep]]></category>
		<category><![CDATA[maildir]]></category>
		<category><![CDATA[postfix]]></category>
		<category><![CDATA[procmail]]></category>

		<guid isPermaLink="false">http://www.paulocabido.com/?p=1245</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fmaildir-resending-emails-via-formail-and-procmail%2F&title=Maildir+-+Resending+emails+via+formail+and+procmail&desc=I%27m+sharing+this+because+someone+might+find+it+as+being+useful+info...%0D%0A%0D%0AEarlier%C2%A0today+I+had+to+resend+some+emails+from+a+users+Maildir+folder+to+an+external+email+account.+The+idea+is+to+forward+th&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>I&#8217;m sharing this because someone might find it as being useful info&#8230; Earlier today I had to resend some emails from a users Maildir folder to an external email account. The idea is to forward the existing email in a certain Maildir folder. To do this I used formail and procmail. I added some basic settings [...]]]></description>
			<content:encoded><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fmaildir-resending-emails-via-formail-and-procmail%2F&title=Maildir+-+Resending+emails+via+formail+and+procmail&desc=I%27m+sharing+this+because+someone+might+find+it+as+being+useful+info...%0D%0A%0D%0AEarlier%C2%A0today+I+had+to+resend+some+emails+from+a+users+Maildir+folder+to+an+external+email+account.+The+idea+is+to+forward+th&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p>I&#8217;m sharing this because someone might find it as being useful info&#8230;</p>
<p>Earlier today I had to resend some emails from a users Maildir folder to an external email account. The idea is to forward the existing email in a certain Maildir folder.</p>
<p>To do this I used formail and procmail.</p>
<p>I added some basic settings to the .procmailrc so that all filtered email will be forwarded to the email I want. I looks like this:</p>
<pre>MAILDIR=$HOME/Maildir

:0
! user@example.com</pre>
<p>From inside the folder (Maildir folder) that contains the email that I wanted to send, I executed the command:</p>
<pre>grep -v ^Delivered-To FILE | formail -ds /usr/bin/procmail</pre>
<p>The grep -v ^Delivered-To instead of a cat is done to remove the Delivered-To line in the begining of any line.</p>
<p>And what if there are thousands of emails in the folder?</p>
<pre>for file in *; do grep -v ^Delivered-To $file | formail -ds /usr/bin/procmail;
done</pre>
<p>There are many tweaks that can be applied to this solution, I just didn&#8217;t need them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paulocabido.com/linux/maildir-resending-emails-via-formail-and-procmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I moved on to Fedora</title>
		<link>http://www.paulocabido.com/linux/i-moved-on-to-fedora/</link>
		<comments>http://www.paulocabido.com/linux/i-moved-on-to-fedora/#comments</comments>
		<pubDate>Sun, 01 May 2011 21:41:59 +0000</pubDate>
		<dc:creator>pcabido</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Fedora 15]]></category>

		<guid isPermaLink="false">http://www.paulocabido.com/?p=1165</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fi-moved-on-to-fedora%2F&title=I+moved+on+to+Fedora&desc=It+happened.+After+years+of+Debian+and+Ubuntu+I+changed+my+personal+laptop%27s+Linux+distribution+to+Fedora.%0D%0A%0D%0AWhy+I+changed+to+Fedora%0D%0A%0D%0A%09GNOME+3%21+GNOME+3%27s+integration+in+Fedora+15+%28beta%29+was+the+bes&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>It happened. After years of Debian and Ubuntu I changed my personal laptop&#8217;s Linux distribution to Fedora. Why I changed to Fedora GNOME 3! GNOME 3&#8242;s integration in Fedora 15 (beta) was the best around, in my humble opinion. The Ubuntu + GNOME 3 ppa wasn&#8217;t a satisfying solution; I needed the challenge. For sure [...]]]></description>
			<content:encoded><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fi-moved-on-to-fedora%2F&title=I+moved+on+to+Fedora&desc=It+happened.+After+years+of+Debian+and+Ubuntu+I+changed+my+personal+laptop%27s+Linux+distribution+to+Fedora.%0D%0A%0D%0AWhy+I+changed+to+Fedora%0D%0A%0D%0A%09GNOME+3%21+GNOME+3%27s+integration+in+Fedora+15+%28beta%29+was+the+bes&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p><img class="alignright" title="tux_fedora" src="http://www.paulocabido.com/wp-content/uploads/2011/05/alexandra-franco-tux_fedora-150x150.png" alt="" width="150" height="150" />It happened. After years of Debian and Ubuntu I changed my personal laptop&#8217;s Linux distribution to Fedora.</p>
<p><strong>Why I changed to Fedora</strong></p>
<ul>
<li>GNOME 3! GNOME 3&#8242;s integration in Fedora 15 (beta) was the best around, in my humble opinion. The Ubuntu + GNOME 3 ppa wasn&#8217;t a satisfying solution;</li>
<li>I needed the challenge. For sure that I can still learn with a debian based system but I have much more to learn with a rpm based system at the moment;</li>
<li><a title="WhyUpstream" href="http://fedoraproject.org/wiki/PackageMaintainers/WhyUpstream" target="_blank">Fedora package upstream</a>;</li>
<li>It wasn&#8217;t because Ubuntu is a bad Linux distribution. I still think it&#8217;s great, I still use it on my work laptop and I will still advise people to use it.</li>
</ul>
<p>Two days have passed since I changed to Fedora and I can say that yum doesn&#8217;t let me miss apt-get. It seams like a very complete and robust package manager.</p>
<p>In Ubuntu things were kind of automatic, I knew which files I had to tweak after each install, how to add repositories, etc.</p>
<p>Things I usually do after a fresh install:</p>
<ul>
<li>Update the system;</li>
<li>Install the usual apps;</li>
<li>Tweak the system to my needs.</li>
</ul>
<p>Here&#8217;s a detailed guide of what I did in Fedora, might come in handy for some other newb like me:</p>
<ul>
<li>System update using Software Update (Apps, System Tools in GNOME Shell);</li>
<li>Install extra repositories (Free and Nonfree);
<ul>
<li><a title="RPM Fusion" href="http://rpmfusion.org/Configuration" target="_blank">RPM Fusion</a></li>
<li>Install the downloaded rpm&#8217;s (rpm -ivh FILE.rpm)</li>
</ul>
</li>
<li>I use Chromium (Google Chrome) so I installed it next. Followed the <a href="http://fedoraproject.org/wiki/Chromium" target="_blank">guide available in the Fedora Project wiki</a>;</li>
<li>I also followed the <a title="Install flash player" href="http://fedoraproject.org/wiki/Flash" target="_blank">guide available in the wiki to install Flash Player</a>;
<ul>
<li>The page has lots of info, so for you lazy guys on a x86_64 system, <a title="x86_64 flash player" href="http://forums.fedoraforum.org/showthread.php?t=205642" target="_blank">follow this link</a></li>
</ul>
</li>
<li>Installing the equivalent to ubuntu-restricted-extras package;
<ul>
<li>I followed the info available in <a href="http://www.hardware.com.br/guias/fedora/multimidia-repositorios-adicionais.html" target="_blank">this page</a> (it&#8217;s in Portuguese)</li>
<li>Getting the fonts right. Specially in the browser.
<ul>
<li>﻿yum localinstall http://fedora.missingbox.co.nz/core-fonts.rpm &#8211;nogpgcheck</li>
<li>yum install ﻿freetype-freeworld</li>
<li>I also had to add to .fonts.conf (~/.fonts.conf) some lines. Because it&#8217;s a XML file, it&#8217;s easier for you to download it: <a title=".fonts.conf" href="http://www.paulocabido.com/fedora/.fonts.conf" target="_blank">.fonts.conf</a></li>
</ul>
</li>
</ul>
</li>
<li>Installed all the software I normally use&#8230;</li>
</ul>
<p>And that was all. Everything after was absolutely normal&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paulocabido.com/linux/i-moved-on-to-fedora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My GNOME 3 experience on Ubuntu 11.04</title>
		<link>http://www.paulocabido.com/linux/my-gnome-3-experience-on-ubuntu-11-04/</link>
		<comments>http://www.paulocabido.com/linux/my-gnome-3-experience-on-ubuntu-11-04/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 21:52:15 +0000</pubDate>
		<dc:creator>pcabido</dc:creator>
				<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[EN]]></category>
		<category><![CDATA[GNOME 3]]></category>
		<category><![CDATA[gnome-shell]]></category>

		<guid isPermaLink="false">http://www.paulocabido.com/?p=1142</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fmy-gnome-3-experience-on-ubuntu-11-04%2F&title=My+GNOME+3+experience+on+Ubuntu+11.04&desc=I%27m+addicted+to%C2%A0gnome-shell%21%0D%0AA+week+has+passed+since+I+installed+GNOME+3+on+Ubuntu+11.04+%22Natty+Narwhal%22%2C+from+the+official+GNOME+3+PPA.%0D%0AI+remember+thinking+something+like+%22Looks+nice%2C+feels+good+b&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>I&#8217;m addicted to gnome-shell! A week has passed since I installed GNOME 3 on Ubuntu 11.04 &#8220;Natty Narwhal&#8221;, from the official GNOME 3 PPA. I remember thinking something like &#8220;Looks nice, feels good but lots of things are missing&#8230; going back to classic GNOME&#8230;&#8221; but for some unexplained reason I didn&#8217;t make the purge and kept [...]]]></description>
			<content:encoded><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fmy-gnome-3-experience-on-ubuntu-11-04%2F&title=My+GNOME+3+experience+on+Ubuntu+11.04&desc=I%27m+addicted+to%C2%A0gnome-shell%21%0D%0AA+week+has+passed+since+I+installed+GNOME+3+on+Ubuntu+11.04+%22Natty+Narwhal%22%2C+from+the+official+GNOME+3+PPA.%0D%0AI+remember+thinking+something+like+%22Looks+nice%2C+feels+good+b&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p>I&#8217;m addicted to gnome-shell!</p>
<p style="text-align: justify;">A week has passed since I installed GNOME 3 on Ubuntu 11.04 &#8220;Natty Narwhal&#8221;, from the <a title="gnome3 ppa" href="https://launchpad.net/~gnome3-team/+archive/gnome3" target="_blank">official GNOME 3 PPA</a>.</p>
<p style="text-align: justify;">I remember thinking something like &#8220;Looks nice, feels good but lots of things are missing&#8230; going back to classic GNOME&#8230;&#8221; but for some unexplained reason I didn&#8217;t make the purge and kept using GNOME 3 and the mighty gnome-shell.</p>
<p>Here&#8217;s my GNOME 3 sceeen shot:</p>
<p><a href="http://www.paulocabido.com/wp-content/uploads/2011/04/gnome3-pcabido.png" rel="prettyPhoto[1142]" rel="lightbox[1142]"><img class="size-medium wp-image-1143 alignleft" title="GNOME 3" src="http://www.paulocabido.com/wp-content/uploads/2011/04/gnome3-pcabido-300x168.png" alt="" width="300" height="168" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>This isn&#8217;t a GNOME 3 review, <a title="Ars Technica" href="http://arstechnica.com/" target="_blank">Ars Technica</a> already made one that you can read <a title="A shiny new ornament for your Linux lawn: Ars reviews GNOME 3.0" href="http://arstechnica.com/open-source/reviews/2011/04/ars-reviews-gnome-30-a-shiny-new-ornament-for-your-linux-lawn.ars" target="_blank">here</a>. It&#8217;s just my two cents about some things.</p>
<p><strong>Problems, bugs, weird stuff and a whish list</strong></p>
<ul>
<li style="text-align: justify;">Ubuntu 11.04 doesn&#8217;t have official GNOME 3 support. You have to use the PPA. I almost went Fedora because of this. Still thinking about that&#8230;</li>
</ul>
<ul style="text-align: justify;">
<li>The window decorator couldn&#8217;t be more ugly, but I saw lots of screen shots around the web with a great looking interface. Why wasn&#8217;t mine good looking?! Seams that the problem was that the theme (Adwaita) wasn&#8217;t there. After a quick search, I found out that the theme was in a package called <span style="text-decoration: underline;">gnome-themes-standard</span> that wasn&#8217;t in the GNOME 3 dependency list and that I couldn&#8217;t install because the package itself is broken. The solution was to extract the contents of the package and place the Awaita theme where it should be (/usr/share/themes) manually.</li>
</ul>
<ul style="text-align: justify;">
<li>I also remember thinking &#8220;where the *FWORD* are my desktop icons?!&#8221; and after taking after a deep breath I read all about the philosophy of GNOME 3/gnome-shell and it kind of made some sense, although I am/was too used to having stuff all around my desktop. This was only the first weird thing I had to adapt to.</li>
</ul>
<ul style="text-align: justify;">
<li>There are no applets in gnome-shell, the nice panel (top bar) isn&#8217;t customizable. I have a trillion passwords to memorize and I have been using revelation until now (GNOME 2) because of the nice applet that it has. I used it exhaustively because it allowed me to search within my passwords very quickly. I really miss that applet.</li>
</ul>
<ul style="text-align: justify;">
<li>The notifications changed. In a general way I like the new notification system, it&#8217;s cool and really doesn&#8217;t bother you when your&#8217;re working and it&#8217;s a complete WIN to be able to check the notifications some time after they occurred. Yet, another habit, I use pidgin as my default IM client and I want to be able to stick the icon somewhere visible (top bar) and see when the icon changes it&#8217;s status. I liked the way that worked out in GNOME 2. It&#8217;s just weired not to have it there now.</li>
</ul>
<ul style="text-align: justify;">
<li>Keyboard has lot&#8217;s of shortcuts. WIN! But hey some of us have razors, mx 5xx or some other mouse that has more buttons than we have fingers. There should be mouse shortcuts as well! With compiz I used two useful shortcuts within the desktop wall. I used the two buttons placed on the left side of my mouse to change to the previous and to the next workspace. This is another thing I really miss.</li>
</ul>
<ul style="text-align: justify;">
<li>Nautilus changed the shortcuts. Now I have to press two keys to delete a file. I liked it better when I only had to press del for that.</li>
</ul>
<ul style="text-align: justify;">
<li>Mutter breaks transparency in non-maximized windows, like gnome-terminal that I use allot. It&#8217;s a known <a title="Mutter git breaks transparency in non-maximized windows" href="https://bugzilla.gnome.org/show_bug.cgi?id=635268" target="_blank">bug</a> but still no solution.</li>
</ul>
<ul style="text-align: justify;">
<li>As well as some other users, I haven&#8217;t figured out how to remove the unnecessary accessibility menu from the top bar.</li>
</ul>
<ul style="text-align: justify;">
<li>Another &#8220;philosophy&#8221; issue is that by default window controls only have the close button. No minimize or maximize. That&#8217;s because you can maximize windows with a double-click on the title bar and because you don&#8217;t have anything to see (besides your wallpaper) on your desktop, so you don&#8217;t need to minimize windows, only switch between them. That was weired at first and I <a title="HOW TO ADD MINIMIZE AND MAXIMIZE BUTTONS BACK IN GNOME SHELL" href="http://www.webupd8.org/2011/03/how-to-add-minimize-and-maximize.html" target="_blank">added both missing controls</a>, but sincerely after a week of using gnome-shell I don&#8217;t use them at all.</li>
</ul>
<ul style="text-align: justify;">
<li>Lack of customization. This is a problem. I like to tweak my desktop and so do other users. I think future success depends on this issue.</li>
</ul>
<ul>
<li style="text-align: justify;">Places should also have the option to be added as a Favorite. I have the sensation that  nautilus alone isn&#8217;t enough.</li>
</ul>
<p><strong>Things that keep me hooked in!</strong></p>
<ul>
<li style="text-align: justify;">The coolness factor! I don&#8217;t know why neither can I explain it&#8230; but it just feels right to use gnome-shell! Almost as if it was cool to use it and if you don&#8217;t.. you&#8217;re not just cool anymore.</li>
</ul>
<ul style="text-align: justify;">
<li>Gnome-shell. I&#8217;m still adapting but I like the changes.</li>
</ul>
<ul style="text-align: justify;">
<li>The application switcher.</li>
</ul>
<ul style="text-align: justify;">
<li>The workspace management is just awesome. The way they extend one after another or how they are removed when no longer necessary is just how they should always have worked.</li>
</ul>
<ul>
<li style="text-align: justify;">I use a laptop + a LCD screen at home. The second screen, the LCD, doesn&#8217;t change when I switch workspaces. When I switch workspaces only the laptop screen workspace changes. The LCD workspace is always the same. I don&#8217;t really know if this is the default behavior, but I love this. I can put my &#8220;always showing apps&#8221; in the LCD &#8220;always showing&#8221; workspace and move throe the laptop workspaces.</li>
</ul>
<p style="text-align: center;"><a href="http://www.paulocabido.com/wp-content/uploads/2011/04/IMG_20110417_180117.jpg" rel="prettyPhoto[1142]" rel="lightbox[1142]"><img class="aligncenter" title="IMG_20110417_180117" src="http://www.paulocabido.com/wp-content/uploads/2011/04/IMG_20110417_180117-300x282.jpg" alt="" width="300" height="282" /></a></p>
<ul>
<li style="text-align: justify;">I&#8217;m more focused on my work. Congratulations to  the GNOME 3 team because this is one of gnome-shell&#8217;s objectives and I really feel it.</li>
</ul>
<ul style="text-align: justify;">
<li><a title="gnome-shell extensions" href="https://live.gnome.org/GnomeShell/Extensions" target="_blank">Gnome-shell extensions</a>. They represent additional functionality for gnome-shell. There is a collection of <a title="gnome-shell extensions" href="http://git.gnome.org/browse/gnome-shell-extensions/" target="_blank">extensions available at the GNOME GIT</a> source code repository. I two articles: <a title="GNOME SHELL EXTENSIONS: ADDITIONAL FUNCTIONALITY FOR GNOME SHELL (DOCK TASK-SWITCHER, WINDOWS NAVIGATOR, USER THEME, ETC.)" href="http://www.webupd8.org/2011/04/gnome-shell-extensions-additional.html" target="_blank">one about those extra extensions available at the GNOME GIT</a> and <a title="GNOME Shell Extensions" href="http://blog.fpmurphy.com/2011/04/gnome-3-shell-extensions.html" target="_blank">another article with nice code examples and explanations</a>. Adding to this while browsing the web for some kind of gnome-shell integration with pidgin I found <a title="gnomeshell@pidgin.im" href="http://fedorapeople.org/gitweb?p=izhar/public_git/hack-patches.git;a=tree;f=gnomeshell@pidgin.im" target="_blank">this extension that integrates pidgin with gnome-shell</a> the same way Empathy is integrated (thanks to Mohd Izhar Firdaus Ismail).</li>
</ul>
<ul>
<li style="text-align: justify;">There are lots of nice themes emerging (<a title="smooth inset gnome-shell theme" href="http://www.omgubuntu.co.uk/2011/03/gnome-shell-smooth-inset-theme-is-light-airy-and-beautiful/" target="_blank">Smooth Inset</a> and <a title="elementary gnome-shell theme" href="http://www.omgubuntu.co.uk/2011/01/awesome-elementary-gnome-shell-theme/" target="_blank">Elementary</a>).  This <a title="gnome-shell Tron Legacy theme" href="http://half-left.deviantart.com/art/GNOME-Shell-Tron-Legacy-191396881" target="_blank">Tron Legacy gnome-shell theme</a> is for an older version of gnome-shell but you can get the idea.</li>
</ul>
<p>I&#8217;ll keep posting my GNOME3 experience and who knows, some extensions of my own.</p>
<p style="text-align: center;"><a title="Help promote GNOME 3!" href="https://live.gnome.org/ThreePointZero/Promote"><img class="aligncenter" src="http://www.gnome.org/wp-content/uploads/2011/04/iamgnome.png" border="0" alt="I am GNOME" width="200" height="200" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paulocabido.com/linux/my-gnome-3-experience-on-ubuntu-11-04/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Getting Things GNOME! 0.2 Released!</title>
		<link>http://www.paulocabido.com/linux/getting-things-gnome-0-2-released/</link>
		<comments>http://www.paulocabido.com/linux/getting-things-gnome-0-2-released/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 16:18:18 +0000</pubDate>
		<dc:creator>pcabido</dc:creator>
				<category><![CDATA[gnome]]></category>
		<category><![CDATA[gtg]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[EN]]></category>
		<category><![CDATA[gorignak]]></category>

		<guid isPermaLink="false">http://www.paulocabido.com/?p=434</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fgetting-things-gnome-0-2-released%2F&title=Getting+Things+GNOME%21+0.2+Released%21&desc=That%27s+it%21+Getting+Things+Gnome%21+2.0%2C+code+name+%22Gorignak%22%2C+was+released+this+week%21%0D%0A%0D%0AI+won%27t+duplicate+the+release+post%2C+it%27s+a+great+post+and+you+can+read+it+here%21&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>That&#8217;s it! Getting Things Gnome! 2.0, code name &#8220;Gorignak&#8221;, was released this week! I won&#8217;t duplicate the release post, it&#8217;s a great post and you can read it here!]]></description>
			<content:encoded><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fgetting-things-gnome-0-2-released%2F&title=Getting+Things+GNOME%21+0.2+Released%21&desc=That%27s+it%21+Getting+Things+Gnome%21+2.0%2C+code+name+%22Gorignak%22%2C+was+released+this+week%21%0D%0A%0D%0AI+won%27t+duplicate+the+release+post%2C+it%27s+a+great+post+and+you+can+read+it+here%21&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p>That&#8217;s it! Getting Things Gnome! 2.0, code name &#8220;Gorignak&#8221;, was released this week!</p>
<p>I won&#8217;t duplicate the release post, it&#8217;s a great post and you can read it <a href="http://gtg.fritalk.com/post/2009/12/10/The-new-Getting-Things-GNOME!-0.2-Gorignak-has-landed!">here</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paulocabido.com/linux/getting-things-gnome-0-2-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WD Scorpio Black 320GB</title>
		<link>http://www.paulocabido.com/linux/wd-scorpio-black-320gb/</link>
		<comments>http://www.paulocabido.com/linux/wd-scorpio-black-320gb/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 21:48:22 +0000</pubDate>
		<dc:creator>pcabido</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[real life]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[0x80070017]]></category>
		<category><![CDATA[320]]></category>
		<category><![CDATA[EN]]></category>
		<category><![CDATA[WD Scorpio Black]]></category>

		<guid isPermaLink="false">http://www.paulocabido.com/?p=141</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fwd-scorpio-black-320gb%2F&title=WD+Scorpio+Black+320GB&desc=I+didn%27t+buy+myself+any+birthday+present+this+year+and+since+Google+has+been+so+generous+with+me%2C+accepting+me+for+SoC+and+paying+the+first+%24505...+I+bought+a+new+hard+drive+for+my+laptop+%28sony+vaio+f&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>I didn&#8217;t buy myself any birthday present this year and since Google has been so generous with me, accepting me for SoC and paying the first $505&#8230; I bought a new hard drive for my laptop (sony vaio fw). What I really needed was a external hard drive but I thought to myself, what the [...]]]></description>
			<content:encoded><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fwd-scorpio-black-320gb%2F&title=WD+Scorpio+Black+320GB&desc=I+didn%27t+buy+myself+any+birthday+present+this+year+and+since+Google+has+been+so+generous+with+me%2C+accepting+me+for+SoC+and+paying+the+first+%24505...+I+bought+a+new+hard+drive+for+my+laptop+%28sony+vaio+f&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p>I didn&#8217;t buy myself any birthday present this year and since Google has been so generous with me, accepting me for SoC and paying the first $505&#8230; I bought a new hard drive for my laptop (sony vaio fw). What I really needed was a external hard drive but I thought to myself, what the heck, I&#8217;ll buy a new hard drive for the laptop and pass the old drive to a external case. That was exactly what I did! I bought the <a href="http://www.wdc.com/en/products/products.asp?DriveID=482">WD Scorpio Black 320GB</a>, a 320 GB, SATA 3 Gb/s, 16 MB Cache, 7200 RPM hard drive!<br />
I&#8217;m not expecting any miracle, it&#8217;s just a nice upgrade. <img src='http://www.paulocabido.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Here&#8217;s a picture of the new and the old hard drive:</p>
<p><a href="http://www.paulocabido.com/wp-content/uploads/2009/07/DSC00751.JPG" rel="prettyPhoto[141]" rel="lightbox[141]"><img src="http://www.paulocabido.com/wp-content/uploads/2009/07/DSC00751-300x215.jpg" alt="DSC00751" title="DSC00751" width="300" height="215" class="aligncenter size-medium wp-image-145" /></a></p>
<p>The bad part of this history:<br />
It took two days for the hard drive to arrive at my home, It arrived today by 08:45 (am). I had a all morning battle with Windows  Vista/7. The f* thing just wouldn&#8217;t install! I always got the error code 0&#215;80070017, I burned 4 DVDs at different speeds, 2 at the lowest speed possible. It reminded me of my first CD burner.. anyway, no go! The solution was to install <strong>unetbootin</strong> on Ubuntu and burn a Windows ISO to my pen drive. Then it worked. Once again linux proves it self to be a life savior!</p>
<p>By the way, you may be thinking &#8220;WTF! Why spend any time installing Windows?!&#8221;. Sometimes I join a group of friends (about 10 of them) to play some lan games and relax a bit. This is the only reason for me to have windows on my machine and spending all morning trying and trying&#8230;</p>
<p>PS: Thanks to Google</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paulocabido.com/linux/wd-scorpio-black-320gb/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>geoclue &#8211; example3</title>
		<link>http://www.paulocabido.com/gsoc/geoclue-example3/</link>
		<comments>http://www.paulocabido.com/gsoc/geoclue-example3/#comments</comments>
		<pubDate>Wed, 27 May 2009 14:03:40 +0000</pubDate>
		<dc:creator>pcabido</dc:creator>
				<category><![CDATA[geoclue]]></category>
		<category><![CDATA[gsoc]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[d-bus]]></category>
		<category><![CDATA[EN]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.paulocabido.com/?p=71</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Fgsoc%2Fgeoclue-example3%2F&title=geoclue+-+example3&desc=I+uploaded+today+the+third+example+of+how+to+use+geoclue+thru+python%2Fd-bus.+All+the+examples+are+available+here.&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>I uploaded today the third example of how to use geoclue thru python/d-bus. All the examples are available here.]]></description>
			<content:encoded><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Fgsoc%2Fgeoclue-example3%2F&title=geoclue+-+example3&desc=I+uploaded+today+the+third+example+of+how+to+use+geoclue+thru+python%2Fd-bus.+All+the+examples+are+available+here.&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p>I uploaded today the third example of how to use <a href="http://www.freedesktop.org/wiki/Software/GeoClue">geoclue</a> thru python/d-bus. All the examples are available <a href="http://paulocabido.com/soc/geoclue-examples/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paulocabido.com/gsoc/geoclue-example3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Follow my summer of code progress</title>
		<link>http://www.paulocabido.com/gsoc/follow-my-summer-of-code-progress/</link>
		<comments>http://www.paulocabido.com/gsoc/follow-my-summer-of-code-progress/#comments</comments>
		<pubDate>Tue, 19 May 2009 14:01:06 +0000</pubDate>
		<dc:creator>pcabido</dc:creator>
				<category><![CDATA[gnome]]></category>
		<category><![CDATA[gsoc]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[EN]]></category>
		<category><![CDATA[gtg]]></category>

		<guid isPermaLink="false">http://www.paulocabido.com/?p=66</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Fgsoc%2Ffollow-my-summer-of-code-progress%2F&title=Follow+my+summer+of+code+progress&desc=I+created+a+wiki+page+within+the+gtg%27s+wiki+to+help+me+organize+my+google+summer+of+code+project.+If+you+want+to+follow+my+work+on+the+project+you+can+check+out+my+project%27s+wiki+page+%40+live.gnome.org&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>I created a wiki page within the gtg&#8217;s wiki to help me organize my google summer of code project. If you want to follow my work on the project you can check out my project&#8217;s wiki page @ live.gnome.org. Feel free to make any suggestion.]]></description>
			<content:encoded><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Fgsoc%2Ffollow-my-summer-of-code-progress%2F&title=Follow+my+summer+of+code+progress&desc=I+created+a+wiki+page+within+the+gtg%27s+wiki+to+help+me+organize+my+google+summer+of+code+project.+If+you+want+to+follow+my+work+on+the+project+you+can+check+out+my+project%27s+wiki+page+%40+live.gnome.org&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p>I created a wiki page within the <a href="http://live.gnome.org/gtg">gtg&#8217;s wiki</a> to help me organize my google summer of code project. If you want to follow my work on the project you can check out my <a href="http://live.gnome.org/gtg/soc">project&#8217;s wiki page</a> @ <a href="http://live.gnome.org">live.gnome.org</a>. Feel free to make any suggestion.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paulocabido.com/gsoc/follow-my-summer-of-code-progress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu On Sony Vaio FW Series</title>
		<link>http://www.paulocabido.com/linux/ubuntu-on-sony-vaio-fw-series/</link>
		<comments>http://www.paulocabido.com/linux/ubuntu-on-sony-vaio-fw-series/#comments</comments>
		<pubDate>Tue, 12 May 2009 15:17:55 +0000</pubDate>
		<dc:creator>pcabido</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[brightness]]></category>
		<category><![CDATA[EN]]></category>
		<category><![CDATA[sony vaio fw series]]></category>

		<guid isPermaLink="false">http://www.paulocabido.com/?p=61</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fubuntu-on-sony-vaio-fw-series%2F&title=Ubuntu+On+Sony+Vaio+FW+Series&desc=I+have+a+Sony+Vaio+FW11M.+It%27s+a+really+great+laptop%21+The+only+thing+that+doesn%27t+work+well+by+default+on+Ubuntu+is+the+brightness+control.%0D%0AThere+are+some+little+tricks+and+the+kernel+needs+to+be+pat&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>I have a Sony Vaio FW11M. It&#8217;s a really great laptop! The only thing that doesn&#8217;t work well by default on Ubuntu is the brightness control. There are some little tricks and the kernel needs to be patched. Egaistek is a life saver! He made available a patch and the instructions to solve this problem [...]]]></description>
			<content:encoded><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fubuntu-on-sony-vaio-fw-series%2F&title=Ubuntu+On+Sony+Vaio+FW+Series&desc=I+have+a+Sony+Vaio+FW11M.+It%27s+a+really+great+laptop%21+The+only+thing+that+doesn%27t+work+well+by+default+on+Ubuntu+is+the+brightness+control.%0D%0AThere+are+some+little+tricks+and+the+kernel+needs+to+be+pat&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p>I have a Sony Vaio FW11M. It&#8217;s a really great laptop! The only thing that doesn&#8217;t work well by default on Ubuntu is the brightness control.<br />
There are some little tricks and the kernel needs to be patched. Egaistek is a life saver! He made available a patch and the instructions to solve this problem on the both versions of Ubuntu 8.10 (32 and 64 bits) at his <a href="http://vaioubuntu.wordpress.com/">site</a>. Keep up the good work egaistek! <img src='http://www.paulocabido.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.paulocabido.com/linux/ubuntu-on-sony-vaio-fw-series/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to play rmvb files in ubuntu</title>
		<link>http://www.paulocabido.com/linux/how-to-play-rmvb-files-in-ubuntu/</link>
		<comments>http://www.paulocabido.com/linux/how-to-play-rmvb-files-in-ubuntu/#comments</comments>
		<pubDate>Mon, 11 May 2009 21:55:24 +0000</pubDate>
		<dc:creator>pcabido</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[EN]]></category>
		<category><![CDATA[rmvb]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.paulocabido.com/?p=59</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fhow-to-play-rmvb-files-in-ubuntu%2F&title=How+to+play+rmvb+files+in+ubuntu&desc=For+anyone+wondering+how+to+play++rmvb+files+in+ubuntu%2C+here%27s+a+good+guide.%0D%0A%5BEDIT%5D%0D%0AThe+previous+guide+works+well+for+32bit+systems.+For+64bit+systems+this+page+was+the+best+guide+I+found.+&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>For anyone wondering how to play rmvb files in ubuntu, here&#8217;s a good guide. [EDIT] The previous guide works well for 32bit systems. For 64bit systems this page was the best guide I found.]]></description>
			<content:encoded><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fhow-to-play-rmvb-files-in-ubuntu%2F&title=How+to+play+rmvb+files+in+ubuntu&desc=For+anyone+wondering+how+to+play++rmvb+files+in+ubuntu%2C+here%27s+a+good+guide.%0D%0A%5BEDIT%5D%0D%0AThe+previous+guide+works+well+for+32bit+systems.+For+64bit+systems+this+page+was+the+best+guide+I+found.+&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p>For anyone wondering how to play  rmvb files in ubuntu, here&#8217;s a good <a href="http://www.simplehelp.net/2007/07/27/how-to-play-rmvb-files-in-ubuntu/">guide</a>.<br />
[EDIT]
The previous guide works well for 32bit systems. For 64bit systems <a href="http://ubuntuforums.org/showthread.php?t=766683&#038;highlight=real+media">this page</a> was the best guide I found. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.paulocabido.com/linux/how-to-play-rmvb-files-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My two cents about pidgin</title>
		<link>http://www.paulocabido.com/linux/my-two-cents-about-pidgin/</link>
		<comments>http://www.paulocabido.com/linux/my-two-cents-about-pidgin/#comments</comments>
		<pubDate>Mon, 04 May 2009 12:22:20 +0000</pubDate>
		<dc:creator>pcabido</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[EN]]></category>
		<category><![CDATA[instant messaging]]></category>
		<category><![CDATA[msnp]]></category>
		<category><![CDATA[pidgin]]></category>

		<guid isPermaLink="false">http://www.paulocabido.com/?p=52</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fmy-two-cents-about-pidgin%2F&title=My+two+cents+about+pidgin&desc=The+most+used+instant+message+network+in+Portugal+is+MSNP+%28MSN+Messenger%29.+That+fact+doesn%27t+bother+me+that+much.+What+bothers+me+is+the+lack+of+compatibility+between+the+linux+msn+messenger+clients+a&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>The most used instant message network in Portugal is MSNP (MSN Messenger). That fact doesn&#8217;t bother me that much. What bothers me is the lack of compatibility between the linux msn messenger clients and the windows one (the __original__ one). Pidgin is a universal chat client. It supports many instant messaging protocols like for example [...]]]></description>
			<content:encoded><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=paulocabido.com&link=http%3A%2F%2Fwww.paulocabido.com%2Flinux%2Fmy-two-cents-about-pidgin%2F&title=My+two+cents+about+pidgin&desc=The+most+used+instant+message+network+in+Portugal+is+MSNP+%28MSN+Messenger%29.+That+fact+doesn%27t+bother+me+that+much.+What+bothers+me+is+the+lack+of+compatibility+between+the+linux+msn+messenger+clients+a&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p><img class="alignleft size-full wp-image-53" title="pidginavatarlarge2" src="http://www.paulocabido.com/wp-content/uploads/2009/05/pidginavatarlarge2.png" alt="pidginavatarlarge2" width="141" height="141" />The most used instant message network in Portugal is <a href="http://en.wikipedia.org/wiki/Microsoft_Notification_Protocol">MSNP</a> (MSN Messenger). That fact doesn&#8217;t bother me that much. What bothers me is the lack of compatibility between the linux msn messenger clients and the windows one (the __original__ one).</p>
<p><a href="http://www.pidgin.im/">Pidgin</a> is a universal chat client. It supports many <a href="http://en.wikipedia.org/wiki/Instant_messaging">instant messaging protocols</a> like for example IRC and jabber and it also supports MSNP (the MSN Messenger protocol). Although it supports MSNP I have the sensation that the pidgin team despises MSNP. I say this because pidgin hasn&#8217;t evolved as much as it should or as much as I think it should have.</p>
<p>There are two features that I use with my friends, the file transfer and the webcam/video. The webcam/video I don&#8217;t use much but I like to think that I can use it when I want to. The file transfer I use allot, almost every day, and recently when almost every one on my contact list started to use Windows Live Messenger 2009 I started to have trouble sending/receiving files.. which sucked.</p>
<p>The solution for my main problem was to install <a href="http://code.google.com/p/msn-pecan/">msn-pecan</a>. It&#8217;s a plug-in for pidgin that implements some MSNP features that pidgin doesn&#8217;t support.</p>
<p>While reading the msn-pecan FAQ I confirmed what I was thinking about the pidgin developer team, they have some problems/issues.<br />
The lack of support for MSNP (pidgin or others) is also bad for the linux community. I have seen people going back to windows because they can&#8217;t do the things they are used to do with there MSN Messenger contacts.</p>
<p>Good alternatives for pidgin (MSNP) are <a href="http://live.gnome.org/Empathy">empathy</a> and <a href="http://www.emesene.org/">emesene</a>.</p>
<p>For know I&#8217;m sticking with pidgin but I hope that empathy evolves quickly, it looks like a really good project.<br />
A <a href="http://en.wikipedia.org/wiki/Comparison_of_instant_messaging_protocols">comparsion of instant messaging protocols</a>, enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paulocabido.com/linux/my-two-cents-about-pidgin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

