<?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>Bertie Baggio&#039;s Wonderland &#187; linux</title>
	<atom:link href="http://blog.roberthallam.org/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.roberthallam.org</link>
	<description>armchair rebel and cheerful raconteur</description>
	<lastBuildDate>Thu, 01 Sep 2011 13:15:12 +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>Limit the Rate of SCP</title>
		<link>http://blog.roberthallam.org/2010/09/limit-the-rate-of-scp/</link>
		<comments>http://blog.roberthallam.org/2010/09/limit-the-rate-of-scp/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 15:40:49 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[scp]]></category>

		<guid isPermaLink="false">http://blog.roberthallam.org/?p=363</guid>
		<description><![CDATA[I was using scp to upload some files (as you should!) and maxing out my connection while doing it. It made using ssh problematic! Fortunately there&#8217;s an easy switch to use to limit the rate: scp -l 1024 /file1 user@host:/file2 The -l switch limits scp to the specified upload rate in kilobits per second. Handy!]]></description>
		<wfw:commentRss>http://blog.roberthallam.org/2010/09/limit-the-rate-of-scp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix for &#8220;Current Password No Longer Matches Keyring&#8221;</title>
		<link>http://blog.roberthallam.org/2010/07/current-password-does-not-match-keyring-fix/</link>
		<comments>http://blog.roberthallam.org/2010/07/current-password-does-not-match-keyring-fix/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 10:29:37 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[all posts]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[keyring]]></category>

		<guid isPermaLink="false">http://blog.roberthallam.org/?p=343</guid>
		<description><![CDATA[A I may have mentioned, I recently reinstalled Ubuntu (had been using Windows 7 for a few months). Since the reinstall I had changed my common login password for the other computers on the network so of course I updated my user password for the new install. The slight problem came when I used any [...]]]></description>
		<wfw:commentRss>http://blog.roberthallam.org/2010/07/current-password-does-not-match-keyring-fix/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>[Solved] sshd Does Not Run At System Startup (Ubuntu)</title>
		<link>http://blog.roberthallam.org/2010/06/sshd-not-running-at-startup/</link>
		<comments>http://blog.roberthallam.org/2010/06/sshd-not-running-at-startup/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 13:08:27 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[all posts]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.roberthallam.org/?p=324</guid>
		<description><![CDATA[Problem: sshd does not appear to start on system boot, but runs fine when started from a terminal with /etc/init.d/ssh start Update Dec 2010: Thanks to Jeremie here. Change the following in /etc/init.d./ssh to stop sshd starting before the network is ready: Change: # Required-Start: $remote_fs $syslog to: # Required-Start: $remote_fs $syslog $network Merci Jeremie! [...]]]></description>
		<wfw:commentRss>http://blog.roberthallam.org/2010/06/sshd-not-running-at-startup/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Extract A Single Image From A Video Using FFMPEG</title>
		<link>http://blog.roberthallam.org/2010/06/extract-a-single-image-from-a-video-using-ffmpeg/</link>
		<comments>http://blog.roberthallam.org/2010/06/extract-a-single-image-from-a-video-using-ffmpeg/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 22:09:44 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[all posts]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[wisdom]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.roberthallam.org/?p=308</guid>
		<description><![CDATA[Dead handy, this: ffmpeg -ss 0.5 -i inputfile.mp4 -t 1 -s 480x300 -f image2 imagefile.jpg The various options: -t 1: limit to 1 frame extracted -ss 0.5: point of movie to extract from (ie seek to 0.5 seconds) -s 480x300: frame size of image to output (image resized to fit dimensions) -f image2: forces format [...]]]></description>
		<wfw:commentRss>http://blog.roberthallam.org/2010/06/extract-a-single-image-from-a-video-using-ffmpeg/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Connect to a WPA/WPA2 Secured Network In Linux</title>
		<link>http://blog.roberthallam.org/2010/05/connect-to-a-wpawpa2-secured-network-in-linux/</link>
		<comments>http://blog.roberthallam.org/2010/05/connect-to-a-wpawpa2-secured-network-in-linux/#comments</comments>
		<pubDate>Wed, 19 May 2010 02:02:31 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[all posts]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[upgrades]]></category>
		<category><![CDATA[wpa]]></category>
		<category><![CDATA[wpa2]]></category>

		<guid isPermaLink="false">http://blog.roberthallam.org/?p=300</guid>
		<description><![CDATA[This turned out to be dead easy, although it took a bit of futzing around due to my own slowness. The situation arose during an a failed upgrade of my dad&#8217;s machine to Ubuntu 10.04 (aka Lucid Lynx). I&#8217;m sensing a pattern here; I don&#8217;t think there has been an upgrade that has gone smoothly [...]]]></description>
		<wfw:commentRss>http://blog.roberthallam.org/2010/05/connect-to-a-wpawpa2-secured-network-in-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10 Karmic Upgrade Problem Fixed (mountall/init)</title>
		<link>http://blog.roberthallam.org/2010/03/ubuntu-9-10-karmic-upgrade-problem-fixed-mountallinit/</link>
		<comments>http://blog.roberthallam.org/2010/03/ubuntu-9-10-karmic-upgrade-problem-fixed-mountallinit/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 00:29:55 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[all posts]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[fix]]></category>

		<guid isPermaLink="false">http://blog.roberthallam.org/?p=287</guid>
		<description><![CDATA[(Jump to the bonus section on sorting a removed Gnome panel) I finally got round to doing the Jaunty-&#62;Karmic upgrade on a troublesome machine. Well, re-doing. I made an abortive attempt to install it on this particular exhibit of electronic arthritis back before I left for Barcelona, which ended in me reinstalling 9.04. Anyway, for [...]]]></description>
		<wfw:commentRss>http://blog.roberthallam.org/2010/03/ubuntu-9-10-karmic-upgrade-problem-fixed-mountallinit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Saves The Day</title>
		<link>http://blog.roberthallam.org/2009/11/linux-saves-the-day/</link>
		<comments>http://blog.roberthallam.org/2009/11/linux-saves-the-day/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 23:47:37 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://eristic.eu/?p=43</guid>
		<description><![CDATA[For those of you who don;t follow my other blog, I&#8217;m in Barcelona at the moment. I&#8217;m here to learn Spanish and chew bubblegum. And I&#8217;m all out of bubblegum, etc. Anyway, Linux let me get in touch with my dad. The short story is (if you want long walls of text, read my bit [...]]]></description>
		<wfw:commentRss>http://blog.roberthallam.org/2009/11/linux-saves-the-day/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Count Arguments In A Bash Script</title>
		<link>http://blog.roberthallam.org/2009/10/count-arguments-in-a-bash-script/</link>
		<comments>http://blog.roberthallam.org/2009/10/count-arguments-in-a-bash-script/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 15:34:23 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[all posts]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://blog.roberthallam.org/?p=235</guid>
		<description><![CDATA[Another useful tip I&#8217;m sure most people will be familiar with, but in bash scripts $# stores the number of arguments passed to the script. Eg, combine with $@ (all arguments) for batch processing (what I used it for): foreach $arg in $@; do [stuff] [compare with $# to tell remaining items] done Very basic [...]]]></description>
		<wfw:commentRss>http://blog.roberthallam.org/2009/10/count-arguments-in-a-bash-script/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Back to Ubuntu</title>
		<link>http://blog.roberthallam.org/2008/02/back-to-ubuntu/</link>
		<comments>http://blog.roberthallam.org/2008/02/back-to-ubuntu/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 20:27:54 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[all posts]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[edgy eft]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://blog.roberthallam.org/2008/02/back-to-ubuntu/</guid>
		<description><![CDATA[So I&#8217;m suppose to be revising for the Big Testâ„¢ that I&#8217;ve got tomorrow, but instead I decided to reboot in Ubuntu. And by gosh, I&#8217;d forgotten how nice it looks. And this is still the 7.04 version! Sounds are nice too &#8211; it&#8217;s probably just subjective perception, but playing music sounds nicer too, although [...]]]></description>
		<wfw:commentRss>http://blog.roberthallam.org/2008/02/back-to-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Irritation: Falling back to the standard locale (&#8220;C&#8221;)</title>
		<link>http://blog.roberthallam.org/2007/11/irritation-falling-back-to-the-standard-locale-c/</link>
		<comments>http://blog.roberthallam.org/2007/11/irritation-falling-back-to-the-standard-locale-c/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 00:11:53 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[all posts]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[localeconf]]></category>
		<category><![CDATA[locales]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://blog.roberthallam.org/2007/11/irritation-falling-back-to-the-standard-locale-c/</guid>
		<description><![CDATA[Due to the pressures of university (labs, reports, and a dissertation), coupled with some of the other things I&#8217;ve been doing I haven&#8217;t posted here in ages. For now I&#8217;ll have to give you a post that is as much for you as it is for me. Occasionally on my debian box I get an [...]]]></description>
		<wfw:commentRss>http://blog.roberthallam.org/2007/11/irritation-falling-back-to-the-standard-locale-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

