<?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</title>
	<atom:link href="http://cloudplasma.co.uk/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>fraser building</title>
		<link>http://cloudplasma.co.uk/2012/05/fraser-building/</link>
		<comments>http://cloudplasma.co.uk/2012/05/fraser-building/#comments</comments>
		<pubDate>Sun, 06 May 2012 08:02:58 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[images]]></category>
		<category><![CDATA[black & white]]></category>
		<category><![CDATA[fraser building]]></category>
		<category><![CDATA[person]]></category>
		<category><![CDATA[photograph]]></category>
		<category><![CDATA[stairs]]></category>
		<category><![CDATA[university of glasgow]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=2148</guid>
		<description><![CDATA[the south side of the fraser building in the university of glasgow. black &#38; white masks the lurid colours.]]></description>
			<content:encoded><![CDATA[<p><a href="http://cloudplasma.co.uk/wp-content/uploads/fraser_building.jpg" rel="lightbox[2148]" title="fraser_building"><img class="aligncenter size-large wp-image-2147" title="fraser_building" src="http://cloudplasma.co.uk/wp-content/uploads/fraser_building-284x494.jpg" alt="" width="284" height="494" /></a>the south side of the fraser building in the university of glasgow. black &amp; white masks the lurid colours.</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+fraser+building...+http%3A%2F%2Ffrdy.co.uk%2FKbDdJv" 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/fraser-building/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>silhouette</title>
		<link>http://cloudplasma.co.uk/2012/05/silhouette/</link>
		<comments>http://cloudplasma.co.uk/2012/05/silhouette/#comments</comments>
		<pubDate>Tue, 01 May 2012 11:12:02 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[images]]></category>
		<category><![CDATA[black & white]]></category>
		<category><![CDATA[helensburgh]]></category>
		<category><![CDATA[photograph]]></category>
		<category><![CDATA[silhouette]]></category>
		<category><![CDATA[street photography]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=2144</guid>
		<description><![CDATA[no wind in helensburgh for once…crikey! sat on the front for a while enjoying the sun.]]></description>
			<content:encoded><![CDATA[<p><a href="http://cloudplasma.co.uk/wp-content/uploads/helensburgh_silhouette.jpg" rel="lightbox[2144]" title="helensburgh_silhouette"><img class="aligncenter size-large wp-image-2143" title="helensburgh_silhouette" src="http://cloudplasma.co.uk/wp-content/uploads/helensburgh_silhouette-494x370.jpg" alt="" width="494" height="370" /></a>no wind in helensburgh for once…crikey! sat on the front for a while enjoying the sun.</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+silhouette...+http%3A%2F%2Ffrdy.co.uk%2FJZNGaZ" 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/silhouette/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>domo’s on a day out</title>
		<link>http://cloudplasma.co.uk/2012/04/domos-on-a-day-out/</link>
		<comments>http://cloudplasma.co.uk/2012/04/domos-on-a-day-out/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 07:09:24 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[images]]></category>
		<category><![CDATA[domo]]></category>
		<category><![CDATA[pocket]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[whisky]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=2137</guid>
		<description><![CDATA[roving the country in search of stimulation]]></description>
			<content:encoded><![CDATA[<p>roving the country in search of stimulation</p>
<p><a href="http://cloudplasma.co.uk/wp-content/uploads/domo_1.jpg" rel="lightbox[2137]" title="domo_1"><img class="aligncenter size-large wp-image-2134" title="domo_1" src="http://cloudplasma.co.uk/wp-content/uploads/domo_1-494x370.jpg" alt="" width="494" height="370" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/domo_2.jpg" rel="lightbox[2137]" title="domo_2"><img class="aligncenter size-large wp-image-2135" title="domo_2" src="http://cloudplasma.co.uk/wp-content/uploads/domo_2-494x370.jpg" alt="" width="494" height="370" /></a><a href="http://cloudplasma.co.uk/wp-content/uploads/domo_3.jpg" rel="lightbox[2137]" title="domo_3"><img class="aligncenter size-large wp-image-2136" title="domo_3" src="http://cloudplasma.co.uk/wp-content/uploads/domo_3-494x370.jpg" alt="" width="494" height="370" /></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+domo%E2%80%99s+on+a+day+out...+http%3A%2F%2Ffrdy.co.uk%2FI45azO" 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/domos-on-a-day-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>upgrade t-mobile uk samsung galaxy s ii to android 4.0.3 (ics)</title>
		<link>http://cloudplasma.co.uk/2012/04/upgrade-t-mobile-uk-samsung-galaxy-s-ii-to-android-4-0-3-ics/</link>
		<comments>http://cloudplasma.co.uk/2012/04/upgrade-t-mobile-uk-samsung-galaxy-s-ii-to-android-4-0-3-ics/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 09:12:48 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[4.0.3]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[ics]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[samsung galaxy s ii]]></category>
		<category><![CDATA[t-mobile]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=2120</guid>
		<description><![CDATA[tired of waiting for samsung and t-mobile to release android ice cream sandwich (4.0.3) for your UK t-mobile samsung galaxy s ii? i was. decided to take the plunge and upgrade with a non-UK ROM that has all the UK carrier settings. please note that if anything happens to your phone then i am in [...]]]></description>
			<content:encoded><![CDATA[<p>tired of waiting for samsung and t-mobile to release android ice cream sandwich (4.0.3) for your UK t-mobile samsung galaxy s ii? i was. decided to take the plunge and upgrade with a non-UK ROM that has all the UK carrier settings.</p>
<p>please note that if anything happens to your phone then <strong>i am in no way responsible…you’re doing this at your own risk</strong>. it worked flawlessly for me. i upgraded from 2.3.6 and i didn’t need to wipe…i lost no data…all my apps were preserved…texts…wi-fi settings…etc…backup though. <strong>backup</strong>.</p>
<p>i used the Polish ROM. grab it from <a title="sammobile.com - firmware" href="http://www.sammobile.com/firmware/?page=3&amp;t=1&amp;o=1&amp;m=GT-I9100&amp;r=1#regiona" target="_blank">sammobile.com</a> (you’ll need to register to download the ROM but it’s worth it). the one i chose is I9100OXALPQ which is near the bottom. after the download is complete extract the zip so that you have a file called I9100XXLPQ_I9100OXALPQ_I9100XXLPQ_HOME.tar.md5.</p>
<p>now you’ll need to download <a title="xda developers - cf-root" href="http://forum.xda-developers.com/showthread.php?t=1544487" target="_blank">odin</a>. there’s a link to it just under the screenshots in the first post. once you’ve downloaded the file extract it and run Odin3 v1.85.exe…you’ll get something that looks like this…</p>
<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/ics_odin.jpg" rel="lightbox[2120]" title="ics_odin"><img class="aligncenter size-large wp-image-2121" title="ics_odin" src="http://cloudplasma.co.uk/wp-content/uploads/ics_odin-494x351.jpg" alt="" width="494" height="351" /></a></p>
<p style="text-align: left;">(if you want to try this under linux there’s <a title="heimdall - linux odin replacement" href="http://www.glassechidna.com.au/products/heimdall/" target="_blank">heimdall</a>…i didn’t use it as there isn’t a 64 bit binary and i was too lazy to compile it from source) check the box next to the ‘PDA’ button and then click the PDA button (don’t mess with any of the other settings) and browse to the firmware that you extracted earlier. now it’s time to turn off your phone and boot into download mode. switch off the handset and then press the ‘volume up’ ‘menu’, and ‘power’ buttons together. follow the prompts and you should be in download mode. connect the phone to your computer by usb and you should notice that odin ‘sees’ it. if you’re happy with all of the above click the ‘Start’ button in odin and the flashing will commence. it should take a few minutes and then your phone will reboot.</p>
<p style="text-align: left;">now all has hopefully gone to plan…you’ll want root, right? if you don’t then ignore the following. if you do proceed then note that this is <strong>rather frowned upon by samsung</strong>.</p>
<p style="text-align: left;">follow <a href="http://download.chainfire.eu/152/CF-Root/SGS2/CF-Root-SGS2_XX_XEO_LPQ-PROPER-v5.4-CWM5.zip" target="_blank">this</a> link to grab the rooted kernel for the Polish ROM you’ve installed (if you used another ROM you’ll need another kernel…search the xda thread above). repeat the steps you followed for flashing the firmware except browse to the extracted kernel when you click the PDA button in odin.</p>
<p style="text-align: center;"><a href="http://cloudplasma.co.uk/wp-content/uploads/ics_info.png" rel="lightbox[2120]" title="ics_info"><img class="aligncenter size-large wp-image-2127" title="ics_info" src="http://cloudplasma.co.uk/wp-content/uploads/ics_info-296x494.png" alt="" width="296" height="494" /></a></p>
<p style="text-align: left;">and there you go…a rooted galaxy s ii with the latest firmware. if you’re worried about the yellow warning triangle on boot then i’d recommend <a title="triangle away - google play" href="https://play.google.com/store/apps/details?id=eu.chainfire.triangleaway" target="_blank">triangle away</a> but read the details first.</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+upgrade+t-mobile+uk+samsung+galaxy+s+ii+to+android+4.0.3+%28ics%29...+http%3A%2F%2Ffrdy.co.uk%2FIt3qCF" 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/upgrade-t-mobile-uk-samsung-galaxy-s-ii-to-android-4-0-3-ics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>george hotel — x-pro</title>
		<link>http://cloudplasma.co.uk/2012/04/george-hotel-x-pro/</link>
		<comments>http://cloudplasma.co.uk/2012/04/george-hotel-x-pro/#comments</comments>
		<pubDate>Sun, 08 Apr 2012 09:53:58 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[images]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[35mm]]></category>
		<category><![CDATA[cross processed]]></category>
		<category><![CDATA[film]]></category>
		<category><![CDATA[george hotel]]></category>
		<category><![CDATA[inveraray]]></category>
		<category><![CDATA[olympus trip 35]]></category>
		<category><![CDATA[x-pro]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=2116</guid>
		<description><![CDATA[another shot from the olympus trip 35…some fujichrome 200 given the cross process treatment. the george hotel in inveraray. great beer garden.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/george_hotel.jpg" rel="lightbox[2116]" title="george_hotel"><img class="aligncenter size-large wp-image-2117" title="george_hotel" src="http://cloudplasma.co.uk/wp-content/uploads/george_hotel-329x494.jpg" alt="" width="329" height="494" /></a>another shot from the <a title="olympus trip 35 film camera" href="http://cloudplasma.co.uk/2012/02/olympus-trip-35-film-camera/">olympus trip 35</a>…some fujichrome 200 given the cross process treatment. the george hotel in inveraray. great beer garden.</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+george+hotel+%E2%80%94+x-pro...+http%3A%2F%2Ffrdy.co.uk%2FIoDOGU" 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/george-hotel-x-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>animée beer</title>
		<link>http://cloudplasma.co.uk/2012/04/animee-beer/</link>
		<comments>http://cloudplasma.co.uk/2012/04/animee-beer/#comments</comments>
		<pubDate>Sat, 07 Apr 2012 09:54:57 +0000</pubDate>
		<dc:creator>col</dc:creator>
				<category><![CDATA[images]]></category>
		<category><![CDATA[50mm]]></category>
		<category><![CDATA[animée beer]]></category>
		<category><![CDATA[beer glass]]></category>
		<category><![CDATA[booze for ladies]]></category>
		<category><![CDATA[dof]]></category>
		<category><![CDATA[photograph]]></category>

		<guid isPermaLink="false">http://cloudplasma.co.uk/?p=2112</guid>
		<description><![CDATA[animée beer is for the ladies it seems. luckily i wasn’t the one drinking it. just liked the glass.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://cloudplasma.co.uk/wp-content/uploads/animee.jpg" rel="lightbox[2112]" title="animee"><img class="aligncenter size-large wp-image-2111" title="animee" src="http://cloudplasma.co.uk/wp-content/uploads/animee-494x330.jpg" alt="" width="494" height="330" /></a>animée beer is for the ladies <a title="animee beer - info" href="http://www.molsoncoors.com/en/News/United%20Kingdom/Corporate/2011/July/18/Molson%20Coors%20UK%20and%20Ireland%20targets%20women%20with%20launch%20of%20Animee.aspx" target="_blank">it seems</a>. luckily i wasn’t the one drinking it. just liked the glass.</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+anim%C3%A9e+beer...+http%3A%2F%2Ffrdy.co.uk%2FIjvLey" 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/animee-beer/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>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  cloudplasma.co.uk/feed/ ) in 2.57532 seconds, on May 20th, 2012 at 1:35 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 21st, 2012 at 1:35 am UTC -->
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Quick Cache Is Fully Functional :-) ... A Quick Cache file was just served for (  cloudplasma.co.uk/feed/ ) in 0.02368 seconds, on May 20th, 2012 at 3:48 am UTC. -->
