<?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>Jumping Mouse</title>
	<atom:link href="http://www.jumpingmouse.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jumpingmouse.co.uk</link>
	<description>Java/J2EE and website development</description>
	<lastBuildDate>Mon, 31 Jan 2011 13:59:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Apache and PHP on Snow Leopard</title>
		<link>http://www.jumpingmouse.co.uk/2010/12/29/apache-and-php-on-snow-leopard/</link>
		<comments>http://www.jumpingmouse.co.uk/2010/12/29/apache-and-php-on-snow-leopard/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 12:38:54 +0000</pubDate>
		<dc:creator>edmund</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[snow]]></category>

		<guid isPermaLink="false">http://www.jumpingmouse.co.uk/?p=56</guid>
		<description><![CDATA[Yes, I have a new Mac. There may be fewer Ubuntu posts for a while. To get Apache and PHP going for the first time, the following files need changing: /etc/hosts /etc/apache2/httpd.conf /etc/apache2/extra/httpd-vhosts.conf /etc/apache2/users/&#60;username&#62; To create a new virtual host, the following files need changing: /etc/hosts /etc/apache2/extra/httpd-vhosts.conf /etc/apache2/users/&#60;username&#62; There are more details here: http://foundationphp.com/tutorials/vhosts_leopard.php http://support.apple.com/kb/TA25038 [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, I have a new Mac. There may be fewer Ubuntu posts for a while.</p>
<p>To get Apache and PHP going for the first time, the following files need changing:</p>
<ul>
<li>/etc/hosts</li>
<li>/etc/apache2/httpd.conf</li>
<li>/etc/apache2/extra/httpd-vhosts.conf</li>
<li>/etc/apache2/users/&lt;username&gt;</li>
</ul>
<p>To create a new virtual host, the following files need changing:</p>
<ul>
<li>/etc/hosts</li>
<li>/etc/apache2/extra/httpd-vhosts.conf</li>
<li>/etc/apache2/users/&lt;username&gt;</li>
</ul>
<p>There are more details here:</p>
<ul>
<li><a href="http://foundationphp.com/tutorials/vhosts_leopard.php" target="_blank">http://foundationphp.com/tutorials/vhosts_leopard.php</a></li>
<li><a href="http://support.apple.com/kb/TA25038" target="_blank">http://support.apple.com/kb/TA25038</a></li>
</ul>
<p>I just know I&#8217;ll forget about that last file if I don&#8217;t record it here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jumpingmouse.co.uk/2010/12/29/apache-and-php-on-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Linux uppercase directory names converted to lowercase</title>
		<link>http://www.jumpingmouse.co.uk/2010/04/25/ubuntu-linux-uppercase-directory-names-converted-to-lowercase/</link>
		<comments>http://www.jumpingmouse.co.uk/2010/04/25/ubuntu-linux-uppercase-directory-names-converted-to-lowercase/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 11:46:37 +0000</pubDate>
		<dc:creator>edmund</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[lowercase]]></category>
		<category><![CDATA[name]]></category>
		<category><![CDATA[uppercase]]></category>
		<category><![CDATA[vfat]]></category>

		<guid isPermaLink="false">http://www.jumpingmouse.co.uk/?p=21</guid>
		<description><![CDATA[I discovered that any directory I created on a vfat file system in Linux whose name consisted solely of uppercase letters, and was 8 characters or less in length, was being converted to a lowercase name. This was causing problems of J2EE war files being created containing both directories &#8220;WEB-INF&#8221; and &#8220;web-inf&#8221;. The fix was [...]]]></description>
			<content:encoded><![CDATA[<p>I discovered that any directory I created on a vfat file system in Linux whose name consisted solely of uppercase letters, and was 8 characters or less in length, was being converted to a lowercase name.<br />
This was causing problems of J2EE war files being created containing both directories &#8220;WEB-INF&#8221; and &#8220;web-inf&#8221;. </p>
<p>The fix was to add the shortname=winnt option to the file system mapping in /etc/fstab, and then reboot.</p>
<p>So the line in /etc/fstab would be, for example:<br />
<code><br />
UUID=483E-D7D6  /data           vfat    shortname=winnt,utf8,umask=000,gid=100,uid=1000 0       1<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jumpingmouse.co.uk/2010/04/25/ubuntu-linux-uppercase-directory-names-converted-to-lowercase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Springsource error: Plug-in org.maven.ide.eclipse.jdt was unable to load class org.maven.ide.eclipse.jdt.internal.launch.MavenRuntimeClasspathProvider</title>
		<link>http://www.jumpingmouse.co.uk/2010/04/17/springsource-error-plug-in-orgmavenideeclipsejdt-was-unable-to-load-class-orgmavenideeclipsejdtinternallaunchmavenruntimeclasspathprovider/</link>
		<comments>http://www.jumpingmouse.co.uk/2010/04/17/springsource-error-plug-in-orgmavenideeclipsejdt-was-unable-to-load-class-orgmavenideeclipsejdtinternallaunchmavenruntimeclasspathprovider/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 20:46:24 +0000</pubDate>
		<dc:creator>edmund</dc:creator>
				<category><![CDATA[Spring]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[junit]]></category>
		<category><![CDATA[MavenRuntimeClasspathProvider]]></category>
		<category><![CDATA[org.maven.ide.eclipse.jdt]]></category>
		<category><![CDATA[springsource]]></category>
		<category><![CDATA[sts]]></category>

		<guid isPermaLink="false">http://www.jumpingmouse.co.uk/?p=20</guid>
		<description><![CDATA[After turning my application running under SpringSource Tool Suite into a web app, then trying to run pre-existing junit tests, I started getting the error: Plug-in org.maven.ide.eclipse.jdt was unable to load class org.maven.ide.eclipse.jdt.internal.launch.MavenRuntimeClasspathProvider. An error occurred while automatically activating bundle org.maven.ide.eclipse.jdt (810). The fix was to delete all the existing Run configurations (Run As / [...]]]></description>
			<content:encoded><![CDATA[<p><br/><br />
After turning my application running under SpringSource Tool Suite into a web app, then trying to run pre-existing junit tests, I started getting the error:<br />
<code><br />
Plug-in org.maven.ide.eclipse.jdt was unable to load class org.maven.ide.eclipse.jdt.internal.launch.MavenRuntimeClasspathProvider.</code></p>
<p>An error occurred while automatically activating bundle org.maven.ide.eclipse.jdt (810).</p>
<p>The fix was to delete all the existing Run configurations (Run As / Run Configurations&#8230; / select m2 custom Run Configurations and delete them).<br />
Restart STS (may not be necessary), and it now works!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jumpingmouse.co.uk/2010/04/17/springsource-error-plug-in-orgmavenideeclipsejdt-was-unable-to-load-class-orgmavenideeclipsejdtinternallaunchmavenruntimeclasspathprovider/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips for Successful Corporate Blogging</title>
		<link>http://www.jumpingmouse.co.uk/2010/03/21/tips-for-successful-corporate-blogging/</link>
		<comments>http://www.jumpingmouse.co.uk/2010/03/21/tips-for-successful-corporate-blogging/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 15:10:10 +0000</pubDate>
		<dc:creator>edmund</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[corporate]]></category>

		<guid isPermaLink="false">http://www.jumpingmouse.co.uk/?p=19</guid>
		<description><![CDATA[A recent boagworld podcast contained a segment on &#8220;Why corporate blogs fail&#8221;.  I&#8217;m going to summarise the content here, but the podcast itself contains loads of useful extra information and asides if you want more detail.  Most of it applies to any blog, not just organisational ones, and there&#8217;s a lot here I can learn [...]]]></description>
			<content:encoded><![CDATA[<p>A recent <a href="http://boagworld.com/podcast/203" target="_blank">boagworld podcast</a> contained a segment on &#8220;Why corporate blogs fail&#8221;.  I&#8217;m going to summarise the content here, but the podcast itself contains loads of useful extra information and asides if you want more detail.  Most of it applies to any blog, not just organisational ones, and there&#8217;s a lot here I can learn from.</p>
<p>What Paul (Boag) said was that the most common reason for corporate blogs to fail was very simple: people stop blogging.  They stop blogging partly because it takes time to build a following and people give up too soon, and they also stop because blogging is hard.  It takes time to blog and it takes time to think of ideas.</p>
<p>But why blog in the first place?  Here are some reasons:</p>
<ul>
<li>It improves your search engine visibility.</li>
<li>It attracts users to your site.</li>
<li>It results in increased links to your site.</li>
</ul>
<div>Some principles to bear in mind when blogging:</div>
<div>
<ul>
<li>Not all posts need to be long posts.</li>
<li>Keep a list of blog ideas wherever you are, rather than sitting at a computer hoping for inspiration to strike.</li>
<li>Vary the type of blog post (see below).</li>
<li>A post doesn&#8217;t have to be perfectly written.</li>
<li>Don&#8217;t assume that if you know something, everyone else does too.</li>
</ul>
<div>Some possible types of blog post:</div>
<div>
<ul>
<li>Ask a question</li>
<li>Cover an event, with a preview or review</li>
<li>A commentary (i.e. a response to someone else&#8217;s blog or article)</li>
<li>News in your sector, not just in your own organisation</li>
<li>An interview, possibly posting it in video or audio form</li>
<li>A case study, focussing on how a problem was solved, rather than self-congratulation</li>
<li>A review of a book, a service, or anything else</li>
<li>Hints and tips</li>
<li>A tutorial, include video, imagery, etc. if possible</li>
<li>Lists, e.g. a &#8220;top ten&#8221; list &#8211; easy to digest and popular</li>
<li>Resources, i.e. links to interesting articles</li>
<li>Predictions, can make you look like a visionary!</li>
<li>Debates, i.e. put forward someone else&#8217;s point of view, even if (or especially if) you don&#8217;t agree with it.</li>
</ul>
<div>Yes, all useful stuff, and a reminder to me to do more than just hints and tips!</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.jumpingmouse.co.uk/2010/03/21/tips-for-successful-corporate-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SpringSource Tool Suite Buttons</title>
		<link>http://www.jumpingmouse.co.uk/2010/02/23/springsource-tool-suite-buttons/</link>
		<comments>http://www.jumpingmouse.co.uk/2010/02/23/springsource-tool-suite-buttons/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 19:00:24 +0000</pubDate>
		<dc:creator>edmund</dc:creator>
				<category><![CDATA[Spring]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[buttons]]></category>
		<category><![CDATA[springsource]]></category>
		<category><![CDATA[sts]]></category>

		<guid isPermaLink="false">http://www.jumpingmouse.co.uk/?p=18</guid>
		<description><![CDATA[After installing SpringSource Tool Suite 2.3.0 on Ubuntu 9.10, various IDE buttons were not working. The fix is to set the right value for GDK_NATIVE_WINDOWS before running it, e.g. have a file in /usr/bin that looks something like: #!/bin/sh export GDK_NATIVE_WINDOWS=1 /usr/lib/springsource/sts-2.3.0.RELEASE/STS That&#8217;s it for now.]]></description>
			<content:encoded><![CDATA[<p>After installing SpringSource Tool Suite 2.3.0 on Ubuntu 9.10, various IDE buttons were not working. The fix is to set the right value for GDK_NATIVE_WINDOWS before running it, e.g. have a file in /usr/bin that looks something like:<br />
<code><br />
#!/bin/sh<br />
export GDK_NATIVE_WINDOWS=1<br />
/usr/lib/springsource/sts-2.3.0.RELEASE/STS<br />
</code></p>
<p>That&#8217;s it for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jumpingmouse.co.uk/2010/02/23/springsource-tool-suite-buttons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade Rails Database in Production Environment</title>
		<link>http://www.jumpingmouse.co.uk/2010/02/16/rails-upgrade-database-in-production-environment/</link>
		<comments>http://www.jumpingmouse.co.uk/2010/02/16/rails-upgrade-database-in-production-environment/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 14:22:35 +0000</pubDate>
		<dc:creator>edmund</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[migrate]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.jumpingmouse.co.uk/?p=17</guid>
		<description><![CDATA[To upgrade a database which is not in the development environment, use the RAILS_ENV parameter to rake db:migrate. For example: $ rake db:migrate RAILS_ENV="production" VERSION=9]]></description>
			<content:encoded><![CDATA[<p>To upgrade a database which is not in the development environment, use the RAILS_ENV parameter to rake db:migrate.</p>
<p>For example:<br />
<code>$ rake db:migrate RAILS_ENV="production" VERSION=9</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jumpingmouse.co.uk/2010/02/16/rails-upgrade-database-in-production-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu wifi cannot obtain ip address</title>
		<link>http://www.jumpingmouse.co.uk/2009/11/22/ubuntu-wifi-cannot-obtain-ip-address/</link>
		<comments>http://www.jumpingmouse.co.uk/2009/11/22/ubuntu-wifi-cannot-obtain-ip-address/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 12:53:21 +0000</pubDate>
		<dc:creator>edmund</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.jumpingmouse.co.uk/?p=16</guid>
		<description><![CDATA[After I upgraded to Ubuntu 9.04 I could no longer connect to secured wifi networks. 6 months later, I have found a fix! Here&#8217;s how I did it&#8230; Open wicd, then Preferences / Advanced Settings Change WPA Supplicant Driver from ndiswrapper to wext. I had to click on &#8220;Connect&#8221; to the wifi network 3 times [...]]]></description>
			<content:encoded><![CDATA[<p>After I upgraded to Ubuntu 9.04 I could no longer connect to secured wifi networks.<br />
6 months later, I have found a fix! Here&#8217;s how I did it&#8230;</p>
<p>Open wicd, then<br />
Preferences / Advanced Settings<br />
Change WPA Supplicant Driver from ndiswrapper to wext.</p>
<p>I had to click on &#8220;Connect&#8221; to the wifi network 3 times before it connected &#8211; the first 2 times it connected then immediately disconnected.</p>
<p>Maybe the WPA Supplicant Driver was wrongly set because the upgrade to 9.04 replaced ndiswrapper with a better driver, but didn&#8217;t update this setting, but that&#8217;s pure speculation. Anyway, it now works!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jumpingmouse.co.uk/2009/11/22/ubuntu-wifi-cannot-obtain-ip-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10 Firefox 3.5 fonts</title>
		<link>http://www.jumpingmouse.co.uk/2009/11/18/ubuntu-910-firefox-35-fonts/</link>
		<comments>http://www.jumpingmouse.co.uk/2009/11/18/ubuntu-910-firefox-35-fonts/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 10:02:05 +0000</pubDate>
		<dc:creator>edmund</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[3.5]]></category>
		<category><![CDATA[9.10]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[fonts]]></category>

		<guid isPermaLink="false">http://www.jumpingmouse.co.uk/?p=15</guid>
		<description><![CDATA[After upgrading to 9.10, the fonts in Firefox were too big and blurry. I fixed it as follows: cd /etc/fonts/conf.d sudo mv 10-hinting-slight.conf 10-hinting-slight.conf.original sudo ln -s /etc/fonts/conf.available/10-hinting-medium.conf /etc/fonts/conf.d/. sudo ln -s /etc/fonts/conf.available/10-sub-pixel-rgb.conf /etc/fonts/conf.d/. sudo dpkg-reconfigure fontconfig Restart Firefox. Thanks to Carlo Hamalainen for providing the fix.]]></description>
			<content:encoded><![CDATA[<p>After upgrading to 9.10, the fonts in Firefox were too big and blurry.  I fixed it as follows:<br />
<code><br />
cd /etc/fonts/conf.d<br />
sudo mv 10-hinting-slight.conf 10-hinting-slight.conf.original<br />
sudo ln -s /etc/fonts/conf.available/10-hinting-medium.conf /etc/fonts/conf.d/.<br />
sudo ln -s /etc/fonts/conf.available/10-sub-pixel-rgb.conf /etc/fonts/conf.d/.<br />
sudo dpkg-reconfigure fontconfig<br />
</code></p>
<p>Restart Firefox.</p>
<p>Thanks to <a href="http://carlo-hamalainen.net/blog/?p=291">Carlo Hamalainen</a> for providing the fix.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jumpingmouse.co.uk/2009/11/18/ubuntu-910-firefox-35-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10: Disable &#8220;shut down after 60 seconds&#8221;</title>
		<link>http://www.jumpingmouse.co.uk/2009/11/17/ubuntu-910-disable-shut-down-after-60-seconds/</link>
		<comments>http://www.jumpingmouse.co.uk/2009/11/17/ubuntu-910-disable-shut-down-after-60-seconds/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 22:57:59 +0000</pubDate>
		<dc:creator>edmund</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[9.10]]></category>
		<category><![CDATA[shutdown]]></category>

		<guid isPermaLink="false">http://www.jumpingmouse.co.uk/?p=14</guid>
		<description><![CDATA[In 9.04, Ubuntu introduced the ridiculous default of waiting 60 seconds after you clicked on &#8220;shut down&#8221; before actually doing it. Presumably in case you changed your mind. Yeah, really useful. Upgrading to 9.10 re-introduced this &#8220;feature&#8221;, but it&#8217;s now even less obvious how to turn it off. Here&#8217;s how: Press Alt-F2 In the Run [...]]]></description>
			<content:encoded><![CDATA[<p>In 9.04, Ubuntu introduced the ridiculous default of waiting 60 seconds after you clicked on &#8220;shut down&#8221; before actually doing it.  Presumably in case you changed your mind. Yeah, really useful.<br />
Upgrading to 9.10 re-introduced this &#8220;feature&#8221;, but it&#8217;s now even less obvious how to turn it off.  Here&#8217;s how:</p>
<ol>
<li>Press Alt-F2</li>
<li>In the Run Application window, type the following then click on Run:<br />
gconf-editor</li>
<li>In the Configuration Editor window, go to Apps/indicator-session, check the suppress_logout_restart_shutdown checkbox, then close the window.</li>
</ol>
<p>Nice.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jumpingmouse.co.uk/2009/11/17/ubuntu-910-disable-shut-down-after-60-seconds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10 mounts cannot yet be mounted</title>
		<link>http://www.jumpingmouse.co.uk/2009/11/17/ubuntu-910-mounts-cannot-yet-be-mounted/</link>
		<comments>http://www.jumpingmouse.co.uk/2009/11/17/ubuntu-910-mounts-cannot-yet-be-mounted/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 22:31:56 +0000</pubDate>
		<dc:creator>edmund</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[9.10]]></category>
		<category><![CDATA[fstab]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[mounts]]></category>
		<category><![CDATA[startup]]></category>

		<guid isPermaLink="false">http://www.jumpingmouse.co.uk/?p=13</guid>
		<description><![CDATA[I just upgraded from Ubuntu 9.04 to Ubuntu 9.10. On day 1, startup worked just fine. But that was because I went to make a cup of tea while it was starting up. On day 2, I got this message during startup: One or more of the mounts listed in /etc/fstab cannnot yet be mounted: [...]]]></description>
			<content:encoded><![CDATA[<p>I just upgraded from Ubuntu 9.04 to Ubuntu 9.10.<br />
On day 1, startup worked just fine.  But that was because I went to make a cup of tea while it was starting up.<br />
On day 2, I got this message during startup:<br />
<code><br />
One or more of the mounts listed in /etc/fstab cannnot yet be mounted:<br />
/: waiting for /dev/disk/by-uuid-...(lots of letters and numbers here)<br />
/tmp: waiting for (null)<br />
/boot: waiting for /dev/disk/by-uuid-...(lots of letters and numbers here)<br />
/data: waiting for /dev/disk/by-uuid-...(lots of letters and numbers here)<br />
/windows: waiting for /dev/disk/by-uuid-...(lots of letters and numbers here)<br />
Press ESC to go into a recovery shell<br />
</code></p>
<p>It was because I hadn&#8217;t made a cup of tea!<br />
Seriously though, It&#8217;s not an error message, just a horribly worded message implying that ESC should be pressed, which it shouldn&#8217;t.  Just by doing nothing and waiting (e.g. by going and making a cup of tea), Ubuntu eventually starts up completely OK.<br />
Please Ubuntu, change this! My friend saw the message and now sees Ubuntu as less credible.</p>
<p>I&#8217;ll be posting more on Ubuntu 9.10, mostly whinges and fixes to problems, which is grossly unfair.  I&#8217;m sure there are loads of great improvements too&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jumpingmouse.co.uk/2009/11/17/ubuntu-910-mounts-cannot-yet-be-mounted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

