<?xml version="1.0"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">

<channel>
	<title>Planet ScotLUG</title>
	<link>http://planet.scotlug.org.uk/</link>
	<language>en</language>
	<description>Planet ScotLUG - http://planet.scotlug.org.uk/</description>

<item>
	<title>The Lodge: Automating HP Server Startup</title>
	<guid>http://lodge.glasgownet.com/?p=667</guid>
	<link>http://lodge.glasgownet.com/2010/09/02/automating-hp-server-startup/</link>
	<description>&lt;div class=&quot;microid-mailto+http:sha1:ea32adeebe313782c97b685ecfba3a5b3939c78e&quot;&gt;&lt;p&gt;It may not be much, but I stuck together a small article about how to remotely automate the startup of HP servers. We did this ages, and only now have I gotten around to tidying up the notes!&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://lodge.glasgownet.com/tech/automating-server-startup-with-hp-ilo/&quot;&gt;Over here&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;</description>
	<pubDate>Thu, 02 Sep 2010 19:06:45 +0000</pubDate>
</item>
<item>
	<title>The Stropharia usability blog: Please don't leave me!</title>
	<guid>http://www.stropharia.com/the-blog/5-website-usability/29-please-dont-leave-me</guid>
	<link>http://www.stropharia.com/the-blog/5-website-usability/29-please-dont-leave-me</link>
	<description>&lt;p&gt;In a previous article, Unsubscribe me from this hell, I commented on how difficult it often was to find out how to stop receiving email from some companies along with providing an example of an easy to discover and use unsubscribe option. In this sequel I look at Verisign, one of the largest providers of SSL certificates used to secure website traffic etc.&lt;/p&gt;
&lt;p&gt;I am fed up receiving useless emails from Verisign. They contain no information and often use scare tactics (falsely, I might add) in order to get you to choose their product over a competitor. I am, however, lazy and it's taken me years to bother to look for an unsubscribe link. I found it in the expected place – tiny text at the bottom of the email buried amongst plenty of irrelevant lines of words.&lt;/p&gt;</description>
	<pubDate>Wed, 01 Sep 2010 10:19:28 +0000</pubDate>
</item>
<item>
	<title>The Lodge: Recovering a HTC Desire</title>
	<guid>http://lodge.glasgownet.com/?p=651</guid>
	<link>http://lodge.glasgownet.com/2010/08/31/recovering-a-htc-desire/</link>
	<description>&lt;div class=&quot;microid-mailto+http:sha1:3bced562b928dbb0ae84ba214d123063bc02a35b&quot;&gt;&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Last night I thought I would try out &amp;#8220;Remote Media&amp;#8221; by Mark Martinsson on my HTC Desire as an alternative to Twonky Media Server. I started it up, and then left it indexing my files. However, due to me being extremely tired I then left it and went to bed instead. I briefly checked on it in the middle of the night to plug it in and charge, and spotted the &amp;#8220;Low storage space&amp;#8221; warning. I thought nothing of it, as I&amp;#8217;ve encountered that many times before and decided I would deal with it the next morning.&lt;/p&gt;
&lt;p&gt;So, 7 hours later I looked at the phone and spotted the HTC logo endlessly looping. This Is Bad(tm). The phone had died in the middle of the night, and was now failing to boot. Great.&lt;/p&gt;
&lt;p&gt;I booted up the Recovery image with the volume down &amp;#038; power button combo, and had a look around. Every time I tried a command I got the following error.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;E:Error in DATA:data/recovery/log&lt;br /&gt;
(No space left on device)&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Great. Google have made an OS that fails to boot when it&amp;#8217;s out of space. How clever. I subsequently decided against just formatting all and starting from scratch for two reasons. Firstly, my backup was more than a few days old, and secondly I didn&amp;#8217;t want to be beaten by a stupid design failure. Onto the recovery images and remote access.&lt;/p&gt;
&lt;p&gt;Now, I&amp;#8217;ve used ClockWorkMod before in order to install other ROMs, but for some reason my phone had defaulted back to the normal Recovery image. This image doesn&amp;#8217;t have ADBD, and also doesn&amp;#8217;t offer any Backup to SD options. After spending I good hour or two hunting down an independent recovery image for the Desire, I discovered the ClockworkMod Recovery image sitting on my SD card! Back into Recovery Mode, select Apply update.zip, and relax as ClockWorkMod Recovery appeared.&lt;/p&gt;
&lt;p&gt;In this ROM it would be trivial to backup and then reinstall, but doing all that just due to lack of space seems silly. Download the Android Developer Kit, connect up the phone with the USB cable, and run ./adb device from the tools directory to check that the phone is discovered. &lt;/p&gt;
&lt;p&gt;Once discovered, connect to the built in ADBD instance with ./adb shell.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;
root@kyleg-laptop:/home/kyleg/Applications/android-sdk-linux_86/tools# ./adb devices&lt;br /&gt;
List of devices attached&lt;br /&gt;
HT067PL05406	recovery&lt;/p&gt;
&lt;p&gt;root@kyleg-laptop:/home/kyleg/Applications/android-sdk-linux_86/tools# ./adb shell&lt;br /&gt;
~ #
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;A quick df -h displays the obvious&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;
~ # df -h&lt;br /&gt;
Filesystem                Size      Used Available Use% Mounted on&lt;br /&gt;
tmpfs                   199.2M         0    199.2M   0% /dev&lt;br /&gt;
/dev/block/mtdblock4     40.0M      1.2M     38.8M   3% /cache&lt;br /&gt;
/dev/block/mtdblock5    147.6M    147.6M         0 100% /data&lt;br /&gt;
/dev/block/mmcblk0p1      6.7G      4.3G      2.5G  63% /sdcard&lt;br /&gt;
~ #
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Now we&amp;#8217;re in business. We have access to the phone and the filesystem. We can then do some hunting around to find what&amp;#8217;s taking up the space. A few minutes later, du -h /data | grep M shows up the following&amp;#8230;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;58.5M	./data/com.noname.remotemedia/databases&lt;br /&gt;
58.5M	./data/com.noname.remotemedia
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Culprit found. Thanks guys. &lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;
/data/data/com.noname.remotemedia/databases # rm remotemedia.db&lt;br /&gt;
/data/data/com.noname.remotemedia/databases # df -h&lt;br /&gt;
Filesystem                Size      Used Available Use% Mounted on&lt;br /&gt;
tmpfs                   199.2M         0    199.2M   0% /dev&lt;br /&gt;
/dev/block/mtdblock4     40.0M      1.2M     38.8M   3% /cache&lt;br /&gt;
/dev/block/mtdblock5    147.6M     89.2M     58.5M  60% /data&lt;br /&gt;
/dev/block/mmcblk0p1      6.7G      4.3G      2.5G  63% /sdcard&lt;br /&gt;
/data/data/com.noname.remotemedia/databases # &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;And off we go. A quick sync and exit, and the phone can safely be rebooted and used. I highly recommend uninstalling Remote Media though..&lt;/p&gt;
&lt;/div&gt;</description>
	<pubDate>Tue, 31 Aug 2010 14:36:48 +0000</pubDate>
</item>

</channel>
</rss>
