<?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>Wed, 08 Feb 2012 07:22:25 +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>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>
		<item>
		<title>linux mint 12 rc — a little look</title>
		<link>http://cloudplasma.co.uk/2011/11/linux-mint-12-rc-a-little-look/</link>
		<comments>http://cloudplasma.co.uk/2011/11/linux-mint-12-rc-a-little-look/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 11:25:52 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[linux mint 12 rc]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[screenshots]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=1841</guid>
		<description><![CDATA[linux mint 12 rc is available for download. grab it here. i’ve gone with the 64 bit version. not a review (as usual) just a quick look at the new version and a couple of the changes. the install was rather speedy and smooth. the biggest delay was downloading the uk language packs…and that only [...]]]></description>
			<content:encoded><![CDATA[<p><a title="linux mint - homepage" href="http://linuxmint.com/" target="_blank">linux mint</a> 12 rc is available for download. grab it <a title="linux mint 12 rc - download" href="http://ftp.heanet.ie/pub/linuxmint.com/testing/" target="_blank">here</a>. i’ve gone with the 64 bit version. not a review (as usual) just a quick look at the new version and a couple of the changes. the install was rather speedy and smooth. the biggest delay was downloading the uk language packs…and that only took 35 seconds. whole thing was complete within 5 minutes. after rebooting 100 MB of updates were available…another reboot and we’re ready to go.</p>
<p>biggest change? <a title="gnome 3 - homepage" href="http://www.gnome.org/gnome-3/" target="_blank">gnome 3</a>. there was much discussion as to whether mint should switch. i’ve tried various implementations of gnome’s new interface and i have to say that mint’s is probably the most usable so far. it retains the lower panel which helps when many windows are open at once. think they’ve made the right decision. caught up with the latest kernel too. see below for some grabs. seems stable…quick enough…and comes with much of the software that isn’t installed by default with ubuntu (gimp, build-essentals and more) although ia32-libs isn’t for some reason. if you plan on playing with 32 bit code then issue an <strong>apt-get install ia32-libs ia32-libs-multiarch</strong> as root.</p>
<p style="text-align: center;"><a href="http://cloudplasma.co.uk/wp-content/uploads/mint12_desktop.png" rel="lightbox[1841]" title="mint12_desktop"><img class="aligncenter size-large wp-image-1840" title="mint12_desktop" src="http://cloudplasma.co.uk/wp-content/uploads/mint12_desktop-494x277.png" alt="" width="494" height="277" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/mint12_menu.png" rel="lightbox[1841]" title="mint12_menu"><img class="aligncenter size-large wp-image-1843" title="mint12_menu" src="http://cloudplasma.co.uk/wp-content/uploads/mint12_menu-494x458.png" alt="" width="494" height="458" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/mint12_folder.png" rel="lightbox[1841]" title="mint12_folder"><img class="aligncenter size-large wp-image-1842" title="mint12_folder" src="http://cloudplasma.co.uk/wp-content/uploads/mint12_folder-494x277.png" alt="" width="494" height="277" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/mint12_monitor_2.png" rel="lightbox[1841]" title="mint12_monitor_2"><img class="aligncenter size-large wp-image-1845" title="mint12_monitor_2" src="http://cloudplasma.co.uk/wp-content/uploads/mint12_monitor_2-494x410.png" alt="" width="494" height="410" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/mint12_monitor_1.png" rel="lightbox[1841]" title="mint12_monitor_1"><img class="aligncenter size-large wp-image-1844" title="mint12_monitor_1" src="http://cloudplasma.co.uk/wp-content/uploads/mint12_monitor_1-494x381.png" alt="" width="494" height="381" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/mint12_system_settings.png" rel="lightbox[1841]" title="mint12_system_settings"><img class="aligncenter size-large wp-image-1846" title="mint12_system_settings" src="http://cloudplasma.co.uk/wp-content/uploads/mint12_system_settings-494x370.png" alt="" width="494" height="370" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/mint12_update_manager.png" rel="lightbox[1841]" title="mint12_update_manager"><img class="aligncenter size-large wp-image-1847" title="mint12_update_manager" src="http://cloudplasma.co.uk/wp-content/uploads/mint12_update_manager-494x360.png" alt="" width="494" height="360" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/mint12_windows.png" rel="lightbox[1841]" title="mint12_windows"><img class="aligncenter size-large wp-image-1848" title="mint12_windows" src="http://cloudplasma.co.uk/wp-content/uploads/mint12_windows-494x277.png" alt="" width="494" height="277" /></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+linux+mint+12+rc+%E2%80%94+a+little+look...+http%3A%2F%2Ffrdy.co.uk%2Fsm4lf1" 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/linux-mint-12-rc-a-little-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sshmote for android</title>
		<link>http://cloudplasma.co.uk/2011/10/sshmote-for-android/</link>
		<comments>http://cloudplasma.co.uk/2011/10/sshmote-for-android/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 19:05:09 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[openssh]]></category>
		<category><![CDATA[remote comtrol audio]]></category>
		<category><![CDATA[sshmote]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=1826</guid>
		<description><![CDATA[want to control the multimedia files that are stored on your linux based computer using your android phone? from the comfort of your couch? yes? well sshmote does the job rather well. you can get it from the android market or grab the latest .apk from the developer’s website. you’ll need the openssh server installed [...]]]></description>
			<content:encoded><![CDATA[<p>want to control the multimedia files that are stored on your linux based computer using your android phone? from the comfort of your couch? yes? well <a title="sshmote - homepage" href="http://www.zokama.com/sshmote" target="_blank">sshmote</a> does the job rather well. you can get it from the android market or grab the latest .apk from the developer’s website. you’ll need the <a title="openssh - homepage" href="http://www.openssh.com/" target="_blank">openssh</a> server installed which, on a debian based system, is easily taken care of by issuing <strong>apt-get install ssh</strong> as root in a terminal. you’ll also need an audio/video player installed…here i’m using <a title="vlc - homepage" href="http://www.videolan.org/vlc/" target="_blank">vlc</a> which can be added via <strong>apt-get install vlc</strong></p>
<p>fire up the app on your phone and pick a profile. you’ll need to enter your hostname or IP address. the first time i tried to connect it failed…i had to long-press the database entry and choose ‘edit (advanced)’ to add the username and password. in there you can also choose the default directory that will be displayed and choose the interface theme. works well…though i’ve found that no GUI is displayed on my laptop and i couldn’t get vlc to exit from inside the phone app. haven’t fiddled with it too much though. found it a lot easier to use and setup than gmote. some screenshots can be seen below…</p>
<p style="text-align: center;"><a href="http://cloudplasma.co.uk/wp-content/uploads/sshmote1.jpg" rel="lightbox[1826]" title="sshmote1"><img class="aligncenter size-full wp-image-1821" title="sshmote1" src="http://cloudplasma.co.uk/wp-content/uploads/sshmote1.jpg" alt="" width="320" height="480" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/sshmote2.jpg" rel="lightbox[1826]" title="sshmote2"><img class="aligncenter size-full wp-image-1822" title="sshmote2" src="http://cloudplasma.co.uk/wp-content/uploads/sshmote2.jpg" alt="" width="320" height="480" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/sshmote3.jpg" rel="lightbox[1826]" title="sshmote3"><img class="aligncenter size-full wp-image-1823" title="sshmote3" src="http://cloudplasma.co.uk/wp-content/uploads/sshmote3.jpg" alt="" width="320" height="480" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/sshmote4.jpg" rel="lightbox[1826]" title="sshmote4"><img class="aligncenter size-full wp-image-1824" title="sshmote4" src="http://cloudplasma.co.uk/wp-content/uploads/sshmote4.jpg" alt="" width="320" height="480" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/sshmote5.jpg" rel="lightbox[1826]" title="sshmote5"><img class="aligncenter size-full wp-image-1825" title="sshmote5" src="http://cloudplasma.co.uk/wp-content/uploads/sshmote5.jpg" alt="" width="320" height="480" /></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+sshmote+for+android...+http%3A%2F%2Ffrdy.co.uk%2FmRpZx4" 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/10/sshmote-for-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>begone unity</title>
		<link>http://cloudplasma.co.uk/2011/10/begone-unity/</link>
		<comments>http://cloudplasma.co.uk/2011/10/begone-unity/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 08:26:07 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[gnome 3]]></category>
		<category><![CDATA[install gnome 3 shell on ubuntu 11.10]]></category>
		<category><![CDATA[unity]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=1796</guid>
		<description><![CDATA[get rid of unity in ubuntu 11.10 and replace it with the gnome 3 shell? easy (well technically we’re just adding gnome 3…not removing unity…that’d be rather more complicated). as root (or use your infernal sudo if you must) issue… apt-get install gnome-shell when that’s completed log out and then click the small gear icon [...]]]></description>
			<content:encoded><![CDATA[<p>get rid of unity in ubuntu 11.10 and replace it with the gnome 3 shell? easy (well technically we’re just adding gnome 3…not removing unity…that’d be rather more complicated). as root (or use your infernal sudo if you must) issue…</p>
<p>apt-get install gnome-shell</p>
<p>when that’s completed log out and then click the small gear icon next to your username and select gnome from the menu. is it better? probably not. not yet.</p>
<p style="text-align: center;"><a href="http://cloudplasma.co.uk/wp-content/uploads/gnome3_shell.jpg" rel="lightbox[1796]" title="gnome3_shell"><img class="aligncenter size-large wp-image-1795" title="gnome3_shell" src="http://cloudplasma.co.uk/wp-content/uploads/gnome3_shell-494x327.jpg" alt="" width="494" height="327" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/gnome3_activities.jpg" rel="lightbox[1796]" title="gnome3_activities"><img class="aligncenter size-large wp-image-1797" title="gnome3_activities" src="http://cloudplasma.co.uk/wp-content/uploads/gnome3_activities-494x277.jpg" alt="" width="494" height="277" /></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+begone+unity...+http%3A%2F%2Ffrdy.co.uk%2FnUbP34" 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/10/begone-unity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ubuntu 11.10 — a little look</title>
		<link>http://cloudplasma.co.uk/2011/08/ubuntu-11-10-a-little-look/</link>
		<comments>http://cloudplasma.co.uk/2011/08/ubuntu-11-10-a-little-look/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 09:14:01 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[screen shots]]></category>
		<category><![CDATA[ubuntu 11.10]]></category>
		<category><![CDATA[ubuntu 11.10 alpha 3]]></category>
		<category><![CDATA[unity]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=1714</guid>
		<description><![CDATA[ubuntu 11.10 oneiric ocelot (come on people…you could have come up with better that that…) alpha 3 has been released so i thought i’d give it a whirl. been using fedora 15 64 bit since its alpha stage and kind of miss a debian based distro. so i fired up virtualbox to give it a [...]]]></description>
			<content:encoded><![CDATA[<p>ubuntu 11.10 oneiric ocelot (come on people…you could have come up with better that that…) alpha 3 has been <a title="ubuntu 11.10 alpha3 - grab the iso here" href="http://cdimage.ubuntu.com/releases/oneiric/alpha-3/" target="_blank">released</a> so i thought i’d give it a whirl. been using fedora 15 64 bit since its alpha stage and kind of miss a debian based distro. so i fired up <a title="virtualbox - downloads" href="http://www.virtualbox.org/wiki/Downloads" target="_blank">virtualbox</a> to give it a try. here’s a brief look with some screenshots (click any of them for a larger view).</p>
<p>the install was smooth and rather speedy (it’s still using some of the 11.04 artwork but that’s normal with ubuntu alpha versions) and within 20 minutes i got to the login screen.</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/login.jpg" rel="lightbox[1714]" title="login"><img class="aligncenter size-large wp-image-1710" title="login" src="http://cloudplasma.co.uk/wp-content/uploads/login-494x277.jpg" alt="" width="494" height="277" /></a>ubuntu have decided to stick with unity instead of moving to <a title="gnome 3 homepage" href="http://gnome3.org/" target="_blank">gnome 3</a> as fedora have which i can kind of understand as they’ve ploughed so many resources and so much time into it. after logging in we get to the main desktop interface and can load up some ‘goodies’.</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/firefox_files.jpg" rel="lightbox[1714]" title="firefox_files"><img class="aligncenter size-large wp-image-1709" title="firefox_files" src="http://cloudplasma.co.uk/wp-content/uploads/firefox_files-494x277.jpg" alt="" width="494" height="277" /></a>i’m not disliking unity as much as i did the last time i used it…the left bar is actually more configurable than gnome 3’s version. apps can be easily removed (here i got rid of all the usual office guff that’s installed by default) and others added from the main application menu which looks like this…</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/app_menu.jpg" rel="lightbox[1714]" title="app_menu"><img class="aligncenter size-large wp-image-1708" title="app_menu" src="http://cloudplasma.co.uk/wp-content/uploads/app_menu-494x277.jpg" alt="" width="494" height="277" /></a>if you’re too lazy to fire up a terminal window the software centre makes it easy to find and install new software (i.e. first stop… gimp, build-essential, joe, ubuntu-restricted-extras, filezilla and ufraw)</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/software_centre.jpg" rel="lightbox[1714]" title="software_centre"><img class="aligncenter size-large wp-image-1711" title="software_centre" src="http://cloudplasma.co.uk/wp-content/uploads/software_centre-494x277.jpg" alt="" width="494" height="277" /></a>11.10 is using a brand-spanking-new kernel (3.0.0–7-generic). hot off the presses. read more about this big step for linux <a title="linux 3.0 release - info" href="https://lkml.org/lkml/2011/7/21/455" target="_blank">here</a> and here’s the proof…</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/system_info.jpg" rel="lightbox[1714]" title="system_info"><img class="aligncenter size-large wp-image-1712" title="system_info" src="http://cloudplasma.co.uk/wp-content/uploads/system_info-494x277.jpg" alt="" width="494" height="277" /></a>memory usage isn’t exactly minimalist but i had a few things running and the virtual machine was only allocated 1GB of RAM. here’s top and htop displaying the current load and processes</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/top_htop.jpg" rel="lightbox[1714]" title="top_htop"><img class="aligncenter size-large wp-image-1713" title="top_htop" src="http://cloudplasma.co.uk/wp-content/uploads/top_htop-494x277.jpg" alt="" width="494" height="277" /></a>i’m actually quite impressed with 11.10 so far. it’s rather polished and reacts snappily (even when running virtually) and while i wouldn’t recommend you install it on a mission critical machine right now i’m just about to do just that.</p>
<p style="text-align: left;"><strong>EDIT</strong> — install completed on my HP Notebook. ran into one problem after logging in… ‘/usr/lib/libgconf2-4/gconf-sanity-check-2 exits with status 256′ this also happened when i installed the 10.10 beta as i documented <a title="ubuntu 10.10 64bit gconf error - cloudplasma" href="http://cloudplasma.co.uk/2010/09/ubuntu-10-10-64bit-gconf-error/" target="_blank">here</a>. follow the instructions in that post to correct the error. here’s a wee grab of the finished article running on my machine…</p>
<p style="text-align: center;"><a href="http://cloudplasma.co.uk/wp-content/uploads/11.10_installed.jpg" rel="lightbox[1714]" title="11.10_installed"><img class="aligncenter size-large wp-image-1724" title="11.10_installed" src="http://cloudplasma.co.uk/wp-content/uploads/11.10_installed-494x277.jpg" alt="" width="494" height="277" /></a></p>
<p style="text-align: left;">
<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+11.10+%E2%80%94+a+little+look...+http%3A%2F%2Ffrdy.co.uk%2FpKIhlj" 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/08/ubuntu-11-10-a-little-look/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>epson perfection 2480 35mm negative scanner linux</title>
		<link>http://cloudplasma.co.uk/2011/07/epson-perfection-2480-negative-scanner-linux/</link>
		<comments>http://cloudplasma.co.uk/2011/07/epson-perfection-2480-negative-scanner-linux/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 12:12:15 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[35mm]]></category>
		<category><![CDATA[epson perfection 2480 35mm film scanner]]></category>
		<category><![CDATA[film]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[negative scanning]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=1632</guid>
		<description><![CDATA[been meaning to get a 35mm negative scanner for quite some time. couldn’t have been that anxious to use one though as i bought one 10 months ago and didn’t even take it out of the box. got it on ebay for £10. no cables apart from the power supply but still a bit of [...]]]></description>
			<content:encoded><![CDATA[<p>been meaning to get a 35mm negative scanner for quite some time. couldn’t have been that anxious to use one though as i bought one 10 months ago and didn’t even take it out of the box. got it on ebay for £10. no cables apart from the power supply but still a bit of a bargain i think you’ll agree. last week, however, i did take it out of the box and here’s the setup story. no more low quality scans from the local lab.</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/scanner_box.jpg" rel="lightbox[1632]" title="scanner_box"><img class="aligncenter size-large wp-image-1624" title="scanner_box" src="http://cloudplasma.co.uk/wp-content/uploads/scanner_box-494x381.jpg" alt="" width="494" height="381" /></a>well packaged, eh?</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/scanner_box_open.jpg" rel="lightbox[1632]" title="scanner_box_open"><img class="aligncenter size-large wp-image-1625" title="scanner_box_open" src="http://cloudplasma.co.uk/wp-content/uploads/scanner_box_open-494x370.jpg" alt="" width="494" height="370" /></a>good recycled padding there…</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/scanner_packing.jpg" rel="lightbox[1632]" title="scanner_packing"><img class="aligncenter size-large wp-image-1627" title="scanner_packing" src="http://cloudplasma.co.uk/wp-content/uploads/scanner_packing-494x370.jpg" alt="" width="494" height="370" /></a>and the seller is a daily mail reader…no accounting for taste i guess.</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/scanner_unboxed.jpg" rel="lightbox[1632]" title="scanner_unboxed"><img class="aligncenter size-large wp-image-1630" title="scanner_unboxed" src="http://cloudplasma.co.uk/wp-content/uploads/scanner_unboxed-494x370.jpg" alt="" width="494" height="370" /></a>and there she is. condition’s fine. as i said earlier…just the power supply included…luckily i have <strong>many</strong> bags of cables lying around. one of which had the appropriate usb lead.</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/scanner_lid.jpg" rel="lightbox[1632]" title="scanner_lid"><img class="aligncenter size-large wp-image-1626" title="scanner_lid" src="http://cloudplasma.co.uk/wp-content/uploads/scanner_lid-370x494.jpg" alt="" width="370" height="494" /></a>to get to the film scanner one must remove the white background from the lid of the flatbed. this wasn’t instantly obvious to me. little bit of swearing was necessary before i realised this. the scanner head was also a trifle stuck. a good dunt fixed that.</p>
<p style="text-align: left;">linux drivers. i only bought the epson as i knew they had some linux support. check their site <a title="epson perfection 2480 linux drivers - download" href="http://www.avasys.jp/lx-bin2/linux_e/scan/DL1.do" target="_blank">here</a> to locate and download the correct file. a surprisingly wide range of linux distros are supported. i’m using fedora 15 64 bit so went with the rpms (<a>iscan-2.10.0–1.c2.i386.rpm &amp; </a><a>iscan-plugin-gt-f500-1.0.0–1.c2.i386.rpm</a>) although the source is there if you want it. install them in the usual manner…there’s a pdf there too if you’re struggling.</p>
<p style="text-align: left;">now i don’t ever buy software but i’d used <a title="vuescan 9 - homepage" href="http://www.hamrick.com/" target="_blank">vuescan</a> on windows years ago and liked it a lot. i figured that i’d got the scanner for a good price and so $39.95 for some cross-platform software wasn’t too steep (you could just use <a title="xsane - homepage" href="http://www.xsane.org/" target="_blank">xsane</a> of course). this has a year of updates…$79.95 for a lifetime license.</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/scanner_vuescan_in_use.jpg" rel="lightbox[1632]" title="scanner_vuescan_in_use"><img class="aligncenter size-large wp-image-1631" title="scanner_vuescan_in_use" src="http://cloudplasma.co.uk/wp-content/uploads/scanner_vuescan_in_use-494x277.jpg" alt="" width="494" height="277" /></a>here’s vuescan doing its stuff. simple and effective. scanned a strip of 35mm ilford hp5 plus first…</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/scanner_strip.jpg" rel="lightbox[1632]" title="scanner_strip"><img class="aligncenter size-large wp-image-1629" title="scanner_strip" src="http://cloudplasma.co.uk/wp-content/uploads/scanner_strip-494x175.jpg" alt="" width="494" height="175" /></a>and here’s one of the frames…</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/scanner_result.jpg" rel="lightbox[1632]" title="scanner_result"><img class="aligncenter size-large wp-image-1628" title="scanner_result" src="http://cloudplasma.co.uk/wp-content/uploads/scanner_result-494x321.jpg" alt="" width="494" height="321" /></a>not that great but that’s the fault of the photographer…not the hardware of software.</p>
<p style="text-align: left;">so. for £40 or thereabouts i’ve got a very capable film scanner, that’ll do prints nicely also, and some powerful software. not too shabby i think.</p>
<p style="text-align: left;">
<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+epson+perfection+2480+35mm+negative+scanner+linux...+http%3A%2F%2Ffrdy.co.uk%2Fp8fUFI" 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/07/epson-perfection-2480-negative-scanner-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>firefox 6 on fedora 15 64 bit</title>
		<link>http://cloudplasma.co.uk/2011/06/firefox-6-on-fedora-15-64-bit/</link>
		<comments>http://cloudplasma.co.uk/2011/06/firefox-6-on-fedora-15-64-bit/#comments</comments>
		<pubDate>Sat, 25 Jun 2011 13:46:42 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[firefox 6 fedora 15 64 bit]]></category>
		<category><![CDATA[firefox aurora fedora]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=1565</guid>
		<description><![CDATA[this is a guide to install the latest preview version of firefox aurora (firefox 6 alpha currently) on fedora 15 64 bit. fedora doesn’t have the ppa system that i used for ubuntu 11.04. it will only install it for the current user…not system wide. all commands should be entered in the terminal. firstly, back [...]]]></description>
			<content:encoded><![CDATA[<p>this is a guide to install the latest preview version of firefox aurora (firefox 6 alpha currently) on fedora 15 64 bit. fedora doesn’t have the ppa system that i used for <a title="install firefox 6 on ubuntu 11.04" href="http://cloudplasma.co.uk/2011/05/firefox-6-beta-on-ubuntu-11-04/" target="_blank">ubuntu 11.04</a>. it will only install it for the current user…not system wide. all commands should be entered in the terminal.<br />
firstly, back up your existing mozilla directory (this might take a little while)</p>
<p><strong>cp –r .mozilla .mozilla.bak</strong></p>
<p>download the latest version of firefox aurora from the mozilla site <a title="firefox beta (aurora) - downloads" href="http://www.mozilla.com/en-GB/firefox/channel/" target="_blank">here</a></p>
<p>cd into wherever you downloaded this file to…for me it’s</p>
<p><strong>cd Downloads</strong></p>
<p>now, extract the file to a directory called .firefox in your home directory</p>
<p><strong>tar –jxvf firefox* –C /home/yourusername/.firefox</strong></p>
<p>next we need to install some libraries that fedora 15 doesn’t install by default. as <strong>root</strong> issue</p>
<p><strong>yum install libstdc++.so.* glibc-2.14–3.i686 xulrunner-5.0–2.fc15.i686</strong></p>
<p>close down any firefox windows you have open and run the following to start firefox (version 6.0a2 at the time of writing)</p>
<p><strong>.firefox/firefox</strong></p>
<p>there may be easier ways of doing this…i’m not a linux guru. if you have your own tips feel free to comment. some of my extensions aren’t working…most notably xmarks but this will improve in time. seems stable…i’m using it to write this post in fact.</p>
<p style="text-align: center;"><a href="http://cloudplasma.co.uk/wp-content/uploads/firefox_6.jpg" rel="lightbox[1565]" title="firefox_6"><img class="aligncenter size-large wp-image-1566" title="firefox_6" src="http://cloudplasma.co.uk/wp-content/uploads/firefox_6-494x277.jpg" alt="" width="494" height="277" /></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+firefox+6+on+fedora+15+64+bit...+http%3A%2F%2Ffrdy.co.uk%2FjPxeYC" 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/06/firefox-6-on-fedora-15-64-bit/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  cloudplasma.co.uk/category/linux/feed/ ) in 1.73854 seconds, on Feb 9th, 2012 at 6:43 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 9th, 2012 at 7:43 pm UTC -->
