<?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>Linuxlore &#187; Linux</title>
	<atom:link href="http://www.linuxlore.co.uk/category/computers/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linuxlore.co.uk</link>
	<description>Probably more than just Linux</description>
	<lastBuildDate>Mon, 12 Sep 2011 11:01:39 +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>Auto naming terminal tabs</title>
		<link>http://www.linuxlore.co.uk/2011/09/12/auto-naming-terminal-tabs/</link>
		<comments>http://www.linuxlore.co.uk/2011/09/12/auto-naming-terminal-tabs/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 11:01:39 +0000</pubDate>
		<dc:creator>Paul Tansom</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxlore.co.uk/?p=271</guid>
		<description><![CDATA[I use Ubuntu on the whole for my desktops and servers and the more recent versions have Byobu which customises Screen rather nicely. I am still running 8.04 LTS on one server at the moment which is too old to have Byobu in the standard repositories (yes it is on my todo list to upgrade!), [...]]]></description>
			<content:encoded><![CDATA[<p>I use Ubuntu on the whole for my desktops and servers and the more recent versions have <a href="https://launchpad.net/byobu" title="Byobu">Byobu</a> which customises <a href="http://www.gnu.org/s/screen/" title="Screen">Screen</a> rather nicely. I am still running 8.04 LTS on one server at the moment which is too old to have Byobu in the standard repositories (yes it is on my todo list to upgrade!), but one of the most useful features is quite easy to implement without Byobu.</p>
<p>When I have multiple terminal tabs open with various local and remote (via SSH) command lines running it is nice to know which is which. Byobu thoughtfully changes the title as you log in, but Screen does not (I have both configured to automatically launch when I log in). One line added to my .bash_profile does the trick though:</p>
<p><code><br />
printf "\033]0;${USER}@$(hostname) - screen\007"<br />
screen -xRR<br />
</code></p>
<p>The first <em>printf</em> line is the one that does the trick and tells me who I&#8217;ve logged in as and to what machine, as well as reminding me I&#8217;m in Screen. The second <em>screen</em> line simply starts Screen if it is not already running, or connects to the existing instance if it is.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F09%2F12%2Fauto-naming-terminal-tabs%2F&amp;title=Auto+naming+terminal+tabs" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F09%2F12%2Fauto-naming-terminal-tabs%2F&amp;title=Auto+naming+terminal+tabs" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F09%2F12%2Fauto-naming-terminal-tabs%2F&amp;title=Auto+naming+terminal+tabs" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F09%2F12%2Fauto-naming-terminal-tabs%2F&amp;headline=Auto+naming+terminal+tabs" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Auto+naming+terminal+tabs&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F09%2F12%2Fauto-naming-terminal-tabs%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Auto+naming+terminal+tabs&amp;u=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F09%2F12%2Fauto-naming-terminal-tabs%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Auto+naming+terminal+tabs&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F09%2F12%2Fauto-naming-terminal-tabs%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Auto+naming+terminal+tabs&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F09%2F12%2Fauto-naming-terminal-tabs%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Auto+naming+terminal+tabs&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F09%2F12%2Fauto-naming-terminal-tabs%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F09%2F12%2Fauto-naming-terminal-tabs%2F&amp;title=Auto+naming+terminal+tabs&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F09%2F12%2Fauto-naming-terminal-tabs%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F09%2F12%2Fauto-naming-terminal-tabs%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F09%2F12%2Fauto-naming-terminal-tabs%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.linuxlore.co.uk/2011/09/12/auto-naming-terminal-tabs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu ATI driver</title>
		<link>http://www.linuxlore.co.uk/2011/08/23/ubuntu-ati-driver/</link>
		<comments>http://www.linuxlore.co.uk/2011/08/23/ubuntu-ati-driver/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 14:59:46 +0000</pubDate>
		<dc:creator>Paul Tansom</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.linuxlore.co.uk/?p=259</guid>
		<description><![CDATA[A couple of weekends ago I was at OggCamp and the first talk on the Sunday was a good one by LornaJane Mitchell. For one it was a timely reminder of how my IT career started. It was also a virtual kick up the backside to get a bit more use out of my blog. [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of weekends ago I was at <a href="http://oggcamp.org/" title="OggCamp">OggCamp</a> and the first talk on the Sunday was a good one by <a href="http://www.lornajane.net/posts/2011/Speaking-at-OggCamp" title="LornaJane">LornaJane Mitchell</a>. For one it was a timely reminder of how my IT career started. It was also a virtual kick up the backside to get a bit more use out of my blog. I tend to think in completed articles, but I do have a precedent for short technical comment entries, so here goes more&#8230;</p>
<p>I&#8217;ve just upgraded my desktop machine, it isn&#8217;t exactly state of the art, the new one is only a 3.2GHz P4 and is my first 64 bit desktop, but that&#8217;s beside the point. The point is I dropped the old SATA HD into a new box and let Ubuntu get on with the job of sorting out the hardware changes (as an aside Windows 7 put on a bit of a show and then gave up in a huff!).</p>
<p>All went well apart from the graphics, which meant I couldn&#8217;t even get the login prompt (I knew I should have stuck with a console and typing <strong><em>startx</em></strong>!! To cut to the chase the solution that worked for me was to boot into the <em>recovery mode</em> kernel and do a one off boot into a safe graphics mode. From here I used the <em>Additional Drivers</em> tool to remove the proprietary ATI driver. This allowed me to reboot into the standard desktop and confirm thins were working, but sadly I couldn&#8217;t get above 1024&#215;768 which restricted screen space somewhat.</p>
<p>As it happens I doubt the above was needed because my next action was to boot once more into <em>recovery mode</em> and restore the proprietary driver and reboot. This time when the screen went blank and complained about being &#8216;<em>out of timin</em>g&#8217; I used <strong>ALT-F2</strong> to bring up a CLI login and from there used:</p>
<p><code>sudo aticonfig --initial</code></p>
<p>This created <strong>/etc/X11/xorg.conf</strong>, although unfortunately this didn&#8217;t make any difference, but it did prepare the ground for:</p>
<p><code>sudo aticonfig --resolution=0,1280x1024,1024x768</code></p>
<p>which persuaded the driver to use a more sensible set of parameters that worked with the monitor.</p>
<p>The most notable difference I&#8217;ve spotted in the logs so far is that when not working I had the line:</p>
<p><code>(II) fglrx(0): Setting screen physical size to 423 x 317</code></p>
<p>whereas when working it is:</p>
<p><code>(II) fglrx(0): Setting screen physical size to 338 x 270</code></p>
<p>I&#8217;ve not explored whether there is anything else, or what that actually means!</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F08%2F23%2Fubuntu-ati-driver%2F&amp;title=Ubuntu+ATI+driver" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F08%2F23%2Fubuntu-ati-driver%2F&amp;title=Ubuntu+ATI+driver" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F08%2F23%2Fubuntu-ati-driver%2F&amp;title=Ubuntu+ATI+driver" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F08%2F23%2Fubuntu-ati-driver%2F&amp;headline=Ubuntu+ATI+driver" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Ubuntu+ATI+driver&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F08%2F23%2Fubuntu-ati-driver%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Ubuntu+ATI+driver&amp;u=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F08%2F23%2Fubuntu-ati-driver%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Ubuntu+ATI+driver&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F08%2F23%2Fubuntu-ati-driver%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Ubuntu+ATI+driver&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F08%2F23%2Fubuntu-ati-driver%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Ubuntu+ATI+driver&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F08%2F23%2Fubuntu-ati-driver%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F08%2F23%2Fubuntu-ati-driver%2F&amp;title=Ubuntu+ATI+driver&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F08%2F23%2Fubuntu-ati-driver%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F08%2F23%2Fubuntu-ati-driver%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F08%2F23%2Fubuntu-ati-driver%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.linuxlore.co.uk/2011/08/23/ubuntu-ati-driver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu, Dovecot and Sieve</title>
		<link>http://www.linuxlore.co.uk/2011/01/22/ubuntu-dovecot-and-sieve/</link>
		<comments>http://www.linuxlore.co.uk/2011/01/22/ubuntu-dovecot-and-sieve/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 01:39:47 +0000</pubDate>
		<dc:creator>Paul Tansom</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxlore.co.uk/?p=228</guid>
		<description><![CDATA[Finally upgraded my main on site Ubuntu server to the latest LTS release (10.04). It was a small jump since I was running on the release immediately prior (9.10) and not the previous LTS release (8.04). I was doing this because the previous LTS release lacked a particular package version that I needed to use [...]]]></description>
			<content:encoded><![CDATA[<p>Finally upgraded my main on site Ubuntu server to the latest LTS release (10.04). It was a small jump since I was running on the release immediately prior (9.10) and not the previous LTS release (8.04). I was doing this because the previous LTS release lacked a particular package version that I needed to use (which I can&#8217;t remember details of as I type this), and the LTS release wasn&#8217;t far off &#8211; although too far to wait given my need to install onto my new hardware (an Atom 330 based board which is handling the load very nicely with low power consumption).</p>
<p>Anyway, the upgrade was largely uneventful, which is always nice, I do like a boring life for some things <img src='http://www.linuxlore.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  The only two items of note were:</p>
<ul>
<li>For some reason Upstart didn&#8217;t automatically start nmbd on boot &#8211; I&#8217;m not sure whether this was a one off, but I&#8217;m now following a bug on Launchpad and will have to find a suitable time to do another reboot and see what happens.</li>
<li>There was a minor problem with the Dovecot configuration (and this is what started me towards this blog post!) &#8211; the sieve plugin has changed.</li>
</ul>
<p>I&#8217;ll elaborate on that one a bit.</p>
<p>Recently I migrated my mail system from a combination of Exim, Procmail and Dovecot to Exim and Dovecot with Sieve. I&#8217;ll get round to blogging about that process at some point, but for now suffice it to say that instead of receiving may with Exim and passing it to Procmail to filter into the various mailboxes and then using Dovecot to access it via IMAP, Exim now passes the mail direct to Dovecot which then uses built in Sieve support to filter the mail into the various mailboxes. This has two advantages, firstly Dovecot can index the mail as it comes in, which has a minor performance boost when first accessing new mail from the client, and secondly the Sieve syntax is much easier to follow than Procmail (well I find it is anyway!).</p>
<p>Getting right down to the issue at hand, on this upgrade I found things stopped working, and after a very brief look around the config file and Dovecot plugins directory identified that in the <strong><em>dovecot.conf</em></strong> file the line:</p>
<p><code><strong><em>mail_plugins = cmusieve</em></strong></code></p>
<p>needed to be changed to:</p>
<p><code><strong><em>mail_plugins = sieve</em></strong></code></p>
<p>This did get me thinking that it may be nice to manage a do-release-upgrade process in stages rather than hitting all services at once, but having said that the number of dependencies being upgraded at the same time in this process would likely make that impractical to manage &#8211; and to be honest I&#8217;ve not found a major problem yet <img src='http://www.linuxlore.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F01%2F22%2Fubuntu-dovecot-and-sieve%2F&amp;title=Ubuntu%2C+Dovecot+and+Sieve" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F01%2F22%2Fubuntu-dovecot-and-sieve%2F&amp;title=Ubuntu%2C+Dovecot+and+Sieve" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F01%2F22%2Fubuntu-dovecot-and-sieve%2F&amp;title=Ubuntu%2C+Dovecot+and+Sieve" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F01%2F22%2Fubuntu-dovecot-and-sieve%2F&amp;headline=Ubuntu%2C+Dovecot+and+Sieve" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Ubuntu%2C+Dovecot+and+Sieve&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F01%2F22%2Fubuntu-dovecot-and-sieve%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Ubuntu%2C+Dovecot+and+Sieve&amp;u=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F01%2F22%2Fubuntu-dovecot-and-sieve%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Ubuntu%2C+Dovecot+and+Sieve&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F01%2F22%2Fubuntu-dovecot-and-sieve%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Ubuntu%2C+Dovecot+and+Sieve&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F01%2F22%2Fubuntu-dovecot-and-sieve%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Ubuntu%2C+Dovecot+and+Sieve&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F01%2F22%2Fubuntu-dovecot-and-sieve%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F01%2F22%2Fubuntu-dovecot-and-sieve%2F&amp;title=Ubuntu%2C+Dovecot+and+Sieve&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F01%2F22%2Fubuntu-dovecot-and-sieve%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F01%2F22%2Fubuntu-dovecot-and-sieve%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2011%2F01%2F22%2Fubuntu-dovecot-and-sieve%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.linuxlore.co.uk/2011/01/22/ubuntu-dovecot-and-sieve/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Empathy MSN bug</title>
		<link>http://www.linuxlore.co.uk/2010/10/21/empathy-msn-bug/</link>
		<comments>http://www.linuxlore.co.uk/2010/10/21/empathy-msn-bug/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 16:10:17 +0000</pubDate>
		<dc:creator>Paul Tansom</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxlore.co.uk/?p=153</guid>
		<description><![CDATA[Yesterday I noticed that one of my two MSN accounts wasn&#8217;t logging in but instead was returning the error message &#8220;No Reason Specified&#8221;, which isn&#8217;t all that helpful really. I wasn&#8217;t overly worried because to be honest I don&#8217;t really use MSN, it just idles when ever my machine is on, much like my Yahoo [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I noticed that one of my two MSN accounts wasn&#8217;t logging in but instead was returning the error message &#8220;No Reason Specified&#8221;, which isn&#8217;t all that helpful really. I wasn&#8217;t overly worried because to be honest I don&#8217;t really use MSN, it just idles when ever my machine is on, much like my Yahoo and AIM accounts. I use Google Talk and Facebook Chat on the whole, with the odd venture into Skype.</p>
<p>Anyway, today the second account started giving the same error, so I decided something must be wrong, and I should take a look. If nothing else I wanted to find out whether it was me or something that needed raising as a bug. It looks as though this is a general problems and there should be a bug fix to the python-papyon package on the way, but to summarise the details from <a href="https://bugs.launchpad.net/bugs/663670">Ubuntu bug #664570</a>:</p>
<p>Find the file</p>
<p><code>/usr/share/pyshared/papyon/service/description/SingleSignOn/RequestMultipleSecurityTokens.py</code></p>
<p>and edit the line</p>
<p><code>CONTACTS = ("contacts.msn.com", "?fs=1&#038;id=24000&#038;kv=7&#038;rn=93S9SWWw&#038;tw=0&#038;ver=2.1.6000.1")</code></p>
<p>and replace it with</p>
<p><code>CONTACTS = ("contacts.msn.com", "MBI")</code></p>
<p>Personally I always leave the original line there as a comment for reference or backout purposes <img src='http://www.linuxlore.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Then restart Empathy and you should be fine.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F10%2F21%2Fempathy-msn-bug%2F&amp;title=Empathy+MSN+bug" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F10%2F21%2Fempathy-msn-bug%2F&amp;title=Empathy+MSN+bug" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F10%2F21%2Fempathy-msn-bug%2F&amp;title=Empathy+MSN+bug" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F10%2F21%2Fempathy-msn-bug%2F&amp;headline=Empathy+MSN+bug" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Empathy+MSN+bug&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F10%2F21%2Fempathy-msn-bug%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Empathy+MSN+bug&amp;u=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F10%2F21%2Fempathy-msn-bug%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Empathy+MSN+bug&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F10%2F21%2Fempathy-msn-bug%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Empathy+MSN+bug&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F10%2F21%2Fempathy-msn-bug%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Empathy+MSN+bug&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F10%2F21%2Fempathy-msn-bug%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F10%2F21%2Fempathy-msn-bug%2F&amp;title=Empathy+MSN+bug&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F10%2F21%2Fempathy-msn-bug%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F10%2F21%2Fempathy-msn-bug%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F10%2F21%2Fempathy-msn-bug%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.linuxlore.co.uk/2010/10/21/empathy-msn-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BIOS fun</title>
		<link>http://www.linuxlore.co.uk/2010/02/26/bios-fun/</link>
		<comments>http://www.linuxlore.co.uk/2010/02/26/bios-fun/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 14:37:00 +0000</pubDate>
		<dc:creator>Paul Tansom</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.linuxlore.co.uk/?p=138</guid>
		<description><![CDATA[Isn&#8217;t playing with a computer BIOS fun? No? Of course it is! I&#8217;m rebuilding my main desktop system at the moment. It isn&#8217;t anything spectacularly new, in fact it is based on a Athlon XP 2800+, but it runs Linux (Ubuntu 9.10 currently) with ample performance for my day to day tasks. Windows XP runs [...]]]></description>
			<content:encoded><![CDATA[<p>Isn&#8217;t playing with a computer BIOS fun? No? Of course it is!</p>
<p>I&#8217;m rebuilding my main desktop system at the moment. It isn&#8217;t anything spectacularly new, in fact it is based on a Athlon XP 2800+, but it runs Linux (Ubuntu 9.10 currently) with ample performance for my day to day tasks. Windows XP runs on it adequately, when it actually works (I clearly use it too little because it sulks and &#8216;blue screens&#8217; every few months, requiring a repair or reinstall).</p>
<p>Anyway, as part of this rebuild I decided that it made sense to get everything bang up to date, including the BIOS. The board is obsolete now, so the BIOS was a few years old and should be stable enough &#8211; wrong! The board is a Gigabyte GA-7S748-L (GA-7S748 with on board LAN), and was running the F5 revision. Updating was simple enough, just boot of my DOS USB key (yes, I have a USB key with DOS installed!) and run the utility. This brought things up to revision F9, which was the latest, and is where things started to go wrong.</p>
<p>The first thing I noticed was that my Windows 7 installation couldn&#8217;t see the HD, so I reached for a driver (Vista was the most up to date) to add during the install process. This didn&#8217;t work, and further investigation showed that the BIOS of the PATA PCI card the drives were connected to wasn&#8217;t active. It turned out that enabling USB legacy support disabled the card BIOS. Unfortunately, in order to configure the card BIOS you needed a keyboard, and since mine was a USB one, USB legacy support was required to use it &#8211; catch 22!! After trying a PCI SATA card instead I found that this was clearly a motherboard issue and not specific to one card or chipset.</p>
<p>So the next thing to do was to back off to the previous BIOS (F8 in this case) to see if the bug had been introduced in the latest BIOS upgrade. Unfortunately it seems that the F8 BIOS was completely bug ridden (so it is a shame it is still available for download). After installing it the computer wouldn&#8217;t boot at all, although it would allow use of the BIOS itself. This board has a facility to flash the BIOS from a BIOS based utility (Q-Flash), which sounds pretty handy in this case. Sadly it didn&#8217;t work, although thankfully, the failure didn&#8217;t damage the installed BIOS any further. After a bit of research with Google, I found that <a href="http://www.tomshardware.co.uk/forum/156663-12-problem-7s748-bios">if you disable USB support completely you can boot to a floppy</a> and re-flash the BIOS using a DOS based utility (will DOS ever die?!).</p>
<p>So, with this information I managed to get back to the F5 BIOS and all was working again. Out of curiosity I then tried the F6 BIOS and found that the USB legacy support clash with the PATA card BIOS was introduced there, so presumably exists in F7 too. Back to square one again then, with the original F5 BIOS and a working PC!</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F26%2Fbios-fun%2F&amp;title=BIOS+fun" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F26%2Fbios-fun%2F&amp;title=BIOS+fun" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F26%2Fbios-fun%2F&amp;title=BIOS+fun" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F26%2Fbios-fun%2F&amp;headline=BIOS+fun" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=BIOS+fun&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F26%2Fbios-fun%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=BIOS+fun&amp;u=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F26%2Fbios-fun%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=BIOS+fun&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F26%2Fbios-fun%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=BIOS+fun&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F26%2Fbios-fun%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=BIOS+fun&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F26%2Fbios-fun%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F26%2Fbios-fun%2F&amp;title=BIOS+fun&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F26%2Fbios-fun%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F26%2Fbios-fun%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F26%2Fbios-fun%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.linuxlore.co.uk/2010/02/26/bios-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft to provide default Ubuntu search?</title>
		<link>http://www.linuxlore.co.uk/2010/02/20/microsoft-to-provide-default-ubuntu-search/</link>
		<comments>http://www.linuxlore.co.uk/2010/02/20/microsoft-to-provide-default-ubuntu-search/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 16:59:40 +0000</pubDate>
		<dc:creator>Paul Tansom</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxlore.co.uk/?p=124</guid>
		<description><![CDATA[A while back I noted from Popey&#8217;s blog that Canonical are changing the default search engine in the next version of Ubuntu to Yahoo!. I don&#8217;t think I&#8217;ve been particularly impressed with the Yahoo! search since the 90&#8242;s sometime, when I switched to Google because it provided much easier access to the search results I [...]]]></description>
			<content:encoded><![CDATA[<p>A while back I noted from <a href="http://popey.com/blog/2010/01/26/yahoobuntu/">Popey&#8217;s blog</a> that Canonical are changing the default search engine in the next version of Ubuntu to Yahoo!. I don&#8217;t think I&#8217;ve been particularly impressed with the Yahoo! search since the 90&#8242;s sometime, when I switched to Google because it provided much easier access to the search results I wanted. This was largely because it was at that time unencumbered by advertising results being engineered into high listing placements. Sadly that isn&#8217;t the case today, and I have the same annoyance with Google providing endless &#8216;search noise&#8217; in the form of links to price comparison sites, or links into a site search for the terms you&#8217;ve used on Google, generally with results that are totally irrelevant. That is beside the point for this post though.</p>
<p>I note from <a href="http://www.computerworld.com/s/article/9158698/Microsoft_Yahoo_search_deal_gets_go_ahead">recent news</a> that Microsoft and Yahoo! have been given the go ahead for their search deal, which means that Microsoft Bing should be providing the search results for Yahoo! <a href="http://search.slashdot.org/story/10/02/19/0032250/Microsoft-Yahoo-Search-Deal-Gets-Go-Ahead-From-EU-US-DoJ?from=rss&#038;utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed%3A+Slashdot%2Fslashdot+%28Slashdot%29">by the end of the year</a>.</p>
<p>Interesting times, since that would appear to indicate that the average new user of Ubuntu will be using a Microsoft search engine, and one that <a href="http://www.linux.com/community/blogs/Bing-is-not-Google-but-it-is-a-spin-engine.-14904.html">may not be as good</a> for searching for information on Linux and Open Source software &#8211; although it has to be said I&#8217;ve not experimented with this myself.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F20%2Fmicrosoft-to-provide-default-ubuntu-search%2F&amp;title=Microsoft+to+provide+default+Ubuntu+search%3F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F20%2Fmicrosoft-to-provide-default-ubuntu-search%2F&amp;title=Microsoft+to+provide+default+Ubuntu+search%3F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F20%2Fmicrosoft-to-provide-default-ubuntu-search%2F&amp;title=Microsoft+to+provide+default+Ubuntu+search%3F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F20%2Fmicrosoft-to-provide-default-ubuntu-search%2F&amp;headline=Microsoft+to+provide+default+Ubuntu+search%3F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Microsoft+to+provide+default+Ubuntu+search%3F&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F20%2Fmicrosoft-to-provide-default-ubuntu-search%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Microsoft+to+provide+default+Ubuntu+search%3F&amp;u=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F20%2Fmicrosoft-to-provide-default-ubuntu-search%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Microsoft+to+provide+default+Ubuntu+search%3F&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F20%2Fmicrosoft-to-provide-default-ubuntu-search%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Microsoft+to+provide+default+Ubuntu+search%3F&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F20%2Fmicrosoft-to-provide-default-ubuntu-search%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Microsoft+to+provide+default+Ubuntu+search%3F&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F20%2Fmicrosoft-to-provide-default-ubuntu-search%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F20%2Fmicrosoft-to-provide-default-ubuntu-search%2F&amp;title=Microsoft+to+provide+default+Ubuntu+search%3F&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F20%2Fmicrosoft-to-provide-default-ubuntu-search%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F20%2Fmicrosoft-to-provide-default-ubuntu-search%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2010%2F02%2F20%2Fmicrosoft-to-provide-default-ubuntu-search%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.linuxlore.co.uk/2010/02/20/microsoft-to-provide-default-ubuntu-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>School IT education</title>
		<link>http://www.linuxlore.co.uk/2008/07/15/school-it-education/</link>
		<comments>http://www.linuxlore.co.uk/2008/07/15/school-it-education/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 00:19:01 +0000</pubDate>
		<dc:creator>Paul Tansom</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[education]]></category>

		<guid isPermaLink="false">http://www.linuxlore.co.uk/?p=43</guid>
		<description><![CDATA[I&#8217;ll start this post off by stating that I&#8217;m not having a go at any specific school with my comments here, least of all the one that my son attends, and that I attended too many years ago to mention. My sons school is, in fact, a very good school, and I&#8217;m not just saying [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll start this post off by stating that I&#8217;m not having a go at any specific school with my comments here, least of all the one that my son attends, and that I attended too many years ago to mention. My sons school is, in fact, a very good school, and I&#8217;m not just saying that because I am now a governor <img src='http://www.linuxlore.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>That said, let&#8217;s move on&#8230;</p>
<p>The other day my son came home and asked if he could use the computer. Nothing spectacularly unusual there, but shortly after logging on he came back to me asking if we had &#8220;the big blue W&#8221; on it somewhere. After a brief to and fro I ascertained that what he meant was Microsoft Word and that he wanted to show me something that he had done at school.</p>
<p>There&#8217;s a few points here. Firstly there is the comparison with when I was his age (he is seven). Back then I still had around 6 years until the ZX81 was launched and I got my first taste of computers. Now they are not only everywhere, but interconnected to the point where it didn&#8217;t even occur to him that the work he had been doing at school wouldn&#8217;t be accessible from home &#8211; bless him.</p>
<p>Secondly there&#8217;s the annoyance that from such an early age the &#8216;big blue W&#8217; and Microsoft Word are synonymous with word processing. I keep trying to tell myself that he is only seven and they need to keep things simple, but it is still irritating. The end result of this was that I sat down and explained what a word processor was, and that even though I didn&#8217;t have the one he used at school I did have another one. I was encouraged by the fact that, when presented with OpenOffice he set straight to work trying to reproduce the same sort of document he had at school, and did so with no help at all &#8211; beyond a brief grumble that there wasn&#8217;t much clipart! (actually I did show him where that was).</p>
<p>The next question baffled me a bit, &#8220;do we have the internet?&#8221;. My response was to tell him that we did, and that he used it regularly!  Then we headed down a familiar road, &#8220;no I mean the big blue e&#8221; <img src='http://www.linuxlore.co.uk/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  So off we went down the explanation of what a browser was and that he was already quite comfortable using both Opera and Firefox, as was his younger brother (who is 3). In fact they are both rather too good at some of the games on the <a href="http://www.bbc.co.uk/cbeebies/">CBeebies</a>, <a href="http://www.nickjr.co.uk/">Nick Jr</a> and <a href="http://www.bbc.co.uk/doctorwho/">BBC Dr Who</a> websites! Still, they are also quite happy playing with <a href="http://www.frozen-bubble.org/">Frozen Bubble</a> or <a href="http://www.tuxpaint.org/">Tux Paint</a> <img src='http://www.linuxlore.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F07%2F15%2Fschool-it-education%2F&amp;title=School+IT+education" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F07%2F15%2Fschool-it-education%2F&amp;title=School+IT+education" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F07%2F15%2Fschool-it-education%2F&amp;title=School+IT+education" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F07%2F15%2Fschool-it-education%2F&amp;headline=School+IT+education" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=School+IT+education&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F07%2F15%2Fschool-it-education%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=School+IT+education&amp;u=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F07%2F15%2Fschool-it-education%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=School+IT+education&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F07%2F15%2Fschool-it-education%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=School+IT+education&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F07%2F15%2Fschool-it-education%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=School+IT+education&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F07%2F15%2Fschool-it-education%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F07%2F15%2Fschool-it-education%2F&amp;title=School+IT+education&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F07%2F15%2Fschool-it-education%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F07%2F15%2Fschool-it-education%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F07%2F15%2Fschool-it-education%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.linuxlore.co.uk/2008/07/15/school-it-education/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3 first thoughts</title>
		<link>http://www.linuxlore.co.uk/2008/06/18/firefox-3-first-thoughts/</link>
		<comments>http://www.linuxlore.co.uk/2008/06/18/firefox-3-first-thoughts/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 12:34:34 +0000</pubDate>
		<dc:creator>Paul Tansom</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.linuxlore.co.uk/?p=41</guid>
		<description><![CDATA[Well I&#8217;ve only been using Firefox 3 for a very, very short while, but thought I&#8217;d make a few notes on my initial thoughts. I&#8217;ve not tried the beta or release candidate versions at all, so this is a real first impression. To start with it is worth noting that I&#8217;ve only installed the Windows [...]]]></description>
			<content:encoded><![CDATA[<p>Well I&#8217;ve only been using Firefox 3 for a very, very short while, but thought I&#8217;d make a few notes on my initial thoughts. I&#8217;ve not tried the beta or release candidate versions at all, so this is a real first impression.</p>
<p>To start with it is worth noting that I&#8217;ve only installed the Windows version, since I&#8217;m suffering using Microsoft on the desktop for a while. This is partly due to a couple of hardware failures, partly office reorganisations that are as yet unfinished, and partly forcing myself to keep my hand in &#8211; unfortunately I have to.</p>
<p>The first thing I noticed was that it was much faster and more responsive. Firefox 2 has, particularly in the past few weeks, been pausing for periods for no apparent reason. The second observation was that the memory footprint was much, much smaller, so this may well be linked. I tend to use a reasonable number of tabs when browsing and have been keeping an eye on the memory usage recently. I&#8217;ve been trimming things down to around 12 open tabs at a time and was amazed that Firefox was using between 200M and 260M, with no sign of reducing when tabs were closed. After installing Firefox 3 I checked and found that it was running at pretty much exactly half that, around 100M to 130M with the same 12 tabs as before the upgrade!</p>
<p>Part of this reduced footprint may be down to the few extensions that are now disabled due to incompatibility. With a major upgrade it is probably time to take a look through the extensions I&#8217;m using to see if any are no longer relevant. A few quick highlights of my extension usage are&#8230;</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/2367">Bookmark Sync and Sort</a> &#8211; sadly this is no longer compatible, and from a quick investigation it hasn&#8217;t been updated for a good while now, and the referenced home page has gone. Time to look for an alternative it seems. All this was doing was backing up my bookmarks to a WebDav folder on my intranet server, and at first glance there seems to be no obvious alternative. With a bit more digging I&#8217;ve found two, or perhaps just the one, options:</p>
<ul>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/2410">Foxmarks</a> &#8211; I ignored this first time round since it was linked to a service, but further investigation shows that you can use it with either WebDav or FTP, as well as install a server component. The original Foxmarks was based on the <a href="http://www.osafoundation.org/">OSAF</a> Cosmo server, but it looks as though this has been replaced by the <a href="http://chandlerproject.org/">Chandler project</a>, so a little more investigation is required.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/3605">Sitebar</a> &#8211; another one I passed over when finding Bookmark Sync and Sort. Again it is linked to a service, but it seems that you can download the server component if you want to. Sadly, according the the Mozilla Addons site it doesn&#8217;t currently support Firefox 3, but it does have the advantage of being open source which Foxmarks doesn&#8217;t seem to be. Again, more investigation is required.</li>
</ul>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1843">Firebug</a>, <a href="https://addons.mozilla.org/en-US/firefox/addon/1419">IE Tab</a> (remember this is on Windows!), <a href="https://addons.mozilla.org/en-US/firefox/addon/4125">It&#8217;s All Text!</a>, <a href="https://addons.mozilla.org/en-US/firefox/addon/4810">Speed Dial</a> and <a href="https://addons.mozilla.org/en-US/firefox/addon/60">Web Developer</a> are all available for Firefox 3, so that just leaves&#8230;</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1122">Tab Mix Plus</a> &#8211; not having this one is a bit painful, although partly because I&#8217;m not sure what features I&#8217;m missing that were part of it and what may now be officially available that I haven&#8217;t found yet! That said, I&#8217;ve just noted that there is a <a href="http://tmp.garyr.net/forum/viewtopic.php?t=8925">newer version</a>, just not listed on the Mozilla Addons site. I&#8217;ll have to give it a try and then work out what options I&#8217;m using that it provides &#8211; the session manager, the new tab button and undo closed tabs spring to mind.</p>
<p>There are a couple of other incompatible ones listed on my install. Google Photos Screensaver I think I had disabled anyway and RealPlayer Browser Plugin I hadn&#8217;t noticed before &#8211; although is probably responsible for blindingly easy downloads from YouTube etc. <img src='http://www.linuxlore.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>That&#8217;s what leaps out at me, bar the slight interface changes. No doubt more differences will become obvious over time.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F06%2F18%2Ffirefox-3-first-thoughts%2F&amp;title=Firefox+3+first+thoughts" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F06%2F18%2Ffirefox-3-first-thoughts%2F&amp;title=Firefox+3+first+thoughts" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F06%2F18%2Ffirefox-3-first-thoughts%2F&amp;title=Firefox+3+first+thoughts" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F06%2F18%2Ffirefox-3-first-thoughts%2F&amp;headline=Firefox+3+first+thoughts" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Firefox+3+first+thoughts&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F06%2F18%2Ffirefox-3-first-thoughts%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Firefox+3+first+thoughts&amp;u=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F06%2F18%2Ffirefox-3-first-thoughts%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Firefox+3+first+thoughts&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F06%2F18%2Ffirefox-3-first-thoughts%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Firefox+3+first+thoughts&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F06%2F18%2Ffirefox-3-first-thoughts%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Firefox+3+first+thoughts&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F06%2F18%2Ffirefox-3-first-thoughts%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F06%2F18%2Ffirefox-3-first-thoughts%2F&amp;title=Firefox+3+first+thoughts&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F06%2F18%2Ffirefox-3-first-thoughts%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F06%2F18%2Ffirefox-3-first-thoughts%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2008%2F06%2F18%2Ffirefox-3-first-thoughts%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.linuxlore.co.uk/2008/06/18/firefox-3-first-thoughts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing packages from the web in Ubuntu</title>
		<link>http://www.linuxlore.co.uk/2007/10/16/installing-packages-from-the-web-in-ubuntu/</link>
		<comments>http://www.linuxlore.co.uk/2007/10/16/installing-packages-from-the-web-in-ubuntu/#comments</comments>
		<pubDate>Tue, 16 Oct 2007 00:09:00 +0000</pubDate>
		<dc:creator>Paul Tansom</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Acrobat]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[deb]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[GDebi]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://intranet.home.aptanet.com/wordpress/?p=6</guid>
		<description><![CDATA[Without further ado I shall dive straight in with the warning that whenever you install a piece of software you should trust where you are getting it from. If you&#8217;ve chosen to use Ubuntu then presumably you&#8217;ve decided you trust the Ubuntu development process, but when you click on a link to download some software [...]]]></description>
			<content:encoded><![CDATA[<p>Without further ado I shall dive straight in with the warning that whenever you install a piece of software you should trust where you are getting it from. If you&#8217;ve chosen to use Ubuntu then presumably you&#8217;ve decided you trust the <a href="http://www.ubuntu.com/">Ubuntu</a> development process, but when you click on a link to download some software from a web site you need to be sure you&#8217;re on the correct site and that you trust those that run the site.</p>
<p>OK, with that out the way, I thought that I&#8217;d do a quick blog about the ease of installing .deb packages within Ubuntu (clearly I&#8217;m in a bit of a blogging mood today &#8211; something of a rarity!). I first stumbled across this a while ago when I decided to install the <a href="http://www.opera.com/">Opera browser</a> alongside my usual Firefox install. I headed off to the Opera website to download the .deb file that I knew, from previous Debian installs, would be there. What I was expecting to do was download it, do a test install run with <i>aptitude -s</i> to check for any missing dependencies and then, after installing any missing items, install Opera &#8211; all via the trusty, familiar command line.</p>
<p><span id="more-6"></span></p>
<p>Things didn&#8217;t go as expected though. When I clicked on the .deb file that was provided I was given the option to &#8216;Open with&#8217; the <i>GDebi Package Installer</i>. Even though I&#8217;ve been using Debian for some years now I&#8217;ve not come across this piece of software before. This is just another reminder, as if<br />
one were needed, that there is always something new to learn however familiar you are with something, and however long you&#8217;ve been using it. Anyway, I decided to let GDebi do its stuff, and after downloading the .deb file it added a couple of dependency packages to the install list and proceeded (after a couple of confirmation prompts) to install Opera and the required extra packages &#8211; all nice and easy, and one more demonstration that, certainly to my mind, Windows has a long way to go to catch up with Linux in terms of ease of use <img src='http://www.linuxlore.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Today I was reminded of this easy install path for non standard software once again.  Not to say that I had forgotten about it, but it isn&#8217;t often used. I was reminded, however, in a rather unexpected place. Once again I was off to download a piece of software to install, and yes, another proprietary piece, but some of us have to live and work in the real world where, unpalatable though it may be to some, we have to use proprietary software &#8211; and to be honest, I have to concede that there is likely to have to be a place for it in some cases, but that is getting off topic. I was off to the <a href="http://www.adobe.com/">Adobe</a> website to download the latest copy of the Adobe Reader (or Acrobat as it was once called). What I was expecting was to download the tar.gz file, extract it and then use the installer. I&#8217;ve done this before, and have tested pre-release versions in the past. One of my feedback comments was that it would be nice to have a .deb package version as well as the .rpm one. Well I can&#8217;t say how much impact that feedback had, but I can report that there is now a .deb package for the Adobe Reader. I suspect that the rise and rise of Ubuntu probably has at least something to do with this. Whatever the reason, I was presented with a .deb file, which then installed with ease using the GDebi Package Installer. Once again had a pain free installation on Linux &#8211; no battling with dependencies (as per the &#8216;olden days&#8217; of Red Hat), no bits of my system being over written with different versions of files that break existing applications (as can happen with Windows, mfc42.dll anyone?), just a few clicks and a pain free install.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F16%2Finstalling-packages-from-the-web-in-ubuntu%2F&amp;title=Installing+packages+from+the+web+in+Ubuntu" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F16%2Finstalling-packages-from-the-web-in-ubuntu%2F&amp;title=Installing+packages+from+the+web+in+Ubuntu" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F16%2Finstalling-packages-from-the-web-in-ubuntu%2F&amp;title=Installing+packages+from+the+web+in+Ubuntu" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F16%2Finstalling-packages-from-the-web-in-ubuntu%2F&amp;headline=Installing+packages+from+the+web+in+Ubuntu" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Installing+packages+from+the+web+in+Ubuntu&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F16%2Finstalling-packages-from-the-web-in-ubuntu%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Installing+packages+from+the+web+in+Ubuntu&amp;u=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F16%2Finstalling-packages-from-the-web-in-ubuntu%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Installing+packages+from+the+web+in+Ubuntu&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F16%2Finstalling-packages-from-the-web-in-ubuntu%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Installing+packages+from+the+web+in+Ubuntu&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F16%2Finstalling-packages-from-the-web-in-ubuntu%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Installing+packages+from+the+web+in+Ubuntu&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F16%2Finstalling-packages-from-the-web-in-ubuntu%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F16%2Finstalling-packages-from-the-web-in-ubuntu%2F&amp;title=Installing+packages+from+the+web+in+Ubuntu&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F16%2Finstalling-packages-from-the-web-in-ubuntu%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F16%2Finstalling-packages-from-the-web-in-ubuntu%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F16%2Finstalling-packages-from-the-web-in-ubuntu%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.linuxlore.co.uk/2007/10/16/installing-packages-from-the-web-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nm-applet problems with (X)Ubuntu 7.04</title>
		<link>http://www.linuxlore.co.uk/2007/10/15/nm-applet-problems-with-xubuntu-704/</link>
		<comments>http://www.linuxlore.co.uk/2007/10/15/nm-applet-problems-with-xubuntu-704/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 13:41:00 +0000</pubDate>
		<dc:creator>Paul Tansom</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[network manager]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[wicd]]></category>
		<category><![CDATA[XFCE]]></category>

		<guid isPermaLink="false">http://intranet.home.aptanet.com/wordpress/?p=7</guid>
		<description><![CDATA[Following on from the fun I&#8217;ve been having getting wireless cards working under Ubuntu (or Linux in general for that matter) I found a bit of a glitch in the 7.04 install I&#8217;m running on my laptop. So a matter of days before the release of 7.10 I&#8217;m beating 7.04 into submission! The story goes [...]]]></description>
			<content:encoded><![CDATA[<p>Following on from the fun I&#8217;ve been having getting wireless cards working under <a href="http://www.ubuntu.com/">Ubuntu</a> (or Linux in general for that matter) I found a bit of a glitch in the 7.04 install I&#8217;m running on my laptop. So a matter of days before the release of 7.10 I&#8217;m beating 7.04 into submission! The story goes a little like this:</p>
<p>After using a pretty standard Ubuntu install with <a href="http://www.gnome.org/">Gnome</a> for a while I decided to switch back to my preferred <a href="http://www.xfce.org/">XFCE</a> desktop. This was fairly straightforward, although the xubuntu-desktop package pulled in a few things I didn&#8217;t want, so I used it to populate the new install list (in <a href="http://www.nongnu.org/synaptic/">Synaptic</a>) and then trimmed the packages I didn&#8217;t want (mainly the office applications since I prefer to stick with <a href="http://www.openoffice.org/">OpenOffice</a>). One thing I noted after making the switch back was that there was no <a href="http://www.gnome.org/projects/NetworkManager/">Network  Manager</a> applet running, and a quick check of the package details seemed to indicate that it was part of Gnome, so I decided to look elsewhere for an equivalent. I experimented briefly with <a href="http://wicd.sourceforge.net/">Wicd</a>, but whilst doing that I found out that, although Network Manager is part of Gnome it is pretty free of Gnome dependencies and is largely independent, so I decided to switch back. Having done that I needed to look for a way of getting the applet running. This seemed simple enough, I just needed to add an entry into the Autostarted applications list as accessed from Applications -> Settings. Having done this all seemed well until, after a few reboots I noticed that I had multiple copies of the nm-applet in the panel &#8211; oops!</p>
<p><span id="more-7"></span></p>
<p>After a bit of digging around my file system in directories like /etc and ~/.config with the grep command I finally came up with some likely files, mainly <i>/etc/xdg/autostart/nm-applet.desktop</i>. Then with a bit of help from Google I came up with a couple of good references, mainly a bug report for Ubuntu [1], a reference on the <a href="http://ubuntuforums.org/">Ubuntu forums</a> [2] and another discussion linked from there [3].  With the aid of those and a bit of experimentation I came up with the following fix:</p>
<ol>
<li>First off I got rid of all the nm-applet instances running with <i>pkill nm-applet</i></li>
<li>Next I got rid of my hand installed autostart entry for the nm-applet, so to do this I deleted the file <i>~/.config/autostart/nm-applet.desktop</i></li>
<li>Then I made an edit to the system wide autostart entry for nm-applet, for this I need to change a line in the <i>/etc/xdg/autostart/nm-applet.desktop</i><br />
file from <i>OnlyShowIn=GNOME;</i> to <i>OnlyShowIn=GNOME;XFCE;</i>. This lets the nm-applet configuration show in the Autostarted applications utility when you&#8217;re running XFCE.</li>
<li>Finally I needed to clear out any information relating to nm-applet in the cached sessions. This was a case of editing two files in the <i>~/.cache/sessions/</i> directory.</li>
<ul>
<li>These were <i>xfce4-session-dusky:0</i> and  <i>xfce4-session-dusky:0.bak</i> <i>dusky</i> is the name of my machine, so  your files will have your machine name instead).</li>
<li>These files have a number of lines, the majority of which are grouped with  the prefix <i>Client0</i>, <i>Client1</i>, etc., so I looked for the groups with an entry for <i>CloneCommand</i> of <i>nm-applet</i> and removed the  groups.</li>
<li>I then had to renumber the <i>Client</i> groups so they were consecutive again starting at 0 and amend the Count entry towards the end of the file to match the number of groups I had (so one more than the last number used, remembering that you started at 0!).</li>
</ul>
<li>After the editing I could perform a reboot to confirm that all was well. I actually did a few of these, firstly with the <i>Save session for future logins</i> disabled to ensure that any cache information was completely clear. Next was another with the session disabled, just to be sure, and then one with<br />
it enabled again.</li>
</ol>
<p>All now appears fine with just a single nm-applet on my panel.</p>
<p>[1] <a href="https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/95064">https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/95064</a><br />
[2] <a href="http://ubuntuforums.org/archive/index.php/t-191708.html">http://ubuntuforums.org/archive/index.php/t-191708.html</a><br />
[3] <a href="http://www.nabble.com/Multiple-Instances-of-nm-applet-t4114321.html">http://www.nabble.com/Multiple-Instances-of-nm-applet-t4114321.html</a></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F15%2Fnm-applet-problems-with-xubuntu-704%2F&amp;title=nm-applet+problems+with+%28X%29Ubuntu+7.04" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F15%2Fnm-applet-problems-with-xubuntu-704%2F&amp;title=nm-applet+problems+with+%28X%29Ubuntu+7.04" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F15%2Fnm-applet-problems-with-xubuntu-704%2F&amp;title=nm-applet+problems+with+%28X%29Ubuntu+7.04" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F15%2Fnm-applet-problems-with-xubuntu-704%2F&amp;headline=nm-applet+problems+with+%28X%29Ubuntu+7.04" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=nm-applet+problems+with+%28X%29Ubuntu+7.04&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F15%2Fnm-applet-problems-with-xubuntu-704%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=nm-applet+problems+with+%28X%29Ubuntu+7.04&amp;u=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F15%2Fnm-applet-problems-with-xubuntu-704%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=nm-applet+problems+with+%28X%29Ubuntu+7.04&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F15%2Fnm-applet-problems-with-xubuntu-704%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=nm-applet+problems+with+%28X%29Ubuntu+7.04&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F15%2Fnm-applet-problems-with-xubuntu-704%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=nm-applet+problems+with+%28X%29Ubuntu+7.04&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F15%2Fnm-applet-problems-with-xubuntu-704%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F15%2Fnm-applet-problems-with-xubuntu-704%2F&amp;title=nm-applet+problems+with+%28X%29Ubuntu+7.04&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F15%2Fnm-applet-problems-with-xubuntu-704%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F15%2Fnm-applet-problems-with-xubuntu-704%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.linuxlore.co.uk%2F2007%2F10%2F15%2Fnm-applet-problems-with-xubuntu-704%2F" ><img class="lightsocial_img" src="http://www.linuxlore.co.uk/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.linuxlore.co.uk/2007/10/15/nm-applet-problems-with-xubuntu-704/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

