<?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>Cold Chicken &#187; Linux</title>
	<atom:link href="http://smux.net/blog/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://smux.net/blog</link>
	<description></description>
	<lastBuildDate>Fri, 26 Feb 2010 03:51:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Page Up and Page Down History Search on bash</title>
		<link>http://smux.net/blog/2009/03/22/page-up-and-page-down-history-search-on-bash/</link>
		<comments>http://smux.net/blog/2009/03/22/page-up-and-page-down-history-search-on-bash/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 11:24:10 +0000</pubDate>
		<dc:creator>Sena</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[completion]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://smux.net/blog/?p=57</guid>
		<description><![CDATA[One thing I got used to when using SLES was that I was able to search bash command history simply by typing the first few letters of a previous command, and then pressing Page Up. However, Ubuntu doesn&#8217;t seem to come with that feature enabled by default. After fiddling with CTRL-R a few times, I [...]]]></description>
			<content:encoded><![CDATA[<p>One thing I got used to when using <abbr title="Suse Linux Enterprise Server">SLES</abbr> was that I was able to search bash command history simply by typing the first few letters of a previous command, and then pressing <em>Page Up</em>. However, Ubuntu doesn&#8217;t seem to come with that feature enabled by default.</p>
<p>After fiddling with <em>CTRL-R</em> a few times, I checked out how to make this work.</p>
<p>Well, simply add the following two lines on a <code>.inputrc</code> file on your home directory, or uncomment them on <code>/etc/inputrc</code> for a system-wide effect:</p>
<blockquote><pre>"\e[5~": history-search-backward
"\e[6~": history-search-forward</pre>
</blockquote>
<p>That&#8217;s it. Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://smux.net/blog/2009/03/22/page-up-and-page-down-history-search-on-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Google Apps as default mail client in Linux (Gnome)</title>
		<link>http://smux.net/blog/2009/02/08/using-google-apps-as-default-mail-client-in-linux-gnome/</link>
		<comments>http://smux.net/blog/2009/02/08/using-google-apps-as-default-mail-client-in-linux-gnome/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 17:05:46 +0000</pubDate>
		<dc:creator>Sena</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[google apps]]></category>

		<guid isPermaLink="false">http://smux.net/blog/?p=46</guid>
		<description><![CDATA[Ok, pretty simple. I had a couple of machines where I wanted to keep the installation base to a minimum, so WebMail was a natural choice. I neded to be able to send mails when clicking mail links everywhere in Firefox or other application, so we need to tell Gnome that Firefox is it the [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, pretty simple. I had a couple of machines where I wanted to keep the installation base to a minimum, so WebMail was a natural choice.</p>
<p>I neded to be able to send mails when clicking mail links everywhere in Firefox or other application, so we need to tell Gnome that Firefox is it the default mail client.</p>
<p>So I created the following shell script, which I placed in <code>/usr/local/bin</code>:</p>
<blockquote><pre>#!/bin/bash

DOMAIN=example.com
FIREFOX=/usr/bin/firefox

if [[ "" != "$1" ]]; then
  SEND="?extsrc=mailto&amp;url=$1"
fi

URL=https://mail.google.com/a/${DOMAIN}/${SEND}

if (pidof $FIREFOX); then
  $FIREFOX -remote "openurl($URL, new-tab)"
else
  $FIREFOX $URL
fi</pre>
</blockquote>
<p>You must replace <em>&#8220;example.com&#8221;</em> with your own domain.</p>
<p>This script opens a new tab in Firefox, loading Google Apps Mail directly. If Firefox is not yet running, it starts a new instance. If you provide a <code>mailto:</code> URL in the command line, it opens the mail composition section. If no URL is provided, it opens the regular Inbox view.</p>
<p>Now, we must tell Gnome to use this script as the default mail client. Simply open the <strong>Preferred Applications</strong> dialog in the <strong>System/Preferences</strong> menu. In the <strong>Mail Client</strong> section, select <strong>Custom</strong> and type the name of the script we just created in the <strong>Command</strong> field, followed by <em>&#8220;%s&#8221;</em>.</p>
<div id="attachment_50" class="wp-caption alignnone" style="width: 160px"><a href="/blog/wp-content/uploads/2009/02/preferred.png"><img src="/blog/wp-content/uploads/2009/02/preferred-150x150.png" alt="Preferred Applications window" title="Preferred Applications window" width="150" height="150" class="size-thumbnail wp-image-50" /></a><p class="wp-caption-text">Preferred Applications window</p></div>
<p>That&#8217;s it. It should be working now.</p>
<p>One last warning, tough. If you&#8217;re not logged in Google Apps, you will get the username/password dialog, and then you must click the e-mail address link again, in order to send a message.</p>
<p><strong>Edit:</strong> you must verify if Firefox is running or not and start a new instance if it&#8217;s not. Changed the code accordingly.</p>
]]></content:encoded>
			<wfw:commentRss>http://smux.net/blog/2009/02/08/using-google-apps-as-default-mail-client-in-linux-gnome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EeePC 901 desktop screenshot (#2)</title>
		<link>http://smux.net/blog/2009/02/08/eeepc-901-desktop-screenshot-2/</link>
		<comments>http://smux.net/blog/2009/02/08/eeepc-901-desktop-screenshot-2/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 08:36:10 +0000</pubDate>
		<dc:creator>Sena</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[901]]></category>
		<category><![CDATA[eee]]></category>
		<category><![CDATA[ibex]]></category>
		<category><![CDATA[intrepid]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://smux.net/blog/?p=33</guid>
		<description><![CDATA[Just for fun, a screenshot of Ubuntu Intrepid Ibex running on my EeePC 901. (desktop-20090208.png, 329 KB)]]></description>
			<content:encoded><![CDATA[<p>Just for fun, a screenshot of Ubuntu Intrepid Ibex running on my EeePC 901.</p>
<p><a href="/blog/wp-content/uploads/2009/02/desktop-20090208.png"><img src="/blog/wp-content/uploads/2009/02/desktop-20090208-300x175.png" alt="Desktop screenshot thumbnail" /></a><br />
<em>(desktop-20090208.png, 329 KB)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://smux.net/blog/2009/02/08/eeepc-901-desktop-screenshot-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desktop Meme</title>
		<link>http://smux.net/blog/2008/09/25/desktop-meme/</link>
		<comments>http://smux.net/blog/2008/09/25/desktop-meme/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 00:07:48 +0000</pubDate>
		<dc:creator>Sena</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[meme]]></category>
		<category><![CDATA[screenshot]]></category>

		<guid isPermaLink="false">http://smux.net/blog/2008/09/25/desktop-meme/</guid>
		<description><![CDATA[My Ubuntu desktop, on an Asus EEE PC 901: Take a screenshot of your desktop right now, don’t change anything, post it on your blog.]]></description>
			<content:encoded><![CDATA[<p>My Ubuntu desktop, on an Asus EEE PC 901:</p>
<p><a href="/pool/desktop-screenshot.png"><img src="/pool/desktop-screenshot-thumb.png" alt="Desktop Screenshot" /></a></p>
<p>Take a screenshot of your desktop right now, don’t change anything, post it on your blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://smux.net/blog/2008/09/25/desktop-meme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora 9 goodness</title>
		<link>http://smux.net/blog/2008/04/19/fedora-9-goodness/</link>
		<comments>http://smux.net/blog/2008/04/19/fedora-9-goodness/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 02:19:28 +0000</pubDate>
		<dc:creator>Sena</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[fedora]]></category>

		<guid isPermaLink="false">http://smux.net/blog/2008/04/19/fedora-9-goodness/</guid>
		<description><![CDATA[Fedora 9 is looking awsome! I&#8217;ve been trying it for a couple of weeks, and it&#8217;s getting better by the hour. Two niceties: Encrypted system volume with LUKS, at install time; 3G connections (with my Vodafone 3G card) just works; it just really works; I just clicked &#8220;Auto GSM network connection&#8221; on NetworkManager and it [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Fedora Project" href="http://fedoraproject.org/">Fedora</a> 9 is looking awsome!</p>
<p>I&#8217;ve been trying it for a couple of weeks, and it&#8217;s getting better by the hour.</p>
<p>Two niceties:</p>
<ul>
<li>Encrypted system volume with LUKS, at install time;</li>
<li>3G connections (with my Vodafone 3G card) just works; it just really works; I just clicked &#8220;Auto GSM network connection&#8221; on NetworkManager and it worked; pure magic here, people.</li>
</ul>
<p>I used Ubuntu for everything until now, but I&#8217;m seriously considering going back to Fedora.</p>
]]></content:encoded>
			<wfw:commentRss>http://smux.net/blog/2008/04/19/fedora-9-goodness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
