<?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>cloudplasma &#187; linux</title>
	<atom:link href="http://cloudplasma.co.uk/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://cloudplasma.co.uk</link>
	<description>various photographs and (oh too few) mini linux tips</description>
	<lastBuildDate>Sun, 13 May 2012 17:41:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>gimp 2.8 on linux mint debian edition</title>
		<link>http://cloudplasma.co.uk/2012/05/gimp-2-8-on-linux-mint-debian-edition/</link>
		<comments>http://cloudplasma.co.uk/2012/05/gimp-2-8-on-linux-mint-debian-edition/#comments</comments>
		<pubDate>Sun, 13 May 2012 17:41:54 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[gimp]]></category>
		<category><![CDATA[gimp 2.8]]></category>
		<category><![CDATA[lmde]]></category>
		<category><![CDATA[photo editing]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=2175</guid>
		<description><![CDATA[gimp 2.8 has been released but it’ll take a while for it to filter through to the repos of your favourite distro. can’t wait? install it from source. i followed this very helpful tutorial. it’s for debian but there are hints for lmde also. i ran into one issue… had to do an apt-get install [...]]]></description>
			<content:encoded><![CDATA[<p><a title="the gimp - homepage" href="http://gimp.org" target="_blank">gimp 2.8</a> has been released but it’ll take a while for it to filter through to the repos of your favourite distro. can’t wait? install it from source. i followed <a title="lindqvist - compiling gimp 2.8 on debian" href="http://verahill.blogspot.co.uk/2012/05/compiling-gimp-28-on-debian.html" target="_blank">this</a> very helpful tutorial. it’s for debian but there are hints for lmde also. i ran into one issue… had to do an <strong>apt-get install intltool</strong> in order for things to compile correctly. single window mode? yes. some of your scripts may throw some errors but all that i’ve tried are fully functional despite this.</p>
<p><a href="http://cloudplasma.co.uk/wp-content/uploads/gimp2.8.png" rel="lightbox[2175]" title="gimp2.8"><img class="aligncenter size-large wp-image-2174" title="gimp2.8" src="http://cloudplasma.co.uk/wp-content/uploads/gimp2.8-494x270.png" alt="" width="494" height="270" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=blog+post%3A+gimp+2.8+on+linux+mint+debian+edition...+http%3A%2F%2Ffrdy.co.uk%2FJHqmwj" title="post to twitter"><img class="nothumb" src="http://cloudplasma.co.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://cloudplasma.co.uk/2012/05/gimp-2-8-on-linux-mint-debian-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>deny access to phpmyadmin via ip — apache</title>
		<link>http://cloudplasma.co.uk/2012/05/deny-access-to-phpmyadmin-via-ip-apache/</link>
		<comments>http://cloudplasma.co.uk/2012/05/deny-access-to-phpmyadmin-via-ip-apache/#comments</comments>
		<pubDate>Wed, 09 May 2012 10:01:04 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apache2.con]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[deny by ip address]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=2164</guid>
		<description><![CDATA[want to protect your phpmyadmin directory from unauthorised access? i do. tried the usual .htaccess tricks but couldn’t get them to work… don’t know if it was to do with /var/www/phpmyadmin being a symbolic link of /usr/share/phpmyadmin or something else. i’m using debian but your setup should be similar if you’re using apache 2. i [...]]]></description>
			<content:encoded><![CDATA[<p>want to protect your <a title="phpmyadmin - homepage" href="http://www.phpmyadmin.net/" target="_blank">phpmyadmin</a> directory from unauthorised access? i do. tried the usual .htaccess tricks but couldn’t get them to work… don’t know if it was to do with /var/www/phpmyadmin being a symbolic link of /usr/share/phpmyadmin or something else. i’m using <a title="debian - homepage" href="http://www.debian.org/" target="_blank">debian</a> but your setup should be similar if you’re using <a title="apache http server - homepage" href="http://httpd.apache.org/" target="_blank">apache 2</a>.</p>
<p>i wanted only computers on my local network to be able to login (or if i connect remotely using an ssh tunnel) so one solution is to add the following to the end of /etc/apache2/apache2.conf (remember to back up your original apache2.conf before you start tinkering)</p>
<p><strong>#deny access to phpmyadmin</strong><br />
<strong>&lt;Directory /var/www/phpmyadmin&gt;</strong><br />
<strong>        Order Deny,Allow</strong><br />
<strong>        Deny from all</strong><br />
<strong>        Allow from 10.0.0.1/24</strong><br />
<strong>&lt;/Directory&gt;</strong></p>
<p>you’ll need to the reload apache using</p>
<p><strong>/etc/init.d/apache2 reload</strong></p>
<p>if you wanted to add another IP address or domain insert another Allow line like this</p>
<p><strong>#deny access to phpmyadmin</strong><br />
<strong>&lt;Directory /var/www/phpmyadmin&gt;</strong><br />
<strong>        Order Deny,Allow</strong><br />
<strong>        Deny from all</strong><br />
<strong>        Allow from 10.0.0.1/24</strong><br />
<strong>        Allow from .yourdomain.com</strong><br />
<strong>        Allow from 102.51.333.65</strong><br />
<strong>&lt;/Directory&gt;</strong></p>
<p>and reload apache again.<br />
<strong></strong></p>
<p> </p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=blog+post%3A+deny+access+to+phpmyadmin+via+ip+%E2%80%94+apache...+http%3A%2F%2Ffrdy.co.uk%2FKl9uOB" title="post to twitter"><img class="nothumb" src="http://cloudplasma.co.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://cloudplasma.co.uk/2012/05/deny-access-to-phpmyadmin-via-ip-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux mint debian 201204 — a little look</title>
		<link>http://cloudplasma.co.uk/2012/05/linux-mint-debian-201204-a-little-look/</link>
		<comments>http://cloudplasma.co.uk/2012/05/linux-mint-debian-201204-a-little-look/#comments</comments>
		<pubDate>Mon, 07 May 2012 09:27:05 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux mint]]></category>
		<category><![CDATA[linux mint debian 201204]]></category>
		<category><![CDATA[screenshots]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=2159</guid>
		<description><![CDATA[been a while since i used linux mint in anger. been running the beta version of ubuntu 12.04 (with xfce) until the ‘stable’ version was released. it’s time to switch. i love debian on my servers but on the desktop i find it slightly too restrictive. the best of both worlds? linux mint debian. the [...]]]></description>
			<content:encoded><![CDATA[<p>been a while since i used linux mint in anger. been running the beta version of ubuntu 12.04 (with xfce) until the ‘stable’ version was released. it’s time to switch. i love debian on my servers but on the desktop i find it slightly too restrictive. the best of both worlds? <a title="linux mint debian - download" href="http://www.linuxmint.com/download_lmde.php" target="_blank">linux mint debian</a>. the UI’s slicker…there are more packages available out of the box. it’s a rolling distribution (based on debian testing) so no major updates every 6 months. all good. LMDE uses MATE/Cinnamon and it’s MATE by default. this didn’t work for me…couldn’t even get to a desktop. switching to the cinnamon interface (at the login screen) sorted this. stabilty? top notch. the menus are sensibly laid out and it’s great not to be constrained by the full gnome 3. not the fastest boot in the world but that’s not too much of a problem. will be sticking with it for a while i think. some screen shots can be seen below…</p>
<p><a href="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_1.png" rel="lightbox[2159]" title="linux_mint_debian_1"><img class="aligncenter size-large wp-image-2151" title="linux_mint_debian_1" src="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_1-494x277.png" alt="" width="494" height="277" /></a>decent options for folders and files with a right-click</p>
<p><a href="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_2.png" rel="lightbox[2159]" title="linux_mint_debian_2"><img class="aligncenter size-large wp-image-2152" title="linux_mint_debian_2" src="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_2-494x277.png" alt="" width="494" height="277" /></a>sensible start menu. sensible.</p>
<p><a href="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_3.png" rel="lightbox[2159]" title="linux_mint_debian_3"><img class="aligncenter size-large wp-image-2153" title="linux_mint_debian_3" src="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_3-494x275.png" alt="" width="494" height="275" /></a>comprehensive configuration options in control center</p>
<p><a href="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_4.png" rel="lightbox[2159]" title="linux_mint_debian_4"><img class="aligncenter size-large wp-image-2154" title="linux_mint_debian_4" src="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_4-494x276.png" alt="" width="494" height="276" /></a>with the fglrx drivers installed my tv is supported as an extended desktop/monitor.</p>
<p><a href="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_5.png" rel="lightbox[2159]" title="linux_mint_debian_5"><img class="aligncenter size-large wp-image-2155" title="linux_mint_debian_5" src="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_5-494x435.png" alt="" width="494" height="435" /></a>the kernel count is rising</p>
<p><a href="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_6.png" rel="lightbox[2159]" title="linux_mint_debian_6"><img class="aligncenter size-large wp-image-2156" title="linux_mint_debian_6" src="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_6-494x438.png" alt="" width="494" height="438" /></a>not too heavy on resources</p>
<p><a href="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_7.png" rel="lightbox[2159]" title="linux_mint_debian_7"><img class="aligncenter size-large wp-image-2157" title="linux_mint_debian_7" src="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_7-494x278.png" alt="" width="494" height="278" /></a>gimp installed by default! (reading this, ubuntu?)</p>
<p><a href="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_8.png" rel="lightbox[2159]" title="linux_mint_debian_8"><img class="aligncenter size-large wp-image-2158" title="linux_mint_debian_8" src="http://cloudplasma.co.uk/wp-content/uploads/linux_mint_debian_8-494x424.png" alt="" width="494" height="424" /></a>i reduced some of the font sizes as i found them rather large for my laptop’s screen.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=blog+post%3A+linux+mint+debian+201204+%E2%80%94+a+little+look...+http%3A%2F%2Ffrdy.co.uk%2FJ916k0" title="post to twitter"><img class="nothumb" src="http://cloudplasma.co.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://cloudplasma.co.uk/2012/05/linux-mint-debian-201204-a-little-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>keep an ssh session alive</title>
		<link>http://cloudplasma.co.uk/2012/04/keep-an-ssh-session-alive/</link>
		<comments>http://cloudplasma.co.uk/2012/04/keep-an-ssh-session-alive/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 09:23:55 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[heep ssh connection alive]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=2107</guid>
		<description><![CDATA[this is a small script to keep an unattended ssh session alive. you could change some settings on the server itself but this just sends the ‘w’ command every 60 seconds. useful for keeping track of who’s logged too. i call my scipt watch so i did a ‘joe watch’ in a terminal and entered [...]]]></description>
			<content:encoded><![CDATA[<p>this is a small script to keep an unattended ssh session alive. you could change some settings on the server itself but this just sends the ‘w’ command every 60 seconds. useful for keeping track of who’s logged too.</p>
<p>i call my scipt watch so i did a ‘joe watch’ in a terminal and entered the following…</p>
<p><strong>#!/bin/bash</strong><br />
<strong>watch –n 60 w</strong></p>
<p>save with ‘ctrl+k+x’. to run the script enter ‘./watch’ in the directory where you created the file. ‘ctrl+c’ to cancel it.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=blog+post%3A+keep+an+ssh+session+alive...+http%3A%2F%2Ffrdy.co.uk%2FHgAzPh" title="post to twitter"><img class="nothumb" src="http://cloudplasma.co.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://cloudplasma.co.uk/2012/04/keep-an-ssh-session-alive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gnome 3 fails to load debian wheezy</title>
		<link>http://cloudplasma.co.uk/2012/03/gnome-3-fails-to-load-debian-wheezy/</link>
		<comments>http://cloudplasma.co.uk/2012/03/gnome-3-fails-to-load-debian-wheezy/#comments</comments>
		<pubDate>Thu, 08 Mar 2012 20:03:29 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[debian wheezy]]></category>
		<category><![CDATA[fallback mode]]></category>
		<category><![CDATA[gnome 3]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=2061</guid>
		<description><![CDATA[gnome 3 fails to load on debian wheezy…at least it does (did) on my 64 bit install (hp pavilion notebook). it always reverted to fallback mode. the solution? as root: apt-get install libgl1-mesa-dri-experimental why this is necessary with debian and not any of the other gnome 3 based distros i’ve installed on the same machine [...]]]></description>
			<content:encoded><![CDATA[<p>gnome 3 fails to load on debian wheezy…at least it does (did) on my 64 bit install (hp pavilion notebook). it always reverted to fallback mode. the solution? as root:</p>
<p><strong>apt-get install libgl1-mesa-dri-experimental</strong></p>
<p>why this is necessary with debian and not any of the other gnome 3 based distros i’ve installed on the same machine (ubuntu, fedora, mint) i’m not sure but this worked for me.</p>
<p style="text-align: center;"><a href="http://cloudplasma.co.uk/wp-content/uploads/debian_wheezy_system_properties.jpg" rel="lightbox[2061]" title="debian_wheezy_system_properties"><img class="aligncenter size-large wp-image-2062" title="debian_wheezy_system_properties" src="http://cloudplasma.co.uk/wp-content/uploads/debian_wheezy_system_properties-494x389.jpg" alt="" width="494" height="389" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=blog+post%3A+gnome+3+fails+to+load+debian+wheezy...+http%3A%2F%2Ffrdy.co.uk%2FwvrNdu" title="post to twitter"><img class="nothumb" src="http://cloudplasma.co.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://cloudplasma.co.uk/2012/03/gnome-3-fails-to-load-debian-wheezy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vuescan doesn’t work on gnome 3</title>
		<link>http://cloudplasma.co.uk/2012/02/vuescan-doesnt-work-on-gnome-3/</link>
		<comments>http://cloudplasma.co.uk/2012/02/vuescan-doesnt-work-on-gnome-3/#comments</comments>
		<pubDate>Sat, 11 Feb 2012 10:35:16 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[compiz]]></category>
		<category><![CDATA[gnome 3]]></category>
		<category><![CDATA[linux mint]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[vuescan]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=1994</guid>
		<description><![CDATA[the vuescan scanning software doesn’t like gnome 3…or, more accurately, isn’t liked by gnome 3. it won’t start. rather annoying. i’m using linux mint but the same happens with ubuntu and many other distros. turns out that compiz is interfering with it being displayed correctly. install the compiz settings manager, as root, with apt-get install [...]]]></description>
			<content:encoded><![CDATA[<p>the vuescan scanning software doesn’t like gnome 3…or, more accurately, isn’t liked by gnome 3. it won’t start. rather annoying. i’m using linux mint but the same happens with ubuntu and many other distros. turns out that compiz is interfering with it being displayed correctly. install the compiz settings manager, as root, with</p>
<p><strong>apt-get install compizconfig-settings-manager</strong></p>
<p>when that’s done run, as your regular user,</p>
<p><strong>ccsm</strong></p>
<p>this’ll grind away for a little while and then present you with the tweakables. scroll down and uncheck the ‘Window Decoration’ option. vuescan should now launch correctly.</p>
<p style="text-align: center;"><a href="http://cloudplasma.co.uk/wp-content/uploads/compiz_settings.jpg" rel="lightbox[1994]" title="compiz_settings"><img class="aligncenter size-large wp-image-1995" title="compiz_settings" src="http://cloudplasma.co.uk/wp-content/uploads/compiz_settings-494x313.jpg" alt="" width="494" height="313" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=blog+post%3A+vuescan+doesn%E2%80%99t+work+on+gnome+3...+http%3A%2F%2Ffrdy.co.uk%2Fy6D5FI" title="post to twitter"><img class="nothumb" src="http://cloudplasma.co.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://cloudplasma.co.uk/2012/02/vuescan-doesnt-work-on-gnome-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>backup linux server with backupninja</title>
		<link>http://cloudplasma.co.uk/2012/02/backup-linux-server-with-backupninja/</link>
		<comments>http://cloudplasma.co.uk/2012/02/backup-linux-server-with-backupninja/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 11:04:01 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[backupninja]]></category>
		<category><![CDATA[linux server backup]]></category>
		<category><![CDATA[local backup]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=1973</guid>
		<description><![CDATA[want to backup your linux server? looked at a few solutions. been using rsync running daily via a cron job which worked well made a script (called sys_backup) that looks like this… first do a ‘touch sys_backup’ on the command line without the quotes (in fact that applies throughout this page…open it with your favourite [...]]]></description>
			<content:encoded><![CDATA[<p>want to backup your linux server? looked at a few solutions. been using rsync running daily via a cron job which worked well<br />
made a script (called sys_backup) that looks like this…<br />
first do a ‘touch sys_backup’ on the command line without the quotes (in fact that applies throughout this page…open it with your favourite text editor and paste the following in (replacing /media/backup/local with the path to your backup directory).</p>
<p><strong>#!/bin/bash</strong><br />
<strong>rsync –avp –delete /var /media/backup/local</strong><br />
<strong>rsync –avp –delete /etc /media/backup/local</strong><br />
<strong>rsync –avp — delete /home /media/backup/local</strong></p>
<p>to run the script become root (as you’ll need that permission for /var and /etc) and run ‘./sys_backup’ without the quotes.<br />
however, i wanted something a bit more comprehensive (and incremental) without me putting in too much effort. looked at bacula. too complicated. settled on <a title="backupninja - main page" href="https://labs.riseup.net/code/projects/show/backupninja" target="_blank">backupninja</a>. to install on a debian based system, as root, issue the following ‘apt-get install backupninja’ to grab it from the repos. next we want to edit the main configuration file. ‘joe /etc/backupninja.conf’ will open it and you can change the parameters to suit your setup. mine’s only a local backup so it looks a bit like this.<br />
<strong>#                          |\_</strong><br />
<strong># B A C K U P N I N J A   /()/</strong><br />
<strong>#                         ‘\|</strong><br />
<strong># main configuration file</strong><br />
<strong>#</strong></p>
<p><strong># how verbose to make the logs</strong><br />
<strong># 5 — Debugging messages     (and below)</strong><br />
<strong># 4 — Informational messages (and below)</strong><br />
<strong># 3 — Warnings               (and below)</strong><br />
<strong># 2 — Errors                 (and below)</strong><br />
<strong># 1 — Fatal errors           (only)</strong><br />
<strong>loglevel = 4</strong></p>
<p><strong># send a summary of the backup status to</strong><br />
<strong># this email address:</strong><br />
<strong>reportemail = col@localhost</strong></p>
<p><strong># if set to ‘yes’, a report email will be generated</strong><br />
<strong># even if all modules reported success. (default = yes)</strong><br />
<strong>reportsuccess = yes</strong></p>
<p><strong># if set to ‘yes’, info messages from handlers will be </strong><br />
<strong># sent into the email (default = no)</strong><br />
<strong>reportinfo = no</strong></p>
<p><strong># if set to ‘yes’, a report email will be generated</strong><br />
<strong># even if there was no error. (default = yes)</strong><br />
<strong>reportwarning = yes</strong></p>
<p><strong># if set to ‘yes’, disk space usage will be included in</strong><br />
<strong># the backup email report</strong><br />
<strong>reportspace = yes</strong></p>
<p><strong># where to rsync the backupninja.log to be aggregated in</strong><br />
<strong># a ninjareport</strong><br />
<strong>reporthost = </strong></p>
<p><strong># what user to connect to reporthost to sync the</strong><br />
<strong># backupninja.log</strong><br />
<strong>reportuser = ninja</strong></p>
<p><strong># where on the reporthost should the report go</strong><br />
<strong># NOTE: the name of the log will be used in the report, </strong><br />
<strong># use a globally unique name, preferably the hostname</strong><br />
<strong>reportdirectory = /var/lib/backupninja/reports</strong></p>
<p><strong># set to the administration group that is allowed to </strong><br />
<strong># read/write configuration files in /etc/backup.d</strong><br />
<strong>admingroup = root</strong></p>
<p><strong>#######################################################</strong><br />
<strong># for most installations, the defaults below are good #</strong><br />
<strong>#######################################################</strong></p>
<p><strong># where to log:</strong><br />
<strong>logfile = /var/log/backupninja.log</strong></p>
<p><strong># directory where all the backup configuration files live</strong><br />
<strong>configdirectory = /etc/backup.d</strong></p>
<p><strong># where backupninja helper scripts are found</strong><br />
<strong>scriptdirectory = /usr/share/backupninja</strong></p>
<p><strong># where backupninja libs are found</strong><br />
<strong>libdirectory = /usr/lib/backupninja</strong></p>
<p><strong># whether to use colors in the log file</strong><br />
<strong>usecolors = yes</strong></p>
<p><strong># default value for ‘when’</strong><br />
<strong>when = everyday at 01:00</strong></p>
<p><strong># if running vservers, set to yes</strong><br />
<strong>vservers = no</strong></p>
<p><strong># programs paths</strong><br />
<strong># SLAPCAT=/usr/sbin/slapcat</strong><br />
<strong># LDAPSEARCH=/usr/bin/ldapsearch</strong><br />
<strong># RDIFFBACKUP=/usr/bin/rdiff-backup</strong><br />
<strong># CSTREAM=/usr/bin/cstream</strong><br />
<strong># MYSQL=/usr/bin/mysql</strong><br />
<strong># MYSQLHOTCOPY=/usr/bin/mysqlhotcopy</strong><br />
<strong># MYSQLDUMP=/usr/bin/mysqldump</strong><br />
<strong># PSQL=/usr/bin/psql</strong><br />
<strong># PGSQLDUMP=/usr/bin/pg_dump</strong><br />
<strong># PGSQLDUMPALL=/usr/bin/pg_dumpall</strong><br />
<strong># GZIP=/bin/gzip</strong><br />
<strong># GZIP_OPTS=’–rsyncable’</strong><br />
<strong># RSYNC=/usr/bin/rsync</strong><br />
<strong># VSERVERINFO=/usr/sbin/vserver-info</strong><br />
<strong># VSERVER=/usr/sbin/vserver</strong><br />
<strong># VROOTDIR=/var/lib/vservers</strong></p>
<p>most of the settings have been left as they are. save the file with a ctrl+k+x in joe.<br />
i’m using rdiff only but there are other options available. see the <a title="backupninja - wiki" href="https://labs.riseup.net/code/projects/backupninja/wiki/Configuration" target="_blank">backupninja wiki</a> for more info.<br />
now to get an action (or backup job) sorted. from the wiki above we’re going to use the action.rdiff file. first we want to cd into the backup.d directory like so. as root ‘cd /etc/backup.d’. then ‘wget http://cloudplasma.co.uk/wp-content/uploads/action.rdiff’ to download the default configuration file. do a ‘joe action.rdiff’ to open it and tweak it to your liking. mine resembles the following…<br />
<strong>######################################################</strong><br />
<strong>## source section</strong><br />
<strong>## (where the files to be backed up are coming from)</strong></p>
<p><strong>[source]</strong></p>
<p><strong># an optional subdirectory below ‘directory’ (see [dest])</strong><br />
<strong>label = box</strong></p>
<p><strong># only local type is currently supported</strong><br />
<strong>type = local</strong></p>
<p><strong># how many days of data to keep</strong><br />
<strong>keep = 185</strong></p>
<p><strong># files to include in the backup</strong><br />
<strong># (supports globbing with ‘*’)</strong><br />
<strong>include = /var/spool/cron/crontabs</strong><br />
<strong>include = /var/backups</strong><br />
<strong>include = /etc</strong><br />
<strong>include = /root</strong><br />
<strong>include = /home</strong><br />
<strong>include = /usr/local/bin</strong><br />
<strong>include = /usr/local/sbin</strong><br />
<strong>include = /var/lib/dpkg/status</strong><br />
<strong>include = /var/lib/dpkg/status-old</strong></p>
<p><strong># files to exclude from the backup</strong><br />
<strong># (supports globbing with ‘*’)</strong><br />
<strong>#exclude = /home/*/.gnupg</strong></p>
<p><strong>######################################################</strong><br />
<strong>## destination section</strong><br />
<strong>## (where the files are copied to)</strong></p>
<p><strong>[dest]</strong></p>
<p><strong># remote or local? If local, you dont need to specify a host below</strong><br />
<strong>type = local</strong></p>
<p><strong># the machine which will receive the backups</strong><br />
<strong>host = backup</strong></p>
<p><strong># put the backups under this directory</strong><br />
<strong>directory = /media/backup/ninja</strong></p>
<p><strong># make the files owned by this user</strong><br />
<strong># note: you must be able to ssh backupuser@backhost</strong><br />
<strong># without specifying a password </strong><br />
<strong># user = col</strong></p>
<p>save it with ctrl+k+x as before. now it should run at 1.00 am every day. you can try it now by running ‘backupnija –n’ as root.<br />
if you run into permission errors make sure that action.rdiff has 400 permissions (‘chmod 400 action.rdiff’) and that joe hasn’t left a temp version of action.rdiff in the backup directory (‘rm action.rdiff~’).</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=blog+post%3A+backup+linux+server+with+backupninja...+http%3A%2F%2Ffrdy.co.uk%2FxhreEY" title="post to twitter"><img class="nothumb" src="http://cloudplasma.co.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://cloudplasma.co.uk/2012/02/backup-linux-server-with-backupninja/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>migrate to a new linux server</title>
		<link>http://cloudplasma.co.uk/2011/12/migrate-to-a-new-linux-server/</link>
		<comments>http://cloudplasma.co.uk/2011/12/migrate-to-a-new-linux-server/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 12:03:12 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[scp]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=1935</guid>
		<description><![CDATA[i’m upgrading my home server. a faithful 1GHz PIII with 512MB has served(!) me well for 4 years but i though it was time to expand. got a rather nice box with a 1.6GHz processor (quad core atom d510), 4GB of RAM and a 500GB SATA disk (room for another 2 disks also). the old [...]]]></description>
			<content:encoded><![CDATA[<p>i’m upgrading my home server. a faithful 1GHz PIII with 512MB has served(!) me well for 4 years but i though it was time to expand. got a rather nice box with a 1.6GHz processor (quad core atom d510), 4GB of RAM and a 500GB SATA disk (room for another 2 disks also).</p>
<p>the old machine runs <a target="_blank" title="debian - the universal operating system - homepage" href="http://www.debian.org/">debian</a> 6.0.3 and deals with a few chores…<a target="_blank" title="apache 2 - homepage" href="http://httpd.apache.org/docs/2.0/">apache</a>, <a target="_blank" title="postfix mail server - homepage" href="http://www.postfix.org/">postfix</a>, remote <a target="_blank" title="remote ssh tunnel - cloudplasa" href="http://cloudplasma.co.uk/2010/11/remote-router-config-via-ssh-tunnel/">ssh tunnelling</a>, <a target="_blank" title="subsonic music streamer - homepage" href="http://subsonic.org/">subsonic</a> and a couple of <a target="_blank" title="samba file sharing - homepage" href="http://www.samba.org/">samba</a> shares. the old install is obviously 32 bit…the new one will be 64 bit (also running debian 6.0.3…i haven’t found a more stable server os) so that prevents a straight rsync as many of the packages will be incompatible with the different architecture. a chum got me thinking…a simple way to get a new box running the same apps as the old one is to replicate the packages that are installed. this can be done simply with the following…on the old box issue the following in a terminal…doesn’t need to be as root…</p>
<p><strong>dpkg –get-selections &gt; installedpackages</strong></p>
<p>this creates a file called ‘installedpackages’ that contains all the applications that have been installed on the old system. if you have the new server up and running and accessible via <a target="_blank" title="open ssh - homepage" href="http://www.openssh.com/">ssh</a> you can then copy the file over with scp…if not use USB<strong></strong></p>
<p><strong>scp installedpackages username@newserver:/home/username</strong></p>
<p>this will plonk it into your home folder on the new machine. so now log into your new machine and as root issue the command</p>
<p><strong>dpkg –set-selections &lt; installedpackages</strong></p>
<p>and then</p>
<p><strong>apt-get dselect-upgrade</strong></p>
<p>this will install all the packages that ran on the old box…to the new one.<strong></strong></p>
<p><strong>NB </strong>that this, obviously, <strong>doesn’t</strong> move your /home directories, email, web sites or any configuration files. you can do this via USB or using the scp method detailed above. lots of the configuration files are stored in /etc<strong>,</strong> web sites are generally in /var/www<strong>. </strong>i’m not dealing with things like mysql now but <a target="_blank" title="back up mysql database linux" href="http://www.go2linux.org/mysql-backup-mysqldump">here’s</a> some info on that.<strong><br />
</strong></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=blog+post%3A+migrate+to+a+new+linux+server...+http%3A%2F%2Ffrdy.co.uk%2FswO1w4" title="post to twitter"><img class="nothumb" src="http://cloudplasma.co.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://cloudplasma.co.uk/2011/12/migrate-to-a-new-linux-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ubuntu 12.04 and xubuntu 12.04 — a wee look</title>
		<link>http://cloudplasma.co.uk/2011/11/ubuntu-12-04-and-xubuntu-12-04-a-wee-look/</link>
		<comments>http://cloudplasma.co.uk/2011/11/ubuntu-12-04-and-xubuntu-12-04-a-wee-look/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 10:21:19 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu 12.04]]></category>
		<category><![CDATA[xubuntu]]></category>
		<category><![CDATA[xubuntu 12.04]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=1905</guid>
		<description><![CDATA[as usual i like to have a mess about with ubuntu alpha versions. this time it’s a look at ubuntu 12.04 (precise pangolin…again…fine work there people) an LTS release which means it’ll get support until april of 2017…that’s a while. get the daily iso from here and burn it to a dvd or whap it [...]]]></description>
			<content:encoded><![CDATA[<p>as usual i like to have a mess about with ubuntu alpha versions. this time it’s a look at ubuntu 12.04 <span style="font-family: Arial,Helvetica,sans-serif;"><span>(precise pangolin…again…fine work there people) an LTS release which means it’ll get support until april of 2017…that’s a while. get the daily iso from <a title="ubuntu 12.04 daily build" href="http://cdimage.ubuntu.com/daily-live/current/" target="_blank">here</a> and burn it to a dvd or whap it onto a usb stick using dd or unetbootin. the install process still features a lot of the artwork from 11.10…unity is still in use…and looks much the same as it did previously…and that’s not, in this users opinion, a good thing. in fact if you follow this post down you’ll see that i quickly tire of ubuntu 12.04 and turned it into xubuntu 12.04…</span></span></p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/inital_upgrade.png" rel="lightbox[1905]" title="inital_upgrade"><img class="aligncenter size-large wp-image-1909" title="inital_upgrade" src="http://cloudplasma.co.uk/wp-content/uploads/inital_upgrade-494x277.png" alt="" width="494" height="277" /></a>doing the initial update using <strong>apt-get update</strong> and then <strong>apt-get dist-upgrade</strong> (as root). a couple of the ‘extra. repositories were unavailable. also neither ai32-libs or ia32-libs-multiarch would install due to dependency problems.</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/firefox_9.png" rel="lightbox[1905]" title="firefox_9"><img class="aligncenter size-large wp-image-1907" title="firefox_9" src="http://cloudplasma.co.uk/wp-content/uploads/firefox_9-494x277.png" alt="" width="494" height="277" /></a>this build of ubuntu is shipping with firefox 9 and thunderbird 9 but by the time april 2012 rolls around both of these will probably have morphed to version 11 with no noticeable improvements.</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/ubuntu_app_menu.png" rel="lightbox[1905]" title="ubuntu_app_menu"><img class="aligncenter size-large wp-image-1913" title="ubuntu_app_menu" src="http://cloudplasma.co.uk/wp-content/uploads/ubuntu_app_menu-494x277.png" alt="" width="494" height="277" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/settings.png" rel="lightbox[1905]" title="settings"><img class="aligncenter size-large wp-image-1912" title="settings" src="http://cloudplasma.co.uk/wp-content/uploads/settings-494x277.png" alt="" width="494" height="277" /></a>as i said…they’re sticking with unity. just as feature-rich as always…</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/info.png" rel="lightbox[1905]" title="info"><img class="aligncenter size-large wp-image-1908" title="info" src="http://cloudplasma.co.uk/wp-content/uploads/info-494x277.png" alt="" width="494" height="277" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/resources.png" rel="lightbox[1905]" title="resources"><img class="aligncenter size-large wp-image-1911" title="resources" src="http://cloudplasma.co.uk/wp-content/uploads/resources-494x277.png" alt="" width="494" height="277" /></a>not too light on resources either but then i’ve got a bit of ram to spare.</p>
<p style="text-align: left;">now as i mentioned before…unity isn’t for me. i could have installed gnome 3 but prefer things to be slightly more configurable so here’s how to add xfce as a desktop environment…in other words change ubuntu 12.04 into xubuntu 12.04…</p>
<p style="text-align: left;">as root issue the command <strong>apt-get install xubuntu-desktop</strong> this will grab 120MB or so from the repositories…after it has finished log out. when you’re greeted with the log in screen click the wee gear icon next to your username and choose ‘xfce session’ or whatever. this’ll give you something slightly more usable. i’ve used xfce a fair bit in the past…still not 100% sure of it but it kicks unity’s arse…see below for a quick look.</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/x_desktop.png" rel="lightbox[1905]" title="x_desktop"><img class="aligncenter size-large wp-image-1914" title="x_desktop" src="http://cloudplasma.co.uk/wp-content/uploads/x_desktop-494x277.png" alt="" width="494" height="277" /></a>too many icons…not sure why all my drives have to be shown by default. right-click the bottom menu and go into panel options to make it auto-hide.</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/x_menu.png" rel="lightbox[1905]" title="x_menu"><img class="aligncenter size-large wp-image-1915" title="x_menu" src="http://cloudplasma.co.uk/wp-content/uploads/x_menu-494x277.png" alt="" width="494" height="277" /></a>ah…proper menus…bliss…</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/x_windows.png" rel="lightbox[1905]" title="x_windows"><img class="aligncenter size-large wp-image-1916" title="x_windows" src="http://cloudplasma.co.uk/wp-content/uploads/x_windows-494x277.png" alt="" width="494" height="277" /></a>and there’s my daily look at el reg…with some thumbnails…</p>
<p style="text-align: left;">to sum up. ubuntu’s going in the wrong direction for me interface-wise. they won’t change and i don’t think i’ll ever like it. for an alpha version it seems stable though…adding xfce makes it a lot nicer to use. how long will i stick with it? probably until this afternoon.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=blog+post%3A+ubuntu+12.04+and+xubuntu+12.04+%E2%80%94+a+wee+look...+http%3A%2F%2Ffrdy.co.uk%2Fsk9sIm" title="post to twitter"><img class="nothumb" src="http://cloudplasma.co.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://cloudplasma.co.uk/2011/11/ubuntu-12-04-and-xubuntu-12-04-a-wee-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>subsonic media streamer</title>
		<link>http://cloudplasma.co.uk/2011/11/subsonic-media-streamer/</link>
		<comments>http://cloudplasma.co.uk/2011/11/subsonic-media-streamer/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 17:58:09 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[media streamer]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[subsonic media streamer]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=1877</guid>
		<description><![CDATA[got a server at home? want to stream media over your home network or internet? linux (although other platforms are supported)? yes? read on then. subsonic should take care of all your media streaming desires. grab it from here. i’ll be using the debian version on my headerless server. first off install the java runtime [...]]]></description>
			<content:encoded><![CDATA[<p>got a server at home? want to stream media over your home network or internet? linux (although other platforms are supported)? yes? read on then.</p>
<p><a title="subsonic - homepage" href="http://www.subsonic.org/pages/index.jsp" target="_blank">subsonic</a> should take care of all your media streaming desires. grab it from <a title="subsonic - download" href="http://www.subsonic.org/pages/download.jsp" target="_blank">here</a>. i’ll be using the debian version on my headerless server.</p>
<p>first off install the java runtime environment (shame, that)…as root issue the following</p>
<p style="padding-left: 30px;"><strong><code>apt-get install openjdk-6-jre</code></strong></p>
<p>once that’s complete you’ll need to install the binary you downloaded earlier. again, as root…</p>
<p style="padding-left: 30px;"><strong><code>dpkg -i subsonic-x.x.deb</code></strong></p>
<p>and that should be it up and running. login to the new installation using your domain or IP at port 4040 (i’m testing from home so for me that’s http://box:4040) and you should be greeted with something like this</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/subsonic.png" rel="lightbox[1877]" title="subsonic"><img class="aligncenter size-large wp-image-1875" title="subsonic" src="http://cloudplasma.co.uk/wp-content/uploads/subsonic-494x215.png" alt="" width="494" height="215" /></a>username and password are <strong>admin</strong> (change the password straight after you login for the first time). most important step? add the path to your media…</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/subsonic_media_folders.png" rel="lightbox[1877]" title="subsonic_media_folders"><img class="aligncenter size-large wp-image-1876" title="subsonic_media_folders" src="http://cloudplasma.co.uk/wp-content/uploads/subsonic_media_folders-494x218.png" alt="" width="494" height="218" /></a>a directory for your playlists isn’t created during the install procedure so add one now…as root…</p>
<p style="padding-left: 30px;"><strong><code>mkdir /var/playlists</code></strong></p>
<p>now to forward the relevant ports on your router so that streaming will work remotely…the default is, as mentioned before, 4040 but you can change that if you like</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/router.png" rel="lightbox[1877]" title="router"><img class="aligncenter size-large wp-image-1874" title="router" src="http://cloudplasma.co.uk/wp-content/uploads/router-494x291.png" alt="" width="494" height="291" /></a>if you want to stream from afar you’ll need a domain name if you don’t want to use your IP (which will change if you have a dynamic connection). i use <a title="dyn.com - homepage" href="http://dyn.com/dns/" target="_blank">dyn.com</a> but it seems their free service doesn’t exist anymore…i could be wrong. you could try <a title="no-ip.com - homepage" href="http://www.no-ip.com/services/managed_dns/free_dynamic_dns.html" target="_blank">no-ip.com</a>.</p>
<p style="text-align: left;">that’s about it…you can now browse your media, load and save playlists…and play your tunes.</p>
<p style="text-align: left;"><strong>EDIT</strong> — i like it. a lot. have donated and i recommend you do too if you find it useful. it’ll give you a constant url for your dynamic IP address…android app that works after the 30 days trial…and help the developer to continue to improve this cracking bit of code.</p>
<p style="text-align: center;"><a href="http://cloudplasma.co.uk/wp-content/uploads/cure.png" rel="lightbox[1877]" title="cure"><img class="aligncenter size-large wp-image-1872" title="cure" src="http://cloudplasma.co.uk/wp-content/uploads/cure-494x259.png" alt="" width="494" height="259" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/cure_list.png" rel="lightbox[1877]" title="cure_list"><img class="aligncenter size-large wp-image-1873" title="cure_list" src="http://cloudplasma.co.uk/wp-content/uploads/cure_list-494x217.png" alt="" width="494" height="217" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/bitrate.png" rel="lightbox[1877]" title="bitrate"><img class="aligncenter size-large wp-image-1871" title="bitrate" src="http://cloudplasma.co.uk/wp-content/uploads/bitrate-494x217.png" alt="" width="494" height="217" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=blog+post%3A+subsonic+media+streamer...+http%3A%2F%2Ffrdy.co.uk%2Ft7RE6K" title="post to twitter"><img class="nothumb" src="http://cloudplasma.co.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://cloudplasma.co.uk/2011/11/subsonic-media-streamer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  cloudplasma.co.uk/category/linux/feed/ ) in 2.02958 seconds, on May 20th, 2012 at 4:10 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 21st, 2012 at 4:10 am UTC -->
