<?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>ieatpenguin</title>
	<atom:link href="http://r-dunn.co.uk/ieatpenguin/feed/" rel="self" type="application/rss+xml" />
	<link>http://r-dunn.co.uk/ieatpenguin</link>
	<description>an odd little man in an odd little world</description>
	<lastBuildDate>Mon, 08 Mar 2010 10:04:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Etiquette and the modern man, or, A breakdown of  society as evidenced by the lack of proper waistcoats in Cambridge</title>
		<link>http://r-dunn.co.uk/ieatpenguin/random/etiquette-and-the-modern-man-or-a-breakdown-of-society-as-evidenced-by-the-lack-of-proper-waistcoats-in-cambridge/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/random/etiquette-and-the-modern-man-or-a-breakdown-of-society-as-evidenced-by-the-lack-of-proper-waistcoats-in-cambridge/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 10:02:32 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=576</guid>
		<description><![CDATA[I&#8217;ve often been told that I&#8217;m an old man trapped in a young man&#8217;s body. This is mostly true, except for the young man&#8217;s body bit as that is getting increasingly age weary..
Anyway. Having lived, studied, worked and socialised in Cambridge for several years now I would like to think I have something of an [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve often been told that I&#8217;m an old man trapped in a young man&#8217;s body. This is mostly true, except for the young man&#8217;s body bit as that is getting increasingly age weary..</p>
<p>Anyway. Having lived, studied, worked and socialised in Cambridge for several years now I would like to think I have something of an understanding of etiquette. In particular, the good old fashioned waistcoat. Why we don&#8217;t really wear these any more I&#8217;m not sure, and the Edwardian in me somewhat laments the loss of this garment of clothing.</p>
<p>Worse however is, I find, the lack of <em>proper</em> waistcoats seemingly anywhere, but worse &#8211; in the hive of evening wear etiquette and culture that is Cambridge. Black-tie is formal wear of a seemingly failing age. No one I&#8217;ve spoken to seems to know the proper etiquette of Black-tie wear. Cummerbunds are all well and good for friendly formal dinners, but for the most formal of occasions they simply are not done. The correct dress is a waistcoat. Wide open in a sort of u-shape to three, or four if you are feeling sufficiently flamboyant, buttons; to allow the shirt to be properly seen.</p>
<p>The only waistcoats available in Cambridge are morning waistcoats, high-breasted, oft-six buttoned garments which in many cases where lovely items, but not for formal dinner wear. Extensive searching found what I was after on-line, but given the cost I&#8217;d much rather just get one tailored.</p>
<p>Of all places, I had expected Cambridge to maintain an observation of proper etiquette, but as most suit shops there now seem to stock American style tuxedos, I suppose I have to concede that perhaps I was born about a hundred years too late.</p>
]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/random/etiquette-and-the-modern-man-or-a-breakdown-of-society-as-evidenced-by-the-lack-of-proper-waistcoats-in-cambridge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mounting a network drive in Linux (Ubuntu)</title>
		<link>http://r-dunn.co.uk/ieatpenguin/software/mounting-a-network-drive-in-linux/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/software/mounting-a-network-drive-in-linux/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 12:54:25 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=571</guid>
		<description><![CDATA[This is a very simple thing to do, it isn&#8217;t however as simple as one might think if you are coming from a Windows background, and are used to mapping a network drive from the Tools menu. As a note this is a guide for Ubuntu, although I have it working fine on both Ubuntu [...]]]></description>
			<content:encoded><![CDATA[<p>This is a very simple thing to do, it isn&#8217;t however as simple as one might think if you are coming from a Windows background, and are used to mapping a network drive from the Tools menu. As a note this is a guide for Ubuntu, although I have it working fine on both Ubuntu and Fedora, use the appropriate package manager/command line for Fed and the rest is the same.</p>
<p>First, we need to make sure that samba is installed:</p>
<blockquote><p>sudo apt-get install smbfs</p></blockquote>
<p>Next, we need to make a directory to mount the drive too. As an example, I&#8217;ve just reinstalled my Ubuntu (and Fedora) distribution, and so want to map the music drive on my server. I chose /media/ as the logical place to stick my network drives:</p>
<blockquote><p>sudo mkdir /media/music</p></blockquote>
<p>Next we need to tell the file system table where the drives are, and where to mount them. We also need to include our login credentials (will cover this later).</p>
<blockquote><p>gksudo gedit /etc/fstab</p></blockquote>
<p>Scroll to the bottom of the file and add the following:</p>
<blockquote><p>#Mounting Network Drives<br />
//SERVER/SHARE-NAME /MOUNT-POINT smbfs credentials=/credentials-file-location</p></blockquote>
<p>To make the above make a bit more sense, here is my configuration:</p>
<blockquote><p>//192.168.1.50/Music /media/music smbfs credentials=/home/russell/credentials.smbcredentials<br />
//192.168.1.50/Videos /media/videos smbfs credentials=/home/russell/credentials.smbcredentials<br />
//192.168.1.50/Software /media/software smbfs credentials=/home/russell/credentials.smbcredentials</p></blockquote>
<p>What this will do is to check within the credentials file (more on this at the bottom) your username and password for your server (I am running a Windows Home Server as an example).</p>
<p>Next, we need to make the filesystem mount the drive, which we do simply with:</p>
<blockquote><p>sudo mount -a</p></blockquote>
<p>Finally, we need to make that credentials file. Simply navigate to your chosen directory (I stuck it in my /home/russell directory for ease), create a new file with the following information:</p>
<blockquote><p>username=<em>username</em><br />
password=<em>password</em></p></blockquote>
<p>And save it with the same filename you gave the /fstab/. Thats it.</p>
]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/software/mounting-a-network-drive-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Denis Avey</title>
		<link>http://r-dunn.co.uk/ieatpenguin/random/denis-avey/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/random/denis-avey/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 10:18:59 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=569</guid>
		<description><![CDATA[This man is a hero in every sense of the word. Worth 5 minutes of your time.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://women.timesonline.co.uk/tol/life_and_style/women/the_way_we_live/article7039572.ece">This man</a> is a hero in every sense of the word. Worth 5 minutes of your time.</p>
]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/random/denis-avey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EU Probes Google Antitrust Case</title>
		<link>http://r-dunn.co.uk/ieatpenguin/uncategorized/eu-probes-google-antitrust-case/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/uncategorized/eu-probes-google-antitrust-case/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 12:27:17 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=567</guid>
		<description><![CDATA[This is long, long, LONG overdue.
I was going to write a few things, but this comment on the Times Website succinctly summed it up, so thanks to &#8220;I.M. Jolly&#8221;.
The difference between &#8220;do no Evil..&#8221; Google and Microsoft is, MS are a damn sight less hypocritical about their monopoly postion. And abuse thereof.
If the simple fact [...]]]></description>
			<content:encoded><![CDATA[<p>This is long, long, LONG overdue.</p>
<p>I was going to write a few things, but this comment on the Times Website succinctly summed it up, so thanks to &#8220;I.M. Jolly&#8221;.</p>
<blockquote><p>The difference between &#8220;do no Evil..&#8221; Google and Microsoft is, MS are a damn sight less hypocritical about their monopoly postion. And abuse thereof.</p>
<p>If the simple fact that &#8220;Google is rapidly increasing how much it spends on lobbying in the United States..&#8221; doesnt tell you anything, I dont know what else will &#8211; ok Google fanboys, you can now go back to your Google searches for everything, Your GMail with targeted ads based on the content of your mails and put your head back under the pillow. For the rest of us, I am sure we can agree that some scrutiny of a company which has basically won control of the internet, while gaining a very, very large amount of personal users data and their surfing habits, is entirely overdue.</p>
<p>Or, maybe, as the Google CEO (Eric Schmidt) himself says, &#8220;&#8221;If you have something that you don&#8217;t want anyone to know, maybe you shouldn&#8217;t be doing it in the first place..&#8221; &#8211; unless of course, that knowledge is personal details of his, obtained by CNET Journalists only via Google searches. Google blacklisted CNET for about a year over this, then again, they really do have to the power to be both evil and hypocritical, whenever it suits. The public have somewhat less choice in blacklisting which Information Google collects from them.</p>
<p>However, Google only use the info they have collected on YOU to sell ads, dont they? No problem there, then.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/uncategorized/eu-probes-google-antitrust-case/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rsync and Bash</title>
		<link>http://r-dunn.co.uk/ieatpenguin/software/rsync-and-bash/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/software/rsync-and-bash/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 10:02:26 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=560</guid>
		<description><![CDATA[Have had an interesting morning delving into Bash, on MSN with Jasper, which is not something I get to do often enough.
The upshot was a nice and fairly sophisticated rsync script to backup some files, which I won&#8217;t paste here as it&#8217;s Jaspers baby.
However, I did think up a [much] simpler script to enable a [...]]]></description>
			<content:encoded><![CDATA[<p>Have had an interesting morning delving into Bash, on MSN with Jasper, which is not something I get to do often enough.</p>
<p>The upshot was a nice and fairly sophisticated rsync script to backup some files, which I won&#8217;t paste here as it&#8217;s Jaspers baby.</p>
<p>However, I did think up a [much] simpler script to enable a quick and dirty backup of any particular folder to any particular media.</p>
<blockquote>
<pre dir="ltr">#!/bin/bash
sudo rsync -av --progress --delete --log-file=/dir/$(date +%Y%m%d)_rsync.log /dir /media/dirBackup
</pre>
</blockquote>
<p>You can of course exclude certain files from the backup with:</p>
<blockquote>
<pre dir="ltr">--exclude "/dir/.jpg"
</pre>
</blockquote>
<p>Naturally, no one wants to type it out everytime and so lets make it into an executable script:</p>
<blockquote>
<pre dir="ltr">sudo chmod +x /path/rsync-backup.sh
</pre>
</blockquote>
<p>So you now have an executable script you can call whenever you want, or you can of course create a cron job and have it run automatically.</p>
<hr />
Here&#8217;s a slightly more sophisticated backup script that revolves on a weekly basis, and then clears out any backups that are older then this.</p>
<blockquote>
<pre dir="ltr">#!/bin/sh
# directory to backup
BDIR=/home/$USER

# excludes file
EXCLUDES=$HOME/cron/excludes

# name of the backup machine
BSERVER=server

# password on the backup server
export RSYNC_PASSWORD=

# lets get down to it
BACKUPDIR=`date +%A`
OPTS="--force --ignore-errors --delete-excluded --exclude-from=$EXCLUDES
      --delete --backup --backup-dir=/$BACKUPDIR -a"

export PATH=$PATH:/bin:/usr/bin:/usr/local/bin

# the following line clears the last weeks incremental directory
[ -d $HOME/emptydir ] || mkdir $HOME/emptydir
rsync --delete -a $HOME/emptydir/ $BSERVER::$USER/$BACKUPDIR/
rmdir $HOME/emptydir

# now the actual transfer
rsync $OPTS $BDIR $BSERVER::$USER/current
</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/software/rsync-and-bash/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Brandy &amp; Thomas Tallis</title>
		<link>http://r-dunn.co.uk/ieatpenguin/random/brandy-thomas-tallis/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/random/brandy-thomas-tallis/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 09:49:49 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=557</guid>
		<description><![CDATA[I would like to have the right to die on my lawn with a glass of brandy and Thomas Tallis on my ipod.
Sir Terry Pratchett on the news this morning, regarding his desire for a tribunal to be set up to review &#8220;right to die&#8221; cases. Such a beautiful little sentiment that it brought a [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>I would like to have the right to die on my lawn with a glass of brandy and Thomas Tallis on my ipod.</p></blockquote>
<p>Sir Terry Pratchett on the news this morning, regarding his desire for a tribunal to be set up to review &#8220;right to die&#8221; cases. Such a beautiful little sentiment that it brought a tear to my eye.</p>
<blockquote></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/random/brandy-thomas-tallis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Caffeine</title>
		<link>http://r-dunn.co.uk/ieatpenguin/random/caffeine/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/random/caffeine/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 13:57:41 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=555</guid>
		<description><![CDATA[I shall from Monday be trying to cut caffeine out of my diet.
I shan&#8217;t imagine I&#8217;ll be successful, but here goes.
]]></description>
			<content:encoded><![CDATA[<p>I shall from Monday be trying to cut caffeine out of my diet.<br />
I shan&#8217;t imagine I&#8217;ll be successful, but here goes.</p>
]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/random/caffeine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Service Time</title>
		<link>http://r-dunn.co.uk/ieatpenguin/mx-5/service-time/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/mx-5/service-time/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 15:32:15 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[MX-5]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=553</guid>
		<description><![CDATA[So I&#8217;m going to be servicing the car this weekend. Quite an overhaul. It&#8217;s running well but I thought it deserved some tlc. I&#8217;m replacing all the filters (Air, Fuel and Oil), and I&#8217;m going to flush the coolant and renew the mix. I will also be replacing the fan belt, and then hopefully I [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;m going to be servicing the car this weekend. Quite an overhaul. It&#8217;s running well but I thought it deserved some tlc. I&#8217;m replacing all the filters (Air, Fuel and Oil), and I&#8217;m going to flush the coolant and renew the mix. I will also be replacing the fan belt, and then hopefully I can get the new brakes sorted. Fun fun fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/mx-5/service-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Googlenet</title>
		<link>http://r-dunn.co.uk/ieatpenguin/random/googlenet/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/random/googlenet/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 11:35:54 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=550</guid>
		<description><![CDATA[The Register is becoming something of an anti-google spread these days. I realise that there is much to be anti-google about, and I laud them for their articles, but the Reg is usually better balanced.
Anyway, a few worrying articles to read today. Especially the one with the statistics about Googles private network. 10% of all [...]]]></description>
			<content:encoded><![CDATA[<p>The Register is becoming something of an anti-google spread these days. I realise that there is much to be anti-google about, and I laud them for their articles, but the Reg is usually better balanced.</p>
<p>Anyway, a few worrying articles to read today. Especially the one with the statistics about Googles <a title="Googlenet" href="http://www.theregister.co.uk/2010/01/08/google_nexus_partner_friendly/">private </a>network. 10% of all internet traffic is colossal, much bigger then the nearest competitor to the internet &#8211; Internet2. And Google are the only company big enough to realistically challenge the internet, if they decided to do so. And given their track record, who&#8217;s to say they won&#8217;t?</p>
]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/random/googlenet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eric Schmidt is not a Nice Person</title>
		<link>http://r-dunn.co.uk/ieatpenguin/random/eric-schmidt-is-not-a-nice-person/</link>
		<comments>http://r-dunn.co.uk/ieatpenguin/random/eric-schmidt-is-not-a-nice-person/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 09:45:47 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://r-dunn.co.uk/ieatpenguin/?p=545</guid>
		<description><![CDATA[Clever he may be, a marketing genius certainly. But nice? Only miscreants worry about net privacy? I wonder, why is net privacy any different to privacy in ones own house?
I certainly wouldn&#8217;t want anyone to come into my house and look around, why would I want to disclose any details on the internet? Least alone [...]]]></description>
			<content:encoded><![CDATA[<p>Clever he may be, a marketing genius certainly. But <a title="Eric Schmidt is a goit" href="http://www.theregister.co.uk/2009/12/07/schmidt_on_privacy/">nice</a>? Only miscreants worry about net privacy? I wonder, why is net privacy any different to privacy in ones own house?</p>
<p>I certainly wouldn&#8217;t want anyone to come into my house and look around, why would I want to disclose any details on the internet? Least alone to an advertising farm powerhouse, which is essentially all Google is good for these days.</p>
<p>Ok, the loss of myself as a customer won&#8217;t hurt Google one bit, but if I take 4cents off Schmidt&#8217;s pay cheque at the end of the year, it&#8217;s good enough for me.</p>
<p>After yesterday, all cookies and urls from Google were blocked on my computers. I wonder how much of the internet this will change for me, given the all reaching nature of the giant virus. We shall see.</p>
]]></content:encoded>
			<wfw:commentRss>http://r-dunn.co.uk/ieatpenguin/random/eric-schmidt-is-not-a-nice-person/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
