<?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>Joe Blogs &#187; Geek</title>
	<atom:link href="http://www.wrigley.me.uk/wp/category/geek/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wrigley.me.uk/wp</link>
	<description>Random Wibblings of a Performing Monkey</description>
	<lastBuildDate>Sat, 04 Feb 2012 22:19:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Google Chrome, Chromium and proxy settings</title>
		<link>http://www.wrigley.me.uk/wp/2011/01/21/google-chrome-chromium-and-proxy-settings/</link>
		<comments>http://www.wrigley.me.uk/wp/2011/01/21/google-chrome-chromium-and-proxy-settings/#comments</comments>
		<pubDate>Fri, 21 Jan 2011 09:44:22 +0000</pubDate>
		<dc:creator>maedhros</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[proxy]]></category>

		<guid isPermaLink="false">http://www.wrigley.me.uk/wp/?p=347</guid>
		<description><![CDATA[This is really for my benefit, in case I forget, but might also help somebody else who finds this annoyance. I use google chrome to get at bits of the web that certain corporate proxies don&#8217;t allow. I use an ssh tunnel to a tinyproxy instance running on my home machine and then connect to [...]]]></description>
			<content:encoded><![CDATA[<p>This is really for my benefit, in case I forget, but might also help somebody else who finds this annoyance.</p>

<p>I use google chrome to get at bits of the web that certain corporate proxies don&#8217;t allow. I use an ssh tunnel to a tinyproxy instance running on my home machine and then connect to the forwarded port on my local machine.</p>

<p>Something that has annoyed me for some time is that if you change google&#8217;s proxy settings, it affects the system proxy settings. It&#8217;s like Internet Explorer all over again, and it doesn&#8217;t tell you it&#8217;s doing it.</p>

<p>There are bugs:</p>

<p>http://code.google.com/p/chromium/issues/detail?id=43990</p>

<p>but the windows equivalent was closed &#8220;WONTFIX&#8221; for spurious reasons (IMHO, of course).</p>

<p>There is a way around it, though:</p>

<p><code>google-chrome --proxy-server:localhost:8888</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wrigley.me.uk/wp/2011/01/21/google-chrome-chromium-and-proxy-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing the flock browser on Fedora 12 64-bit</title>
		<link>http://www.wrigley.me.uk/wp/2010/04/20/installing-the-flock-browser-on-fedora-12-64-bit/</link>
		<comments>http://www.wrigley.me.uk/wp/2010/04/20/installing-the-flock-browser-on-fedora-12-64-bit/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 13:31:24 +0000</pubDate>
		<dc:creator>maedhros</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[64-bit]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[dependencies]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[flock]]></category>
		<category><![CDATA[x86_64]]></category>

		<guid isPermaLink="false">http://www.wrigley.me.uk/wp/2010/04/20/installing-the-flock-browser-on-fedora-12-64-bit/</guid>
		<description><![CDATA[I just finished installing Flock on my desktop, but ran into a few issues. Nothing obvious that I could find that explained the dependency problems, so now that I&#8217;ve sorted them: Flock only provides 32-bit (i686) binaries so if you&#8217;re running 64-bit (x86_64) Fedora Linux, you probably don&#8217;t have the right dependencies. First step, download [...]]]></description>
			<content:encoded><![CDATA[<p>I just finished installing <a href="http://www.flock.com/">Flock</a> on my desktop, but ran into a few issues. Nothing obvious that I could find that explained the dependency problems, so now that I&#8217;ve sorted them:</p>

<p>Flock only provides 32-bit (i686) binaries so if you&#8217;re running 64-bit (x86_64) Fedora Linux, you probably don&#8217;t have the right dependencies.</p>

<p>First step, download the archive file from <a href="http://flock.com/versions">flock.com</a></p>

<p>Then, uncompress it. I choose to do this straight to /usr/local</p>

<p><code>sudo tar -C /usr/local -xf /path/to/flock-*.linux-i686.tar.bz2</code></p>

<p>Create a symlink in /usr/local/bin so it is in your path:</p>

<p><code>sudo ln -s /usr/local/flock/flock-browser /usr/local/bin</code></p>

<p>If you run <code>flock-browser</code> now, you&#8217;ll get an error:</p>

<p><code>error while loading shared libraries: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory</code></p>

<p>If you satisfy this, you&#8217;ll get some more, so here are the packages you need to install with yum (which will pull down lots more). Don&#8217;t try to satisfy them yourself, it will only cause you pain. Just use yum.</p>

<p><code>sudo yum install gtk2.i686 libXt.i686 PackageKit-gtk-module.i686 libcanberra-gtk2.i686</code></p>

<p>You might still get some errors about a gtk theme, but I ignored them as they appear to be fairly harmless (at least I don&#8217;t care about them):</p>

<p><code>(flock-bin:19147): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wrigley.me.uk/wp/2010/04/20/installing-the-flock-browser-on-fedora-12-64-bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Upgrade</title>
		<link>http://www.wrigley.me.uk/wp/2005/02/24/wordpress-upgrade/</link>
		<comments>http://www.wrigley.me.uk/wp/2005/02/24/wordpress-upgrade/#comments</comments>
		<pubDate>Thu, 24 Feb 2005 10:50:48 +0000</pubDate>
		<dc:creator>site admin</dc:creator>
				<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://www.wrigley.me.uk/wp/?p=75</guid>
		<description><![CDATA[I&#8217;ve upgraded WordPress to 1.5. It was straightforward for me, although I had to hack one of the scripts a bit to deal with my dynamic php/css stuff. I managed to stuff up Hannah&#8217;s at first but a bit of hacking on the posts database fixed things. The templates seem pretty good, much better than [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve upgraded WordPress to 1.5. It was straightforward for me, although I had to hack one of the scripts a bit to deal with my dynamic php/css stuff. I managed to stuff up Hannah&#8217;s at first but a bit of hacking on the posts database fixed things.</p>

<p>The templates seem pretty good, much better than the old way. That is all</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wrigley.me.uk/wp/2005/02/24/wordpress-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Netinstall without CDROM</title>
		<link>http://www.wrigley.me.uk/wp/2005/01/09/ubuntu-netinstall-without-cdrom/</link>
		<comments>http://www.wrigley.me.uk/wp/2005/01/09/ubuntu-netinstall-without-cdrom/#comments</comments>
		<pubDate>Sun, 09 Jan 2005 20:49:27 +0000</pubDate>
		<dc:creator>site admin</dc:creator>
				<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://www.wrigley.me.uk/wp/?p=71</guid>
		<description><![CDATA[I&#8217;m writing this up for my own benefit as it will be faster to find next time I forget. I have problems installing Ubuntu on my laptop as it does not provide debian style floppy-based installation media. My CDROM drive is totally shot, so all I have is a floppy drive or network card as [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m writing this up for my own benefit as it will be faster to find next time I forget.</p>

<p>I have problems installing Ubuntu on my laptop as it does not provide debian style floppy-based installation media. My CDROM drive is totally shot, so all I have is a floppy drive or network card as my installation options.</p>

<p>I found my way around this with a combination of a post on a forum (which I was unable to find second time around) and some figuring out of my own. Nothing particularly ground-breaking about anything I&#8217;ve done, but it might be of use&#8230;</p>

<p>The method I aimed to use was to get hold of appropriate kernel image and initrd from the netinstall CDROM and then get GRUB to load them.</p>

<p>Tracking down the images wasn&#8217;t too bad, and working out the appropriate appends came down to mounting the iso loopback and having a ferret around.</p>

<p>Download <a href="ftp://archive.ubuntulinux.org/ubuntu/dists/warty/main/installer-i386/current/images/netboot/vmlinuz">vmlinuz</a>
 and <a href="ftp://archive.ubuntulinux.org/ubuntu/dists/warty/main/installer-i386/current/images/netboot/initrd.gz">initrd.gz</a>.</p>

<p>The way I did this method was to do this from an existing installation of Linux. I think it would be possible to do it with only Windows (or other OS) installed and a GRUB boot disk. I may explore that possibility later and write that up, too.</p>

<p>I copied the vmlinuz and initrd.gz to my /boot partition, adding a &#8220;-warty-netinstall&#8221; suffix for clarity, and then added the following to my menu.lst for grub.</p>

<p><code>
==# For installing Ubuntu Linux==
title Install Ubuntu
root (hd0,0) # partition that the vmlinuz and initrd.gz are on
kernel /vmlinuz-warty-netinstall vga=normal ramdisk<em>size=11057 root=/dev/rd/0 devfs=mount,dall rw --
initrd /initrd-warty-netinstall.gz
</code>
 The equivalent Lilo entry is:
<code>
label "Install Ubuntu"
    kernel vmlinuz-warty-netinstall
    append vga=normal initrd=initrd-warty-netinstall.gz ramdisk</em>size=11057 root=/dev/rd/0 devfs=mount,dall rw --
</code></p>

<p>Then, just reboot (first running `lilo&#8217;, if using it) and select &#8220;Install Ubuntu&#8221; from the menu. That&#8217;s all there was to it for me.</p>

<p>Hope it helps someone, even if that&#8217;s only me in a few months time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wrigley.me.uk/wp/2005/01/09/ubuntu-netinstall-without-cdrom/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Hacked</title>
		<link>http://www.wrigley.me.uk/wp/2004/12/21/hacked/</link>
		<comments>http://www.wrigley.me.uk/wp/2004/12/21/hacked/#comments</comments>
		<pubDate>Tue, 21 Dec 2004 11:09:59 +0000</pubDate>
		<dc:creator>site admin</dc:creator>
				<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://www.wrigley.me.uk/wp/?p=68</guid>
		<description><![CDATA[Bah. I got hacked. I think it was probably due to a couple of files being world writeable (i.e. index.php and a style file) mainly due to my laziness in editing them in the wordpress editor. I won&#8217;t be doing that again. Of course, I may get hacked again, in which case it must be [...]]]></description>
			<content:encoded><![CDATA[<p>Bah. I got hacked. I think it was probably due to a couple of files being world writeable (i.e. index.php and a style file) mainly due to my laziness in editing them in the wordpress editor. I won&#8217;t be doing that again. Of course, I may get hacked again, in which case it must be something else.</p>

<p>Fortunately, I&#8217;d backed up stuff so I could restore it fairly trivially.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wrigley.me.uk/wp/2004/12/21/hacked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

