<?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>SJ Cuthbertson &#187; linux</title>
	<atom:link href="http://www.sjcuthbertson.me.uk/wp/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sjcuthbertson.me.uk</link>
	<description>A space for the mind to wander at will</description>
	<lastBuildDate>Sun, 04 Jul 2010 12:49:56 +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>Interesting things with FUSE</title>
		<link>http://www.sjcuthbertson.me.uk/wp/2008/07/interesting-things-with-fuse/</link>
		<comments>http://www.sjcuthbertson.me.uk/wp/2008/07/interesting-things-with-fuse/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 21:00:53 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[notes]]></category>
		<category><![CDATA[FUSE]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.sjcuthbertson.me.uk/?p=132</guid>
		<description><![CDATA[This is mainly a note to myself, because I&#8217;ve currently got no linux box of my own to play with &#8211; but a few readers may be interested! I came across a couple of quite cool implementations of FUSE the other day. SSHFS mounts SSH-accessible remote filesystems, locally on your PC with transparent read-write access. [...]]]></description>
			<content:encoded><![CDATA[<p>This is mainly a note to myself, because I&#8217;ve currently got no linux box of my own to play with &#8211; but a few readers may be interested!  I came across a couple of quite cool implementations of <a href="http://fuse.sourceforge.net/">FUSE</a> the other day.</p>
<ul>
<li><a href="http://fuse.sourceforge.net/sshfs.html">SSHFS</a> mounts SSH-accessible remote filesystems, locally on your PC with transparent read-write access.  Since I have shell accounts with the University Linux system (which I use for backup), and with the <a href="http://www.srcf.ucam.org">SRCF</a> (where this website is hosted), this could be rather useful.</li>
<li><a href="http://wikipediafs.sourceforge.net/">WikipediaFS</a> is similarly just what it implies &#8211; mount Wikipedia locally with read-write access to the pages (you need to know the MediaWiki markup tags).  However, it can be used with <em>any</em> MediaWiki installation&#8230; so if I was to set up a personal wiki, this might make it rather more useful for notetaking, etc.</li>
</ul>
<p>When I have a functional linux system of my own again &#8211; probably a dual-boot laptop &#8211; I&#8217;ll have a play with these and perhaps mention how they work here!  Thanks to <a href="http://fosswire.com/2008/07/20/four-useful-fuse-implementations/">FOSSwire</a> for the heads-up on these&#8230;</p>
<p>Oh, and a bit of an update on life in general will follow at some point; suffice to say that I&#8217;ve been busy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sjcuthbertson.me.uk/wp/2008/07/interesting-things-with-fuse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handy bash script</title>
		<link>http://www.sjcuthbertson.me.uk/wp/2008/05/handy-bash-script/</link>
		<comments>http://www.sjcuthbertson.me.uk/wp/2008/05/handy-bash-script/#comments</comments>
		<pubDate>Sun, 18 May 2008 12:55:35 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[happenings]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://www.sjcuthbertson.me.uk/?p=125</guid>
		<description><![CDATA[You&#8217;ve installed something from package repositories, and, on invoking, it tells you to actually run a certain script first. The script fails because you&#8217;re behind a proxy server, but you don&#8217;t know where Aptitude put the script in order to edit it. You know it&#8217;s in your $PATH, but that&#8217;s a lot of directories&#8230; Solution [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;ve installed something from package repositories, and, on invoking, it tells you to actually run a certain script first.  The script fails because you&#8217;re behind a proxy server, but you don&#8217;t know where Aptitude put the script in order to edit it.  You know it&#8217;s in your $PATH, but that&#8217;s a lot of directories&#8230;</p>
<p>Solution (assuming you use bash):<br />
<code><br />
for inMyPath in `echo $PATH | sed -e 's/:/\\t/g'`;<br />
do<br />
   find $inMyPath -name MISSING_FILE;<br />
done<br />
</code></p>
<p>MISSING_FILE is the name of the script (or whatever) that you&#8217;re after.  This is fairly trivial, I admit, but it took me a while to work out how to do it right (mainly sedding PATH correctly).  I&#8217;m about to put it into a script of its own for future use. <img src='http://www.sjcuthbertson.me.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sjcuthbertson.me.uk/wp/2008/05/handy-bash-script/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Fluxbuntu (cntd)</title>
		<link>http://www.sjcuthbertson.me.uk/wp/2008/02/fluxbuntu-cntd/</link>
		<comments>http://www.sjcuthbertson.me.uk/wp/2008/02/fluxbuntu-cntd/#comments</comments>
		<pubDate>Sun, 24 Feb 2008 17:27:23 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[notes]]></category>
		<category><![CDATA[fluxbox]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.sjcuthbertson.me.uk/wordpress/2008/02/24/fluxbuntu-cntd/</guid>
		<description><![CDATA[So, turns out that the downloadable ISO from fluxbuntu.org is broken (MD5 matches, so the problem&#8217;s on their end), or else I have three broken CD-burning applications, or two broken CD-burning drives. Occam&#8217;s-razorize THAT one. It also turns out that my laptop&#8217;s optical drive (or possibly BIOS) is a little iffy &#8211; I can&#8217;t boot [...]]]></description>
			<content:encoded><![CDATA[<p>So, turns out that the downloadable ISO from fluxbuntu.org is broken (MD5 matches, so the problem&#8217;s on their end), or else I have three broken CD-burning applications, or two broken CD-burning drives.  Occam&#8217;s-razorize THAT one.  It also turns out that my laptop&#8217;s optical drive (or possibly BIOS) is a little iffy &#8211; I can&#8217;t boot off any LiveCDs, even ones that work in my PC.</p>
<p>I have worked out a potential means of fixing the laptop, though.  What&#8217;s broken, I believe, is that I don&#8217;t have either of Gnome or K desktop managers installed, only XDM, which I think Fluxbox doesn&#8217;t really support.  So I have a window manager with nothing behind the scenes to take control when I actually *click* on a menu item.  If I can reinstall GDM or KDM, I might be OK, but without an optical drive or means of internet connectivity (also broken), I can only see one (comical) solution.  Download the DPKG on another machine, and transfer via USB stick or floppy disk (!), then install locally.  Great.  I&#8217;m not even going to bother, I&#8217;ll just spend hours faffing when I could just be doing all my research analysis and report-writing elsewhere.</p>
<p>Result: I&#8217;ve installed MiKTeX on my XP desktop, and intend to ssh to pip.srcf for <a href="http://www.sjcuthbertson.me.uk/wordpress/2007/12/13/more-late-night-linux/">certain necessary operations</a>.  And now I&#8217;m going to get on and try to actually view computers as means again, rather than ends&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sjcuthbertson.me.uk/wp/2008/02/fluxbuntu-cntd/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fluxbuntu</title>
		<link>http://www.sjcuthbertson.me.uk/wp/2008/02/fluxbuntu/</link>
		<comments>http://www.sjcuthbertson.me.uk/wp/2008/02/fluxbuntu/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 16:31:35 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[notes]]></category>
		<category><![CDATA[fluxbox]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pda]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.sjcuthbertson.me.uk/wordpress/2008/02/22/fluxbuntu/</guid>
		<description><![CDATA[I&#8217;ve just noticed that Fluxbuntu appears to be at a reasonably stable stage now. Methinks it&#8217;s time for a reinstall on my laptop&#8230; (FYI, I&#8217;ve been running a heavily bastardised *buntu-based linux installation on my oldish Dell C640 for some time. I&#8217;ve messed around with the packaging way too much to call it Ubuntu or [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just noticed that <a href="http://www.fluxbuntu.org">Fluxbuntu</a> appears to be at a reasonably stable stage now.  Methinks it&#8217;s time for a reinstall on my laptop&#8230;</p>
<p>(FYI, I&#8217;ve been running a heavily bastardised *buntu-based linux installation on my oldish Dell C640 for some time.  I&#8217;ve messed around with the packaging way too much to call it Ubuntu or Kubuntu &#8211; indeed, at various times I&#8217;ve tried not just the GNOME and KDE packages, but Xfce as well (Xubuntu), and then settled on Fluxbox with GDM underneath.  This was before the concept of Fluxbuntu existed.  After spending a lot of time yesterday customising the Fluxbox interface, I succeeded (somehow) in removing all display managers.  I then put XDM on, and now Fluxbox comes up, but without functional menus&#8230; so I can&#8217;t even launch a virtual terminal.  Ah well&#8230;)</p>
<p>My longer term aim is to actually build a linux install from the ground up &#8211; I want Fluxbox, but I probably don&#8217;t want a lot of what comes with Fluxbuntu.  This might signal my first change from *buntu for some years&#8230;</p>
<p>Oh yeah, and to conclude my previous post, Airset is <strong>vastly</strong> overengineered for my needs, but does sync well to Palm devices, so I&#8217;m using that.  I plan to set up some complicated iCal sharing at some point between Airset, facebook, Google Calendar/Mail, and other webapps, which could be quite cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sjcuthbertson.me.uk/wp/2008/02/fluxbuntu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>More late-night Linux</title>
		<link>http://www.sjcuthbertson.me.uk/wp/2007/12/more-late-night-linux/</link>
		<comments>http://www.sjcuthbertson.me.uk/wp/2007/12/more-late-night-linux/#comments</comments>
		<pubDate>Thu, 13 Dec 2007 01:01:18 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[happenings]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[partII]]></category>
		<category><![CDATA[psychology]]></category>
		<category><![CDATA[regexps]]></category>

		<guid isPermaLink="false">http://www.sjcuthbertson.me.uk/wordpress/2007/12/13/more-late-night-linux/</guid>
		<description><![CDATA[grep -B 3 average stuart.out &#124; grep -v Turnpoint &#124; sed -e 's/cosine/0/g;s/random/1/g;/-/d; s/[[:alpha:][:space:]:]\+/,/g;s/^,8//g; s/,\(([[:digit:]\.]\+)\)//g;s/^,//g' &#62; clean.csv Yup, I feel that&#8217;s quite an impressively long sed argument. It is probably possible to write something more succinct that will have the same effect, but it&#8217;d only be even more obfuscated stuart.out is the data collected from [...]]]></description>
			<content:encoded><![CDATA[<p><code>grep -B 3 average stuart.out | grep -v Turnpoint | sed -e 's/cosine/0/g;s/random/1/g;/-/d; s/[[:alpha:][:space:]:]\+/,/g;s/^,8//g; s/,\(([[:digit:]\.]\+)\)//g;s/^,//g' &gt; clean.csv</code></p>
<p>Yup, I feel that&#8217;s quite an impressively long sed argument.  It is probably possible to write something more succinct that will have the same effect, but it&#8217;d only be even more obfuscated <img src='http://www.sjcuthbertson.me.uk/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   stuart.out is the data collected from me running myself as a subject for my Part II Psychology project: it&#8217;s generated by a C program running on DOS 6.2 <img src='http://www.sjcuthbertson.me.uk/wp/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> .  I only need three numbers and a word per condition tested &#8211; but the program spews out huge amounts of supplementary text, and isn&#8217;t totally regular about where newlines get inserted (I had to forced-close the program a number of times).  The greps eliminate incomplete session records, and wipe a handful of unnecessary lines from each blockl; the sed statement gets rid of words in between my precious numbers, and makes the textfile look like a csv.</p>
<p>I&#8217;m still working on the sed part of the pipe&#8230; it needs a final clause to strip certain, but not all, newlines. I need to match every first and second newline out of three, but not the third, in <a href="http://sjcuthbertson.me.uk/stuff/clean.csv">this file</a> (effectively concatenating three lines together onto one line, and repeating for the next three lines).  If anybody can lend any hints, please do &#8211; not only is my sed-fu weak, but my google-fu seems to be on the blink as well.</p>
<p>Why am I up late doing this? The gutsy upgrade stalled when my net connection broke inexplicably a few hours ago &#8211; and I only noticed recently.  Only another hour of downloads to go, then the real fun will begin <img src='http://www.sjcuthbertson.me.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sjcuthbertson.me.uk/wp/2007/12/more-late-night-linux/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>I&#039;m finally being Gutsy&#8230;</title>
		<link>http://www.sjcuthbertson.me.uk/wp/2007/12/im-finally-being-gutsy/</link>
		<comments>http://www.sjcuthbertson.me.uk/wp/2007/12/im-finally-being-gutsy/#comments</comments>
		<pubDate>Wed, 12 Dec 2007 16:51:17 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[happenings]]></category>
		<category><![CDATA[aptitude]]></category>
		<category><![CDATA[gutsy]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux-foo]]></category>
		<category><![CDATA[sed]]></category>

		<guid isPermaLink="false">http://www.sjcuthbertson.me.uk/wordpress/2007/12/12/im-finally-being-gutsy/</guid>
		<description><![CDATA[sudo sed -e 's/\sfeisty/ gutsy/g' -i /etc/apt/sources.list sudo aptitude update sudo aptitude dist-upgrade Notably, the first time I&#8217;ve actually dared use sed for anything remotely system-critical &#8211; and I did have a little help from teh internets. Practicing with sed and grep (essentially, practicing arbitrary regexp usage) is my early New Year&#8217;s Resolution on the [...]]]></description>
			<content:encoded><![CDATA[<p><code><br />
sudo sed -e 's/\sfeisty/ gutsy/g' -i /etc/apt/sources.list<br />
sudo aptitude update<br />
sudo aptitude dist-upgrade<br />
</code></p>
<p>Notably, the first time I&#8217;ve actually dared use sed for anything remotely system-critical &#8211; and I did have a little help from teh internets.  Practicing with sed and grep (essentially, practicing arbitrary regexp usage) is my early New Year&#8217;s Resolution on the Linux side of life &#8211; I&#8217;m at a stage where if I want to get &#8220;better&#8221; at Linux, this is the one thing that&#8217;s really going to make a big difference to my commandline-foo.</p>
<p>Anyways, aptitude is jumping around between around 5 and 10 hours of upgrading to be done&#8230; w00t.  Shall have to see how many more times I need to invoke aptitude to get a functional system again!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sjcuthbertson.me.uk/wp/2007/12/im-finally-being-gutsy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Yay for PINE</title>
		<link>http://www.sjcuthbertson.me.uk/wp/2007/12/yay-for-pine/</link>
		<comments>http://www.sjcuthbertson.me.uk/wp/2007/12/yay-for-pine/#comments</comments>
		<pubDate>Sun, 09 Dec 2007 03:56:51 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[reviews]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[films]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[PINE]]></category>

		<guid isPermaLink="false">http://www.sjcuthbertson.me.uk/wordpress/2007/12/09/yay-for-pine/</guid>
		<description><![CDATA[Having returned home to Devon earlier today, the logical thing to do tonight was, of course, stay up late watching movies (Napoleon Dynamite, Independence Day) on Film4 with beer and crisps, then stay up later hacking my Linux-based laptop onto our home wifi. That done, the laptop was due a rather large number of updates, [...]]]></description>
			<content:encoded><![CDATA[<p>Having returned home to Devon earlier today, the logical thing to do tonight was, of course, stay up late watching movies (Napoleon Dynamite, Independence Day) on Film4 with beer and crisps, then stay up later hacking my Linux-based laptop onto our home wifi.  That done, the laptop was due a rather large number of updates, which, over 802.11g, took around about 2 hours to download and install.</p>
<p>What does one do whilst waiting for said updates? Hack around on the desktop PC, of course.  I now have a (pretty much pointless) installation of <a href="http://www.horde.org">Horde</a> on my domain, and a copy of <a href="http://www.washington.edu/pine/">PINE</a> on pip, the SRCF&#8217;s linux box, appropriately set up to read my Google Apps email account via IMAP.</p>
<p>This will probably now solve all possible need-to-check-email scenarios; I fully intend to never be too far from my USB stick with Portable PuTTY, if I think I might not have access to a terminal of some description.  Of course, in the majority of places, Firefox will do nicely, Thank You Very Much: the web interface is, for me, far superior to PINE (which doesn&#8217;t support things like starring messages, and deals awkwardly with labels, and the general &#8220;never delete a message&#8221; philosophy).  But for those situations when bandwidth/memory/time are really short, PINE is a good thing!</p>
<p>Oh, and Napoleon Dynamite is, to be completely honest, not as fantastic a film as I&#8217;d been led to believe.  The famous dance sequence is hilarious, but other than that, it&#8217;s pretty forgettable, and takes forever to get going (arguably, never getting beyond first gear, but then subtlety-of-plot is a valid artistic idea).  Just not my kind of humour, I suppose.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sjcuthbertson.me.uk/wp/2007/12/yay-for-pine/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Notes on gOS</title>
		<link>http://www.sjcuthbertson.me.uk/wp/2007/12/notes-on-gos/</link>
		<comments>http://www.sjcuthbertson.me.uk/wp/2007/12/notes-on-gos/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 18:22:44 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[reviews]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[gOS]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.sjcuthbertson.me.uk/wordpress/2007/12/03/notes-on-gos/</guid>
		<description><![CDATA[I got around to downloading the ISO of gOS the other day, and had a look. It started up AOK, and reasonably quickly for a liveCD (especially given I&#8217;m still running on just 512kB 512MB RAM), which is reassuring given that it&#8217;s basically just Ubuntu under the hood. I wasn&#8217;t massively enamoured of the look-n-feel, [...]]]></description>
			<content:encoded><![CDATA[<p>I got around to downloading the ISO of <a href="http://www.thinkgos.com">gOS</a> the other day, and had a look.  It started up AOK, and reasonably quickly for a liveCD (especially given I&#8217;m still running on just <strike>512kB</strike> <em>512MB</em> RAM), which is reassuring given that it&#8217;s basically just Ubuntu under the hood.  I wasn&#8217;t massively enamoured of the look-n-feel, partly because I suspect the graphics were not one of the things on the to-do list for their first release (well, that&#8217;s probably a good thing!).  But it was also my first encounter with Enlightenment desktop &#8211; although difficult to place, it didn&#8217;t really feel as nice as KWin, Compiz or Beryl; but the OS X-like app-launcher bar at the bottom was something I might try to replicate in my Kubuntu installation.  I think it might have been due to the GNOMEyness as well.  Basically, it works and feels OK, <em>IF</em> you&#8217;re more used to Ubuntu than Kubuntu <img src='http://www.sjcuthbertson.me.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Of course, what&#8217;s really interesting about gOS as an OS (rather than simply as a component of the now-famous $200 Wal-Mart system) is it&#8217;s total reliance on web applications, specifically Google ones.  I was a bit disappointed, to be honest, with how little they&#8217;ve integrated these into the experience &#8211; the icons that relate to web rather than hard-drive based apps (all except for media player and config utils, IIRC) simply open a bog-standard Firefox window at that page, rather than integrating as if it were a desktop app.  Anybody could do this &#8211; sure, it&#8217;d take a little tweaking in places, but for me, it&#8217;s far easier to have one FF window open right from the start of my session, with all the apps/pages I use the most in a bookmarks toolbar, and just go from there.  Being Linux, all the other aspects of it could be fairly easily recreated by apt-get downloading the relevant things, so gOS is certainly not going to be replacing my Kubuntu partition any time soon.  It&#8217;s a brilliant concept, and just right for a dirt-cheap PC bundle that should, hopefully, increase mainstream awareness of Linux in the US &#8211; but poorly executed.</p>
<p>One thing I will say for it &#8211; Firefox sure loads <strong>fast</strong>.  Possibly just because it has no extensions &#8211; but I think it loads even faster than a clean install would on my machine.  Anybody know what they&#8217;ve tweaked?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sjcuthbertson.me.uk/wp/2007/12/notes-on-gos/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>gOS + Puppy Linux = ?</title>
		<link>http://www.sjcuthbertson.me.uk/wp/2007/11/gos-puppy-linux/</link>
		<comments>http://www.sjcuthbertson.me.uk/wp/2007/11/gos-puppy-linux/#comments</comments>
		<pubDate>Sun, 11 Nov 2007 17:59:24 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[notes]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[portability]]></category>

		<guid isPermaLink="false">http://www.sjcuthbertson.me.uk/wordpress/2007/11/11/gos-puppy-linux/</guid>
		<description><![CDATA[If you&#8217;ve not heard, gOS is an Ubuntu-based linux distro tailored to integrate the Google web applications we all know and love into a desktop experience &#8211; the nearest thing to a Google OS so far (though, despite the similarity of names, gOS is not affliated with Google to the best of my knowledge). They&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve not heard, <a href="http://www.thinkgos.com">gOS</a> is an Ubuntu-based linux distro tailored to integrate the Google web applications we all know and love into a desktop experience &#8211; the nearest thing to a Google OS so far (though, despite the similarity of names, gOS is not affliated with Google to the best of my knowledge).  They&#8217;ve also brought out a <a href="http://blog.wired.com/gadgets/2007/10/200-everex-gree.html">gOS-powered $200 PC</a> to Walmarts all across the US, which is a Good Thing.  Of course, since the OS relies on web-based applications for most day-to-day tasks, it&#8217;s quite lightweight &#8211; though still a full CD&#8217;s worth.</p>
<p><a href="http://www.puppylinux.org/">Puppy Linux</a> is a very lightweight linux distro designed to be run from USB memory sticks.  It still currently uses traditional desktop applications, though.</p>
<p>I have acquired a (free) 512Mb memory stick, of a pretty decent build-quality and a very keychain-able size (more on how and when will be explained in a future post, once I have a bit more to add to it), and want something to do with it.  I already have a similar-sized one which I use for general carrying of files between home, the department, etc, and running a few Portable Apps such as a customised Firefox, when I&#8217;m out and about.  I need to read up on how exactly to make one&#8217;s own USB-bootable flash-stored OS, but I think I see a holiday project here <img src='http://www.sjcuthbertson.me.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sjcuthbertson.me.uk/wp/2007/11/gos-puppy-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
