<?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>New Adventures in Technology &#187; Linux</title>
	<atom:link href="http://teknostatik.co.uk/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://teknostatik.co.uk</link>
	<description>Musings on music, computers and other things</description>
	<lastBuildDate>Sat, 24 Jul 2010 07:43:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>New ways of doing old things</title>
		<link>http://teknostatik.co.uk/2010/02/28/new-ways-of-doing-old-things/</link>
		<comments>http://teknostatik.co.uk/2010/02/28/new-ways-of-doing-old-things/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 16:27:59 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/?p=750</guid>
		<description><![CDATA[This weekend I decided to try and use different tools to perform my usual computer-based tasks. Yesterday, I tried to do everything in Mac OS X (Leopard), and also tested out Thunderbird 3. I reckon I could live with a &#8230; <a href="http://teknostatik.co.uk/2010/02/28/new-ways-of-doing-old-things/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This weekend I decided to try and use different tools to perform my usual computer-based tasks.</p>
<p>Yesterday, I tried to do everything in Mac OS X (Leopard), and also tested out <a href="http://www.mozillamessaging.com/en-US/thunderbird/">Thunderbird 3</a>. I reckon I could live with a Mac as my only computer, and the only thing that bugged me was the speed (my Mac is somewhat ancient now). I especially liked iCal, and how it integrates perfectly with the Google calendars that map out my whole life, and I love the way OS X renders fonts and colours. Thunderbird 3 was a nice surprise, and I love the way it integrates with Gmail. Maybe I&#8217;ll consider switching back to Thunderbird the next time Evolution does something to annoy me.</p>
<p>Today I&#8217;ve been using the <a href="https://launchpad.net/~chromium-daily/+archive/ppa">daily build of Chromium</a> on my netbook. It&#8217;s seriously faster than Firefox, and I&#8217;m finding that I can do pretty much everything I need to do without a plethora of extensions. This might be one to keep I think.</p>
<p>I&#8217;m also having monitor envy. Or possibly screen resolution envy. I think I may be nearly ready to consider spending my day looking at something larger than a laptop screen.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2010/02/28/new-ways-of-doing-old-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up a quick and easy virtual web server</title>
		<link>http://teknostatik.co.uk/2010/01/23/setting-up-a-quick-and-easy-virtual-web-server/</link>
		<comments>http://teknostatik.co.uk/2010/01/23/setting-up-a-quick-and-easy-virtual-web-server/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 09:08:40 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/?p=735</guid>
		<description><![CDATA[I did a fair bit of work on this about a year ago, and then never got round to writing it up. What I was trying to achieve was to have a minimal virtual server running in VirtualBox, which could &#8230; <a href="http://teknostatik.co.uk/2010/01/23/setting-up-a-quick-and-easy-virtual-web-server/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I did a fair bit of work on this about a year ago, and then never got round to writing it up. What I was trying to achieve was to have a minimal virtual server running in VirtualBox, which could been seen from the outside world and would appear to all extent and purposes to be a real physical machine.</p>
<p>Start off by creating a new VM. I went with a totally stripped down installation of Ubuntu (from the alternative CD), adding just <code>openssh-server</code> and <code>apache2</code> to the default install. I called it Ubuntu Minimal (the name will become important later).</p>
<p>Boot up the new VM, and then on the host machine enter the following commands (replacing the name of the VM with what you decided to call yours):</p>
<p><code>VBoxManage setextradata "Ubuntu Minimal" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/HostPort" 2222<br />
VBoxManage setextradata "Ubuntu Minimal" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/GuestPort" 22<br />
VBoxManage setextradata "Ubuntu Minimal" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/ssh/Protocol" TCP<br />
VBoxManage setextradata "Ubuntu Minimal" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/apache2/HostPort" 8008<br />
VBoxManage setextradata "Ubuntu Minimal" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/apache2/GuestPort" 80<br />
VBoxManage setextradata "Ubuntu Minimal" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/apache2/Protocol" TCP</code></p>
<p>Power down the VM, start it up again, and then you should be able to ssh into it on port 2222 and pull up apache&#8217;s &#8220;it works!&#8221; page by browsing to http://localhost:8008. At that point you can install web apps and do whatever else you want with the server.</p>
<p>It doesn&#8217;t take up a great deal of memory, so you could probably have a couple of these running on most computers without any obvious performance degradation.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2010/01/23/setting-up-a-quick-and-easy-virtual-web-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A brief life update</title>
		<link>http://teknostatik.co.uk/2009/11/01/a-brief-life-update/</link>
		<comments>http://teknostatik.co.uk/2009/11/01/a-brief-life-update/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 17:24:28 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Real life updates]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web Technology]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/2009/11/01/a-brief-life-update/</guid>
		<description><![CDATA[This week I&#8217;ve largely been: Listening to the new albums by The Flaming Lips, Atlas Sound, Charlotte Hatherley and Broadcast (all of which I&#8217;m really enjoying) Updating my main workstation to Ubuntu 9.10 Learning about Google Wave Trying to juggle &#8230; <a href="http://teknostatik.co.uk/2009/11/01/a-brief-life-update/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This week I&#8217;ve largely been:</p>
<ul>
<li>Listening to the new albums by The Flaming Lips, Atlas Sound, Charlotte Hatherley and Broadcast (all of which I&#8217;m really enjoying)</li>
<li>Updating my main workstation to <a href="http://www.ubuntu.com">Ubuntu 9.10</a></li>
<li>Learning about <a href="http://wave.google.com">Google Wave</a></li>
<li>Trying to juggle various work tasks (and not dropping anything hopefully).</li>
</ul>
<p>Oh, and I still hate this time of year. Even though we had no annoying begging children this year, there is still the firework-hating dog to deal with.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2009/11/01/a-brief-life-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A few words on Operating Systems</title>
		<link>http://teknostatik.co.uk/2009/10/09/a-few-words-on-operating-systems/</link>
		<comments>http://teknostatik.co.uk/2009/10/09/a-few-words-on-operating-systems/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 19:05:42 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/2009/10/09/a-few-words-on-operating-systems/</guid>
		<description><![CDATA[To me, Windows 7 doesn&#8217;t seem much of an improvement on Vista. What is does do is return to making me think that the look and feel was modelled on a child&#8217;s toy. With XP it was Fisher Price, with &#8230; <a href="http://teknostatik.co.uk/2009/10/09/a-few-words-on-operating-systems/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To me, Windows 7 doesn&#8217;t seem much of an improvement on Vista. What is does do is return to making me think that the look and feel was modelled on a child&#8217;s toy. With XP it was Fisher Price, with Vista it was some flashy Japanese toy that looked good but no-one played with. And with 7 it is Lego. Just look at the dock and tell me I&#8217;m not right.</p>
<p>What with Snow Leopard being underwhelming, and Windows 7 not exactly making me want to switch back, I think Ubuntu 9.10 has me totally sold in the Autumn 2009 OS wars.</p>
<p>But there again, I&#8217;m ever so slightly biased.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2009/10/09/a-few-words-on-operating-systems/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>The Art of Community</title>
		<link>http://teknostatik.co.uk/2009/09/23/the-art-of-community-2/</link>
		<comments>http://teknostatik.co.uk/2009/09/23/the-art-of-community-2/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 19:46:58 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/2009/09/23/the-art-of-community-2/</guid>
		<description><![CDATA[I&#8217;ve written about this before, but after reading the whole book this weekend I thought it was worth another mention. It&#8217;s a book about communities, written by Jono Bacon (Ubuntu&#8217;s Community Manager). What I like about it is that it &#8230; <a href="http://teknostatik.co.uk/2009/09/23/the-art-of-community-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve written about this <a href="http://teknostatik.co.uk/2009/08/19/the-art-of-community/">before</a>, but after reading the whole book this weekend I thought it was worth another mention.</p>
<p>It&#8217;s a book about communities, written by Jono Bacon (Ubuntu&#8217;s Community Manager). What I like about it is that it gives a great insight on what it is like to be part of a community where creative people work together to make something great, but where the reward is not financial. I think anyone who is involved in any sort of voluntary activity would get something out of it, and I&#8217;m certainly looking at my own community involvement in a new light as a result of reading it. </p>
<p>The Art of Community is available to buy (or to download for free) from <a href="http://www.artofcommunityonline.org/">http://www.artofcommunityonline.org/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2009/09/23/the-art-of-community-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sensible window sizes on Dell&#8217;s version of Ubuntu</title>
		<link>http://teknostatik.co.uk/2009/08/23/sensible-window-sizes-on-dells-version-of-ubuntu/</link>
		<comments>http://teknostatik.co.uk/2009/08/23/sensible-window-sizes-on-dells-version-of-ubuntu/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 17:14:05 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[dell mini]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/?p=667</guid>
		<description><![CDATA[I love my Dell Mini, but there are a couple of &#8220;features&#8221; added by Dell that drive me mad. One of these is called Maximus. It&#8217;s an application that tells any window that opens on the desktop to open full-screen. &#8230; <a href="http://teknostatik.co.uk/2009/08/23/sensible-window-sizes-on-dells-version-of-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I love my Dell Mini, but there are a couple of &#8220;features&#8221; added by Dell that drive me mad. One of these is called Maximus. It&#8217;s an application that tells any window that opens on the desktop to open full-screen. It&#8217;s particularly annoying with applications I&#8217;ve added myself (like Empathy), as the default applications seem preconfigured to ignore it. I&#8217;ve had a poke around in gconf-editor (install it with <code>sudo apt-get install gconf-editor</code> if it doesn&#8217;t exist already), and the key that needs editing is called <code>/apps/maximus/exclude_class</code> (see below for details):</p>
<p><img class="alignnone size-full wp-image-677" title="Screenshot" src="http://teknostatik.co.uk/wp-content/uploads/2009/08/Screenshot.png" alt="Screenshot" width="446" height="123" /></p>
<p>It&#8217;s basically a list of applications that open with the same window size they closed with rather than open in full-screen.</p>
<p>Double click on the key, and you should get the following dialogue:</p>
<p><img class="alignnone size-full wp-image-668" title="Screenshot-Edit Key" src="http://teknostatik.co.uk/wp-content/uploads/2009/08/Screenshot-Edit-Key.png" alt="Screenshot-Edit Key" width="331" height="392" /></p>
<p>Click on the plus button, and add whatever applications you need as shown below:</p>
<p><img class="alignnone size-full wp-image-669" title="Screenshot-Add New List Entry" src="http://teknostatik.co.uk/wp-content/uploads/2009/08/Screenshot-Add-New-List-Entry.png" alt="Screenshot-Add New List Entry" width="285" height="115" /></p>
<p>Then click on OK. Next time you open the applications in question they should honour your desired window size.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2009/08/23/sensible-window-sizes-on-dells-version-of-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exploring Suse Studio</title>
		<link>http://teknostatik.co.uk/2009/08/15/exploring-suse-studio/</link>
		<comments>http://teknostatik.co.uk/2009/08/15/exploring-suse-studio/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 08:54:44 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[openSUSE]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/?p=663</guid>
		<description><![CDATA[I&#8217;ve had an account on http://susestudio.com/ for a few weeks now, but have only really had a couple of chances to play with it. The basic idea behind the site is that anyone should be able to create a customised &#8230; <a href="http://teknostatik.co.uk/2009/08/15/exploring-suse-studio/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had an account on <a href="http://susestudio.com/">http://susestudio.com/</a> for a few weeks now, but have only really had a couple of chances to play with it. The basic idea behind the site is that anyone should be able to create a customised Linux distribution that perfectly suits their needs (providing those needs involve openSUSE 11.1 or SUSE Linux Enterprise 10 or 11). Normally I do this sort of work on Ubuntu, using <a href="http://uck.sourceforge.net/">Ubuntu Customisation Kit</a>, as detailed in a previous post. This suits me, because I use Ubuntu in a production environment and it makes things easy. But I was interested in how this new software would work for someone who had never used openSUSE for more than a few minutes.</p>
<p>Ubuntu Customisation Kit does everything on the host machine, and only uses the Internet to pull new/updated packages in. This is light on bandwidth for tweaks, but heavier if you&#8217;re making major changes. Suse Studio does things the opposite way round, in that all the building and updating is done on the web, and you then download the finished .iso image. It&#8217;s slightly heavier on bandwidth overall, but did allow me to do a lot of the build work from my netbook in the foyer of a hotel in London, as all you need is a web browser and a net connection.</p>
<p>I ended up building three different versions of openSUSE, to suit three specific needs I occasionally have:</p>
<ol>
<li>Gnome, with a web browser (firefox), a terminal (gnome-terminal), dropbox preinstalled, and a couple of work-specific scripts for mounting drives and backing up data. This is a configuration we use at work for data recovery (currently based on Ubuntu 8.04). This was painless to set up, came in at 348Mb, and worked well.</li>
<li>A showcase for KDE4. I&#8217;m not a big fan of KDE, but it&#8217;s always useful to have a VM kicking around to show people what it is like. This was on the same level of detail as the Gnome one, and came in at 350mb. I think I might actually be able to use this to get things done, as it takes away a lot of the un-instinctive KDE apps whilst leaving the very pretty and functional base.</li>
<li>An image containing the applications I use every day, which would act as a basis for reinstalling my home or work laptop (both currently running Ubuntu 9.04). This contains Firefox, Thunderbird, OpenOffice.org, Empathy, Rhythmbox, Gedit and gnome-terminal, and was still only 484mb (300Mb less than the version of Ubuntu I install from usually).</li>
</ol>
<p>So yes, all three experiments worked, and while I&#8217;ve not tried to use them to get things done yet, I have successfully installed all three as virtual machines and they seem to work as expected.</p>
<p>I think most people could use Suse Studio, and it acts as a good way to learn the basics of how a distribution is put together. I very much expect to see the code base from this project move in interesting directions in the next few months, and I&#8217;d be surprised if we don&#8217;t see similar projects getting off the ground soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2009/08/15/exploring-suse-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Piping fortune into twidge</title>
		<link>http://teknostatik.co.uk/2009/08/13/piping-fortune-into-twidge/</link>
		<comments>http://teknostatik.co.uk/2009/08/13/piping-fortune-into-twidge/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 11:23:27 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[twidge]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/?p=659</guid>
		<description><![CDATA[fortune &#124; twidge update actually works as expected. Add cron to the mix, and you can automate random utterances to appear on twitter when you are away from your computer or otherwise engaged. More an amusement than anything useful, but &#8230; <a href="http://teknostatik.co.uk/2009/08/13/piping-fortune-into-twidge/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><code>fortune | twidge update</code> actually works as expected. Add cron to the mix, and you can automate random utterances to appear on twitter when you are away from your computer or otherwise engaged.</p>
<p>More an amusement than anything useful, but it killed 5 minutes of my lunchtime.</p>
<p>(I wrote more about twidge <a href="http://teknostatik.co.uk/?p=653">here</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2009/08/13/piping-fortune-into-twidge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Suse Studio</title>
		<link>http://teknostatik.co.uk/2009/07/30/suse-studio/</link>
		<comments>http://teknostatik.co.uk/2009/07/30/suse-studio/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 16:38:50 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[openSUSE]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/?p=651</guid>
		<description><![CDATA[I&#8217;ve been trying out Suse Studio over the last couple of days. It&#8217;s a build service for livecds and software appliances, and it really is so easy to use that I think most non-technical users could get to grips with &#8230; <a href="http://teknostatik.co.uk/2009/07/30/suse-studio/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying out <a href="http://susestudio.com/">Suse Studio</a> over the last couple of days. It&#8217;s a build service for livecds and software appliances, and it really is so easy to use that I think most non-technical users could get to grips with it. It&#8217;s invite only at present, but I got an invite just by asking (and I&#8217;m not exactly known for my love of the distro).</p>
<p>I&#8217;ve built a 300mb livecd with a very minimalistic Gnome install plus Dropbox, and it seems to do everything I want it to do. And it only took about 20 minutes in total to do.</p>
<p>I think this is something I will play with some more when I&#8217;m on holiday.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2009/07/30/suse-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading Ubuntu 8.04 to OpenOffice.org 3.1</title>
		<link>http://teknostatik.co.uk/2009/07/27/upgrading-ubuntu-8-04-to-openoffice-org-3-1/</link>
		<comments>http://teknostatik.co.uk/2009/07/27/upgrading-ubuntu-8-04-to-openoffice-org-3-1/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 17:08:01 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[dell mini]]></category>
		<category><![CDATA[OpenOffice.org]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/?p=650</guid>
		<description><![CDATA[This guide has all the required info, and worked like a charm on my netbook running 8.04 and my laptop running 9.04 (although it was simpler than the guide suggests in both cases). I&#8217;ll hopefully write a more comprehensive guide &#8230; <a href="http://teknostatik.co.uk/2009/07/27/upgrading-ubuntu-8-04-to-openoffice-org-3-1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://news.softpedia.com/news/How-to-Install-OpenOffice-org-3-1-on-Ubuntu-9-04-111105.shtml">This guide</a> has all the required info, and worked like a charm on my netbook running 8.04 and my laptop running 9.04 (although it was simpler than the guide suggests in both cases). I&#8217;ll hopefully write a more comprehensive guide at some point soon, because I think 3.1 is something that people should consider upgrading to.</p>
<p>I&#8217;m really not noticing the fact that I&#8217;m running 8.04 on my Dell Mini, largely because I&#8217;ve upgraded most of what I use regularly to later versions.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2009/07/27/upgrading-ubuntu-8-04-to-openoffice-org-3-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating and installing software on Foresight Linux</title>
		<link>http://teknostatik.co.uk/2009/05/16/updating-and-installing-software-on-foresight-linux/</link>
		<comments>http://teknostatik.co.uk/2009/05/16/updating-and-installing-software-on-foresight-linux/#comments</comments>
		<pubDate>Sat, 16 May 2009 16:01:41 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Foresight]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/?p=612</guid>
		<description><![CDATA[I&#8217;ve just installed the latest version of Foresight on my spare laptop, so I thought I&#8217;d investigate the package manager, conary, which is something I&#8217;ve never used before, but which looks like it could be as useful as apt and &#8230; <a href="http://teknostatik.co.uk/2009/05/16/updating-and-installing-software-on-foresight-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just installed the latest version of <a href="http://www.foresightlinux.org/">Foresight</a> on my spare laptop, so I thought I&#8217;d investigate the package manager, <code>conary</code>, which is something I&#8217;ve never used before, but which looks like it could be as useful as <code>apt</code> and <code>urpmi</code>.</p>
<p>It&#8217;s really quite simple. To update to the latest version of all installed packages, type:</p>
<p><code>$ sudo conary updateall</code></p>
<p>And to install a specific package, type:</p>
<p><code>$ sudo conary update packagename</code></p>
<p>I&#8217;ll write more when I&#8217;ve explored further.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2009/05/16/updating-and-installing-software-on-foresight-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review &#8211; Mandriva 2009.1 (KDE edition)</title>
		<link>http://teknostatik.co.uk/2009/05/11/review-mandriva-20091-kde-edition/</link>
		<comments>http://teknostatik.co.uk/2009/05/11/review-mandriva-20091-kde-edition/#comments</comments>
		<pubDate>Mon, 11 May 2009 10:57:50 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mandriva]]></category>
		<category><![CDATA[kde4]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/?p=611</guid>
		<description><![CDATA[I&#8217;ve finally got round to installing the KDE version of Mandriva 2009.1 in a VM on my laptop. I&#8217;d been holding off, because I don&#8217;t really use KDE, and I wasn&#8217;t too impressed with how the other major distributions had &#8230; <a href="http://teknostatik.co.uk/2009/05/11/review-mandriva-20091-kde-edition/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally got round to installing the KDE version of Mandriva 2009.1 in a VM on my laptop. I&#8217;d been holding off, because I don&#8217;t really use KDE, and I wasn&#8217;t too impressed with how the other major distributions had implemented KDE4 (which is basically a total revision of every aspect). Happily, I can easily say that this is the most usable implementation of KDE4 I&#8217;ve ever come across, and it does a very good job of not getting in my way whilst still enabling me to be productive.</p>
<p>The desktop has seen some major customisations, as is usual with Mandriva (see <a href="http://www2.mandriva.com/">http://www2.mandriva.com/</a> for a screen shot), and it actually looks and feels like a more polished version of KDE 3.5 (the last version of KDE I used for more than a couple of hours). There are sensible defaults, and I think the only application I would want to add is Thunderbird, because I still really don&#8217;t like Kmail.</p>
<p>But could I use it full time? Almost certainly yes, and if I wasn&#8217;t very tied to Gnome and the Gnome libraries and applications then I&#8217;d consider making the switch. As it is, I&#8217;ll happily keep it as a VM, which gives me the option to have a play with KDE4 every now and again without having to make any major life changes.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2009/05/11/review-mandriva-20091-kde-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting Quicktime movies using Linux</title>
		<link>http://teknostatik.co.uk/2009/05/04/converting-quicktime-movies-using-linux/</link>
		<comments>http://teknostatik.co.uk/2009/05/04/converting-quicktime-movies-using-linux/#comments</comments>
		<pubDate>Mon, 04 May 2009 13:00:00 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/?p=608</guid>
		<description><![CDATA[Another &#8220;so I don&#8217;t forget it&#8221; post. Converting Quicktime (.mov) files to Ogg Theora (.ogv) is now rather simple (although takes a while). Firstly, install ffmpeg2theora (it should be available for most distros). Then just launch it from the command &#8230; <a href="http://teknostatik.co.uk/2009/05/04/converting-quicktime-movies-using-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Another &#8220;so I don&#8217;t forget it&#8221; post.</p>
<p>Converting Quicktime (.mov) files to Ogg Theora (.ogv) is now rather simple (although takes a while).</p>
<p>Firstly, install <code>ffmpeg2theora</code> (it should be available for most distros).</p>
<p>Then just launch it from the command line. The syntax is:</p>
<p><code>ffmpeg2theora name_of_file.mov</code></p>
<p>Or to do a whole directory:</p>
<p><code>ffmpeg2theora *.mov</code></p>
<p>Easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2009/05/04/converting-quicktime-movies-using-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing hostname in Mandriva</title>
		<link>http://teknostatik.co.uk/2009/04/26/changing-hostname-in-mandriva/</link>
		<comments>http://teknostatik.co.uk/2009/04/26/changing-hostname-in-mandriva/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 15:03:57 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mandriva]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/?p=603</guid>
		<description><![CDATA[I&#8217;ve been doing a bit of work on Mandriva recently, and I always forget that there are two places you need to change the host name before it &#8220;takes&#8221;. in /etc/sysconfig/network add the following line: HOSTNAME=hostname Where hostname is whatever &#8230; <a href="http://teknostatik.co.uk/2009/04/26/changing-hostname-in-mandriva/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been doing a bit of work on Mandriva recently, and I always forget that there are two places you need to change the host name before it &#8220;takes&#8221;.</p>
<p>in <code>/etc/sysconfig/network</code> add the following line:</p>
<p><code>HOSTNAME=hostname</code></p>
<p>Where <code>hostname</code> is whatever you want the computer to be called.</p>
<p>Then in <code>/etc/hosts</code> just add the hostname after <code>localhost</code> on the first (and probably only) line in the file. It should look something like:</p>
<p><code>127.0.0.1       hostname localhost</code></p>
<p>Where again <code>hostname</code> is the name of the computer.</p>
<p>Do this, reboot, and all should be well.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2009/04/26/changing-hostname-in-mandriva/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synching with folders outside of /dropbox</title>
		<link>http://teknostatik.co.uk/2009/03/08/synching-with-folders-outside-of-dropbox/</link>
		<comments>http://teknostatik.co.uk/2009/03/08/synching-with-folders-outside-of-dropbox/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 15:54:38 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web Technology]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/?p=576</guid>
		<description><![CDATA[This could probably be summed up in a few words (the words being &#8220;use symlinks&#8221;). Basically, what I wanted to do was to sync several folders outside my dropbox folder (for various reasons). The solution was to create a shortcut &#8230; <a href="http://teknostatik.co.uk/2009/03/08/synching-with-folders-outside-of-dropbox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This could probably be summed up in a few words (the words being &#8220;use symlinks&#8221;).</p>
<p>Basically, what I wanted to do was to sync several folders outside my dropbox folder (for various reasons). The solution was to create a shortcut in the folder I wanted to sync, and then moving the link to my dropbox folder.  This can be done of the command line by typing something like:</p>
<p><code> ln -s /home/folder/to/sync /home/andy/dropbox/synched_folder</code></p>
<p>This could be used in all sorts of ways, some of which I may blog about over the next couple of weeks.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2009/03/08/synching-with-folders-outside-of-dropbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using wcid instead of NetworkManager on Ubuntu 8.10</title>
		<link>http://teknostatik.co.uk/2009/01/26/using-wcid-instead-of-networkmanager-on-ubuntu-810/</link>
		<comments>http://teknostatik.co.uk/2009/01/26/using-wcid-instead-of-networkmanager-on-ubuntu-810/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 19:57:12 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[EeePC]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[wicd]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/?p=539</guid>
		<description><![CDATA[This post came about due to an issue with NetworkManager connecting to our wpa-enterprise authenticated network at work, but demonstrates that there is more than one choice when it comes to almost everything on Linux. It&#8217;s not too fiddly, and &#8230; <a href="http://teknostatik.co.uk/2009/01/26/using-wcid-instead-of-networkmanager-on-ubuntu-810/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This post came about due to an issue with NetworkManager connecting to our wpa-enterprise authenticated network at work, but demonstrates that there is more than one choice when it comes to almost everything on Linux. It&#8217;s not too fiddly, and I&#8217;ll hopefully have a rebuild of Ubuntu incorporating these changes within 24 hours.</p>
<p>First off, you need to add a line to your sources list, by issuing the following command:</p>
<p><code>sudo nano /etc/apt/sources.list</code></p>
<p>Add the following line at the bottom of the file:</p>
<p><code>deb http://apt.wicd.net intrepid extras</code></p>
<p>Then press ctrl+o to save and then ctrl+x to quit and then issue the following command:</p>
<p><code>sudo apt-get update &amp;&amp; sudo apt-get install wcid</code></p>
<p>This will download <a href="http://wicd.sourceforge.net/">wcid </a>(a network management tool that doesn&#8217;t suffer issues connecting to enterprise level networks), uninstall NetworkManager and then install wcid. At some point in this process you will lose network connectivity, but this is fine.</p>
<p>To make wcid start at boot, go to System &gt; Preferences &gt; Sessions and add a new item to startup. The path for the application is:</p>
<p><code>/opt/wicd/tray.py</code></p>
<p>Reboot, and you should find that wcid adds an applet similar to nm-applet which will allow you to view available networks, and connect and configure them. I&#8217;ve tested this with my EeePC 701 and an Acer Aspire One (both running Ubuntu 8.10), and it is known to work (with a bit of tweaking) on Fedora 10 as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2009/01/26/using-wcid-instead-of-networkmanager-on-ubuntu-810/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make a totally up to date bootable USB version of Ubuntu</title>
		<link>http://teknostatik.co.uk/2009/01/09/how-to-make-a-totally-up-to-date-bootable-usb-version-of-ubuntu/</link>
		<comments>http://teknostatik.co.uk/2009/01/09/how-to-make-a-totally-up-to-date-bootable-usb-version-of-ubuntu/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 15:03:18 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[uck]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/?p=512</guid>
		<description><![CDATA[I&#8217;ve written these instructions (371.6 KB PDF) for work, but think they might be useful in all sorts of other situations. Basically it boils down to: Use Ubuntu Customization Kit to update all the packages in Ubuntu and add/remove packages &#8230; <a href="http://teknostatik.co.uk/2009/01/09/how-to-make-a-totally-up-to-date-bootable-usb-version-of-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve written <a href="http://teknostatik.co.uk/uck_instructions.pdf">these instructions</a> (371.6 KB PDF) for work, but think they might be useful in all sorts of other situations.</p>
<p>Basically it boils down to:</p>
<ol>
<li>Use <a href="http://uck.sourceforge.net/">Ubuntu Customization Kit</a> to update all the packages in Ubuntu and add/remove packages as required.</li>
<li>Use the USB creating tool in Ubuntu 8.10 to transfer your newly created iso to USB.</li>
</ol>
<p>On my USB I&#8217;ve also added several <a href="http://portableapps.com/">portable apps</a>, so as to ensure I&#8217;ve got everything I need for remote support of misbehaving Windows PCs.</p>
<p>Of course, you could just make the USB version first and then customise it using the free space on the USB, but this method allows you to remove software before transfering it to USB, which makes it useful for smaller devices (and for the sort of customised image you might want to install to a netbook).</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2009/01/09/how-to-make-a-totally-up-to-date-bootable-usb-version-of-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>EeePC</title>
		<link>http://teknostatik.co.uk/2008/08/08/eeepc/</link>
		<comments>http://teknostatik.co.uk/2008/08/08/eeepc/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 08:48:04 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[EeePC]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mandriva]]></category>

		<guid isPermaLink="false">http://teknostatik.co.uk/?p=33</guid>
		<description><![CDATA[I&#8217;ve finally got round to getting an EeePC, and so far I&#8217;m really impressed. I&#8217;ve installed the latest version of Mandriva on it, and have a very functional Gnome desktop, which does everything I need it to do. Installing Mandriva &#8230; <a href="http://teknostatik.co.uk/2008/08/08/eeepc/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally got round to getting an EeePC, and so far I&#8217;m really impressed. I&#8217;ve installed the latest version of Mandriva on it, and have a very functional Gnome desktop, which does everything I need it to do.</p>
<p><a href="http://teknostatik.co.uk/wp-content/uploads/2008/08/eeepc1.png"><img class="alignnone size-full wp-image-133" title="eeepc1" src="http://teknostatik.co.uk/wp-content/uploads/2008/08/eeepc1.png" alt="" width="500" height="300" /></a></p>
<p>Installing Mandriva was a breeze &#8211; it was just a case of changing the BIOS to boot from my external CD drive, and also to enable wireless at boot so that the right modules were loaded. I&#8217;ve uninstalled a load of stuff I don&#8217;t need, added a couple of things, and at present I&#8217;ve still got 1.2gb free on the 4gb internal flash card.</p>
<p>I plan on getting another 4gb card and installing the original EeePC OS onto it for testing purposes.</p>
]]></content:encoded>
			<wfw:commentRss>http://teknostatik.co.uk/2008/08/08/eeepc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
