<?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>hocuspokus &#187; ubuntu</title>
	<atom:link href="http://hocuspokus.net/tag/ubuntu/feed" rel="self" type="application/rss+xml" />
	<link>http://hocuspokus.net</link>
	<description>the life and times of a code monkey</description>
	<lastBuildDate>Tue, 01 Jun 2010 16:40:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Install PostgreSQL on Ubuntu&#160;8.04</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F05%2Finstall-postgresql-on-ubuntu-804&amp;seed_title=Install+PostgreSQL+on+Ubuntu%26%23160%3B8.04</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F05%2Finstall-postgresql-on-ubuntu-804&amp;seed_title=Install+PostgreSQL+on+Ubuntu%26%23160%3B8.04#comments</comments>
		<pubDate>Tue, 13 May 2008 16:19:41 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[noteworthy]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/?p=145</guid>
		<description><![CDATA[Following up from my old guide to installing PostgreSQL (for Ubuntu 7.10), I thought i&#8217;d better do an update for the latest releases&#8230; This quick walk-through are my notes for installing the PostgreSQL database server and the PgAdmin administration application &#8230; <a href="http://hocuspokus.net/feeder/?FeederAction=clicked&#38;feed=Articles+%28RSS2%29&#38;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F05%2Finstall-postgresql-on-ubuntu-804&#38;seed_title=Install+PostgreSQL+on+Ubuntu%26%23160%3B8.04">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Following up from my old guide to installing PostgreSQL (for Ubuntu 7.10), I thought i&#8217;d better do an update for the latest releases&#8230; <img src='http://hocuspokus.net/wp-content/plugins/smilies-themer/tango/face-smile.png' alt=':)' class='wp-smiley' /> </p>

<p>This quick walk-through are my notes for installing the PostgreSQL database server and the PgAdmin administration application on Ubuntu Linux, and also set up the server so it allows access to other PC&#8217;s on your network.</p>

<p>Before we move on, this guide was tested on the current release of Ubuntu Linux, (8.04 - Hardy Heron) and PostgreSQL 8.3, but it should also be applicable to older versions (of Ubuntu and PostgreSQL) and other Debian based distros.</p>

<p><span id="more-145"></span></p>

<p>Right for the basic installation, at the command-line, enter the following commands (or search for the listed packages in synaptic if you prefer that way of working):</p>

<pre><code>$ sudo apt-get install postgresql postgresql-client postgresql-contrib
$ sudo apt-get install pgadmin3
</code></pre>

<p>This installs the database server/client, some extra utility scripts and the pgAdmin GUI application for working with the database.</p>

<p>Now we need to reset the password for the &#8216;postgres&#8217; admin account for the server, so we can use this for all of the system administration tasks. Type the following at the command-line (substitute in the password you want to use for your administrator account):</p>

<pre><code>$ sudo su postgres -c psql template1
template1=# ALTER USER postgres WITH PASSWORD 'password';
template1=# \q
</code></pre>

<p>That alters the password for within the database, now we need to do the same for the unix user &#8216;postgres&#8217;:</p>

<pre><code>$ sudo passwd -d postgres
$ sudo su postgres -c passwd
</code></pre>

<p>Now enter the same password that you used previously.</p>

<p>Then, from here on in we can use both pgAdmin and command-line access (as the postgres user) to run the database server.  But before you jump into pgAdmin we should set-up the PostgreSQL admin pack that enables better logging and monitoring within pgAdmin.  Run the following at the command-line:</p>

<pre><code>$ sudo su postgres -c psql &lt; /usr/share/postgresql/8.3/contrib/adminpack.sql
</code></pre>

<p>Finally, we need to open up the server so that we can access and use it remotely - unless you only want to access the database on the local machine. To do this, first, we need to edit the postgresql.conf file:</p>

<pre><code>$ sudo gedit /etc/postgresql/8.3/main/postgresql.conf
</code></pre>

<p>Now, to edit a couple of lines in the &#8216;Connections and Authentication&#8217; section&#8230;</p>

<p>Change the line:</p>

<pre><code>#listen_addresses = 'localhost'
</code></pre>

<p>to</p>

<pre><code>listen_addresses = '*'
</code></pre>

<p>and also change the line:</p>

<pre><code>#password_encryption = on
</code></pre>

<p>to</p>

<pre><code>password_encryption = on
</code></pre>

<p>Then save the file and close gedit.</p>

<p>Now for the final step, we must define who can access the server. This is all done using the pg_hba.conf file.<sup id="fnref:1"><a href="#fn:1" rel="footnote">1</a></sup></p>

<pre><code>$ sudo gedit /etc/postgresql/8.3/main/pg_hba.conf
</code></pre>

<p>Comment out, or delete the current contents of the file, then add this text to the bottom of the file:</p>

<pre><code># DO NOT DISABLE!
# If you change this first entry you will need to make sure that the
# database
# super user can access the database using some other method.
# Noninteractive
# access to all databases is required during automatic maintenance
# (autovacuum, daily cronjob, replication, and similar tasks).
#
# Database administrative login by UNIX sockets
local   all         postgres                          ident sameuser
# TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD

# "local" is for Unix domain socket connections only
local   all         all                               md5
# IPv4 local connections:
host    all         all         127.0.0.1/32          md5
# IPv6 local connections:
host    all         all         ::1/128               md5

# Connections for all PCs on the subnet
#
# TYPE DATABASE USER IP-ADDRESS IP-MASK METHOD
host    all         all         [ip address]          [subnet mask]  md5
</code></pre>

<p>and in the last line, add in your subnet mask (i.e. 255.255.255.0) and the IP address of the machine that you would like to access your server (i.e. 138.250.192.115). However, if you would like to enable access to a range of IP addresses, just substitute the last number for a zero and all machines within that range will be allowed access (i.e. 138.250.192.0 would allow all machines with an IP address 138.250.192.x to use the database server).</p>

<p>That&#8217;s it, now all you have to do is restart the server:</p>

<pre><code>$ sudo /etc/init.d/postgresql-8.3 restart
</code></pre>

<p>And all should be working.</p>

<div class="footnotes">
<hr />
<ol>

<li id="fn:1">
<p>The following advice can also be given to you (plus you don&#8217;t even need to figure out IP addresses and subnet masks) from the latest versions of pgAdmin (1.6.x).  But it doesn&#8217;t hurt to know how things work.&#160;<a href="#fnref:1" rev="footnote">&#8617;</a></p>
</li>

</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F05%2Finstall-postgresql-on-ubuntu-804&amp;seed_title=Install+PostgreSQL+on+Ubuntu%26%23160%3B8.04/feed</wfw:commentRss>
		<slash:comments>70</slash:comments>
		</item>
		<item>
		<title>Installing R/BioConductor on Ubuntu&#160;8.04</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F05%2Finstalling-r-bioconductor-on-ubuntu-804&amp;seed_title=Installing+R%2FBioConductor+on+Ubuntu%26%23160%3B8.04</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F05%2Finstalling-r-bioconductor-on-ubuntu-804&amp;seed_title=Installing+R%2FBioConductor+on+Ubuntu%26%23160%3B8.04#comments</comments>
		<pubDate>Wed, 07 May 2008 18:41:39 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[bioconductor]]></category>
		<category><![CDATA[bioinformatics]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[r]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/?p=119</guid>
		<description><![CDATA[The new version of Ubuntu is out, (as if you haven&#8217;t heard that by now), so that means a fresh install to play about with and working just the way I want! One of the tools that I currently need &#8230; <a href="http://hocuspokus.net/feeder/?FeederAction=clicked&#38;feed=Articles+%28RSS2%29&#38;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F05%2Finstalling-r-bioconductor-on-ubuntu-804&#38;seed_title=Installing+R%2FBioConductor+on+Ubuntu%26%23160%3B8.04">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The new version of Ubuntu is out, (as if you haven&#8217;t heard that by now), so that means a fresh install to play about with and working just the way I want! <img src='http://hocuspokus.net/wp-content/plugins/smilies-themer/tango/face-smile-big.png' alt=':D' class='wp-smiley' /> </p>

<p>One of the tools that I currently need (for the thesis work) is <a href="http://www.r-project.org/">R</a> and the <a href="http://www.bioconductor.org/">BioConductor</a> libraries.  So here&#8217;s a quick run down on getting them up and installed on Hardy&#8230;</p>

<p>First up, run these commands in a terminal:</p>

<pre><code>sudo apt-get install build-essential g77 gfortran
sudo apt-get install refblas3 refblas3-dev zlib1g-dev
sudo apt-get install r-base
</code></pre>

<p>This will then install the R base packages and some of the BioConductor packages, along with the gcc and fortran compilers and some other libraries that will be required for the next step.</p>

<pre><code>sudo -s
R
</code></pre>

<p>Now at the R prompt, type the followingâ€¦</p>

<pre><code>source("http://www.bioconductor.org/biocLite.R")
biocLite()
</code></pre>

<p>Now sit back for a few minutes while your system configures BioConductor for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F05%2Finstalling-r-bioconductor-on-ubuntu-804&amp;seed_title=Installing+R%2FBioConductor+on+Ubuntu%26%23160%3B8.04/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Installing VMware Tools on Ubuntu 8.04&#160;(Hardy)</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F05%2Finstalling-vmware-tools-on-ubuntu-804-hardy&amp;seed_title=Installing+VMware+Tools+on+Ubuntu+8.04%26%23160%3B%28Hardy%29</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F05%2Finstalling-vmware-tools-on-ubuntu-804-hardy&amp;seed_title=Installing+VMware+Tools+on+Ubuntu+8.04%26%23160%3B%28Hardy%29#comments</comments>
		<pubDate>Mon, 05 May 2008 09:11:41 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/?p=140</guid>
		<description><![CDATA[If you&#8217;re a VMware user and want to play around with the latest version of Ubuntu in a VM (like me), you&#8217;ll need to get the vmware-tools installed. Unfortunately, things are not quite as straight forward as the previous release &#8230; <a href="http://hocuspokus.net/feeder/?FeederAction=clicked&#38;feed=Articles+%28RSS2%29&#38;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F05%2Finstalling-vmware-tools-on-ubuntu-804-hardy&#38;seed_title=Installing+VMware+Tools+on+Ubuntu+8.04%26%23160%3B%28Hardy%29">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re a VMware user and want to play around with the latest version of Ubuntu in a VM (like me), you&#8217;ll need to get the vmware-tools installed.  Unfortunately, things are not quite as <a href="http://hocuspokus.net/2007/11/03/installing-vmware-tools-on-ubuntu-gutsy/">straight forward as the previous release</a> of Ubuntu yet, but it was a pretty easy thanks to this <a href="http://peterc.org/2008/62-how-to-install-vmware-tools-on-ubuntu-hardy-804-under-vmware-fusion.html">great guide</a>.</p>

<blockquote>The latest version of Ubuntu (8.04 a.k.a. Ubuntu Hardy - the worldâ€™s most popular Linux distribution) came out yesterday on April 24th. I downloaded it right away to play with on VMware Fusion, my Mac virtualization tool of choice (though Iâ€™ve now been told this works in VMware Workstation and VMware Player on the PC too!). It worked pretty well out of the box, with even seamless mouse support working right away, but I needed, of course, to install VMware Tools too, as any good VMware user would do. From there, things turned sour, and I was bombarded with error messages &#8230;</blockquote>

<p><a href="http://peterc.org/2008/62-how-to-install-vmware-tools-on-ubuntu-hardy-804-under-vmware-fusion.html" class="via">read more</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F05%2Finstalling-vmware-tools-on-ubuntu-804-hardy&amp;seed_title=Installing+VMware+Tools+on+Ubuntu+8.04%26%23160%3B%28Hardy%29/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bio-Linux - Bioinformatics Tools for&#160;Linux</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F03%2Fbio-linux-bioinformatics-tools-for-linux&amp;seed_title=Bio-Linux+-+Bioinformatics+Tools+for%26%23160%3BLinux</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F03%2Fbio-linux-bioinformatics-tools-for-linux&amp;seed_title=Bio-Linux+-+Bioinformatics+Tools+for%26%23160%3BLinux#comments</comments>
		<pubDate>Fri, 07 Mar 2008 08:52:03 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[noteworthy]]></category>
		<category><![CDATA[bioinformatics]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/2008/03/07/bio-linux-bioinformatics-tools-for-linux/</guid>
		<description><![CDATA[Bio-Linux is a specialised Linux disro that provides both standard and cutting edge bioinformatics software tools on a Linux base. I wrote a post on my old blog a little while back now detailing how to use the packages from &#8230; <a href="http://hocuspokus.net/feeder/?FeederAction=clicked&#38;feed=Articles+%28RSS2%29&#38;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F03%2Fbio-linux-bioinformatics-tools-for-linux&#38;seed_title=Bio-Linux+-+Bioinformatics+Tools+for%26%23160%3BLinux">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://nebc.nox.ac.uk/biolinux.html">Bio-Linux</a> is a specialised Linux disro that provides both standard and cutting edge bioinformatics software tools on a Linux base.</p>

<p>I wrote a post on my old blog a little while back now detailing how to use the packages from Bio-Linux in <a href="http://www.ubuntu.com/">Ubuntu Linux</a>, but it got missed in the migration (sorry to all those who have been searching for it).  Here&#8217;s a repost and update for Ubuntu 7.10&#8230;</p>

<p><span id="more-120"></span></p>

<p>Log into your system and open up a terminal, then follow these stepsâ€¦</p>

<pre><code>sudo gedit /etc/apt/sources.list
</code></pre>

<p>Add the following lines to the end of the file:</p>

<pre><code># Bio-Linux package repository
deb http://envgen.nox.ac.uk/bio-linux/ unstable bio-linux
</code></pre>

<p>Save and close the file, now back at the terminal type the following:<sup id="fnref:1"><a href="#fn:1" rel="footnote">1</a></sup></p>

<pre><code>sudo apt-get update
sudo apt-get install bio-linux-base-directories bio-linux-staden
</code></pre>

<p>Next step is to set-up your environment for Bio-Linux&#8230;</p>

<pre><code>sudo gedit /etc/bash.bashrc
</code></pre>

<p>Add the following lines to the end of the file:</p>

<pre><code># Set up Bio-Linux Environment
source /usr/local/bioinf/config_files/aliasrc
source /usr/local/bioinf/config_files/bioenvrc
</code></pre>

<p>Save and close the file.</p>

<p>That&#8217;s it, now all of the packages available through Bio-Linux are now available to you in Ubuntu.  One final word of warning&#8230;  I&#8217;ve noticed that a few of the packages are a little out of date, (the Bio-Linux version of Taverna is 1.4, but 1.7 is <a href="http://taverna.sourceforge.net/">now available</a>)<sup id="fnref:2"><a href="#fn:2" rel="footnote">2</a></sup> so it might be worth checking the version numbers before installing things.</p>

<div class="footnotes">
<hr />
<ol>

<li id="fn:1">
<p>Note that we need to install the <code>bio-linux-staden</code> package, without this we&#8217;d have to do a bit more hacking in config files to stop getting errors whenever we open up a terminal.&#160;<a href="#fnref:1" rev="footnote">&#8617;</a></p>
</li>

<li id="fn:2">
<p>The other thing to note with the Bio-Linux version of Taverna - it doesn&#8217;t start properly without a little bit of hacking&#8230; <img src='http://hocuspokus.net/wp-content/plugins/smilies-themer/tango/face-sad.png' alt=':(' class='wp-smiley' />  (If you decided to go with the Bio-Linux version, you can launch it by running the following in the terminal: <code>/usr/local/bioinf/taverna/taverna/runme.sh</code>).&#160;<a href="#fnref:2" rev="footnote">&#8617;</a></p>
</li>

</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F03%2Fbio-linux-bioinformatics-tools-for-linux&amp;seed_title=Bio-Linux+-+Bioinformatics+Tools+for%26%23160%3BLinux/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Install phpPgAdmin on Ubuntu&#160;7.10</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstall-phppgadmin-on-ubuntu-710&amp;seed_title=Install+phpPgAdmin+on+Ubuntu%26%23160%3B7.10</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstall-phppgadmin-on-ubuntu-710&amp;seed_title=Install+phpPgAdmin+on+Ubuntu%26%23160%3B7.10#comments</comments>
		<pubDate>Wed, 14 Nov 2007 20:14:32 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/2007/11/14/install-phppgadmin-on-ubuntu-710/</guid>
		<description><![CDATA[Update: These instructions have been tested and work fine in the latest version of Ubuntu (8.04, Hardy Heron). phpPgAdmin is a web based GUI for administrating a PostgreSQL database server. Here&#8217;s some quick notes on getting it installed easily on &#8230; <a href="http://hocuspokus.net/feeder/?FeederAction=clicked&#38;feed=Articles+%28RSS2%29&#38;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstall-phppgadmin-on-ubuntu-710&#38;seed_title=Install+phpPgAdmin+on+Ubuntu%26%23160%3B7.10">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p class="alert"><strong>Update:</strong> These instructions have been tested and work fine in the latest version of Ubuntu (8.04, Hardy Heron).</p>

<p><a href="http://www.phppgadmin.org/">phpPgAdmin</a> is a web based GUI for administrating a <a href="http://www.postgresql.org/">PostgreSQL</a> database server.</p>

<p>Here&#8217;s some quick notes on getting it installed easily on Ubuntu 7.10&#8230;</p>

<p>In the terminal enter the following:</p>

<pre><code>$ sudo apt-get install phppgadmin
</code></pre>

<p>This will set up and install all of the phpPgAdmin packages.  It will also set-up and configure Apache and php5 for you too if you haven&#8217;t installed these already.</p>

<p>Next we need to create a symlink to phpPgAdmin so that Apache can find it:</p>

<pre><code>$ sudo ln -s /etc/phppgadmin/apache.conf /etc/apache2/conf.d/phppgadmin.conf
</code></pre>

<p>Now if you navigate to <a href="http://localhost/phppgadmin">http://localhost/phppgadmin</a> you should be greeted with the phpPgAdmin screen.  If your user account has a PostgreSQL account however, you will be logged in automagically.</p>

<p>Optionally, if you would like to be able to use the phpPgAdmin interface as the default &#8216;postgres&#8217; administration account,<sup id="fnref:1"><a href="#fn:1" rel="footnote">1</a></sup> you will need to do the following<sup id="fnref:2"><a href="#fn:2" rel="footnote">2</a></sup>&#8230;</p>

<pre><code>$ sudo gedit /usr/share/phppgadmin/conf/config.inc.php
</code></pre>

<p>Now find and change the following line</p>

<pre><code>$conf['extra_login_security'] = true;
</code></pre>

<p>to</p>

<pre><code>$conf['extra_login_security'] = false;
</code></pre>

<p>Save and close gedit.  Now all you need to do is restart Apache.</p>

<pre><code>$ sudo /etc/init.d/apache2 reload
</code></pre>

<p>Now if you head on over to <a href="http://localhost/phppgadmin">http://localhost/phppgadmin</a> all should be ready for you.</p>

<div class="footnotes">
<hr />
<ol>

<li id="fn:1">
<p>I am assuming here that you have set-up your PostgreSQL server using my <a href="http://hocuspokus.net/2007/11/05/install-posgresql-on-ubuntu-710/">set-up instructions</a> and therefore have a password protected &#8216;postgres&#8217; account and that logins require passwords.&#160;<a href="#fnref:1" rev="footnote">&#8617;</a></p>
</li>

<li id="fn:2">
<p>Please make sure you have read the above footnote and understand the security implications of allowing this type of access to your database server - if you have not secured your administration accounts, do it now!&#160;<a href="#fnref:2" rev="footnote">&#8617;</a></p>
</li>

</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstall-phppgadmin-on-ubuntu-710&amp;seed_title=Install+phpPgAdmin+on+Ubuntu%26%23160%3B7.10/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Mount ISO Files With&#160;Nautilus</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Fmount-iso-files-with-nautilus&amp;seed_title=Mount+ISO+Files+With%26%23160%3BNautilus</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Fmount-iso-files-with-nautilus&amp;seed_title=Mount+ISO+Files+With%26%23160%3BNautilus#comments</comments>
		<pubDate>Wed, 14 Nov 2007 20:14:13 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/2007/11/14/mount-iso-files-with-nautilus/</guid>
		<description><![CDATA[Here&#8217;s two short bash scripts that allow you to mount and unmount an ISO image easily within the right-click menu in Nautilus (the file manager in Gnome): $ sudo mkdir /media/ISO $ cd ~/.gnome2/nautilus-scripts/ $ gedit "Mount ISO Image" Now &#8230; <a href="http://hocuspokus.net/feeder/?FeederAction=clicked&#38;feed=Articles+%28RSS2%29&#38;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Fmount-iso-files-with-nautilus&#38;seed_title=Mount+ISO+Files+With%26%23160%3BNautilus">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s two short bash scripts that allow you to mount and unmount an ISO image easily within the right-click menu in Nautilus (the file manager in Gnome):</p>

<pre><code>$ sudo mkdir /media/ISO
$ cd ~/.gnome2/nautilus-scripts/
$ gedit "Mount ISO Image"
</code></pre>

<p>Now paste this code into the file:</p>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #000000; font-weight: bold;">for</span> I <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$*</span><span style="color: #000000; font-weight: bold;">`</span>
<span style="color: #000000; font-weight: bold;">do</span>
<span style="color: #007800;">foo</span>=<span style="color: #000000; font-weight: bold;">`</span>gksudo <span style="color: #660033;">-u</span> root <span style="color: #660033;">-k</span> <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;enter your password for root terminal access&quot;</span> <span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;got r00t?&quot;</span><span style="color: #000000; font-weight: bold;">`</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">mount</span> <span style="color: #660033;">-o</span> loop <span style="color: #660033;">-t</span> iso9660 <span style="color: #007800;">$I</span> <span style="color: #000000; font-weight: bold;">/</span>media<span style="color: #000000; font-weight: bold;">/</span>ISO
<span style="color: #000000; font-weight: bold;">done</span>
<span style="color: #000000; font-weight: bold;">done</span>
exit0</pre></td></tr></table></div>


<p>Save, and exit gedit.</p>

<pre><code>$ gedit "Unmount ISO Image"
</code></pre>

<p>Then paste this code in this file:</p>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #000000; font-weight: bold;">for</span> I <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$*</span><span style="color: #000000; font-weight: bold;">`</span>
<span style="color: #000000; font-weight: bold;">do</span>
<span style="color: #007800;">foo</span>=<span style="color: #000000; font-weight: bold;">`</span>gksudo <span style="color: #660033;">-u</span> root <span style="color: #660033;">-k</span> <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;enter your password for root terminal access&quot;</span> <span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;got r00t?&quot;</span><span style="color: #000000; font-weight: bold;">`</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">umount</span> <span style="color: #007800;">$I</span>
<span style="color: #000000; font-weight: bold;">done</span>
<span style="color: #000000; font-weight: bold;">done</span>
exit0</pre></td></tr></table></div>


<p>Save, and exit gedit. Now finally&#8230;</p>

<pre><code>$ chmod a+x *
</code></pre>

<p>Now you can mount and unmount ISO files by using the &#8216;Scripts&#8217; options in the right-click menu. <img src='http://hocuspokus.net/wp-content/plugins/smilies-themer/tango/face-smile.png' alt=':)' class='wp-smiley' /> </p>

<p>Thanks to the <a href="http://ubuntu.wordpress.com/2005/10/24/nautilus-script-to-mount-iso-files/">Ubuntu Blog</a> for the information.</p>
]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Fmount-iso-files-with-nautilus&amp;seed_title=Mount+ISO+Files+With%26%23160%3BNautilus/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Apache and PHP&#160;Troubles</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstalling-apache-and-php-troubles&amp;seed_title=Installing+Apache+and+PHP%26%23160%3BTroubles</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstalling-apache-and-php-troubles&amp;seed_title=Installing+Apache+and+PHP%26%23160%3BTroubles#comments</comments>
		<pubDate>Tue, 13 Nov 2007 21:29:18 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/2007/11/13/installing-apache-and-php-troubles/</guid>
		<description><![CDATA[I just recently set Apache up on my home server (more on the server at some point in the future), but I was having problems serving up php pages. Every time I tried to access a php based page, Firefox &#8230; <a href="http://hocuspokus.net/feeder/?FeederAction=clicked&#38;feed=Articles+%28RSS2%29&#38;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstalling-apache-and-php-troubles&#38;seed_title=Installing+Apache+and+PHP%26%23160%3BTroubles">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just recently set Apache up on my home server (more on the server at some point in the future), but I was having problems serving up php pages.  Every time I tried to access a php based page, Firefox came up asking if I wanted to download a &#8216;.PHTML&#8217; file!!! <img src='http://hocuspokus.net/wp-content/plugins/smilies-themer/tango/face-sad.png' alt=':(' class='wp-smiley' /> </p>

<p>Thankfully the answer (like most things with Ubuntu) was found on the <a href="http://ubuntuforums.org/showthread.php?t=209120">Ubuntu Forums</a>&#8230;</p>

<p>Simply edit the file <code>/etc/apache2/apache2.conf</code> by adding the following line:</p>

<pre><code>AddType application/x-httpd-php .php .phtml
</code></pre>

<p>Now php files should be handled by the server in the way that they were intended.</p>
]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstalling-apache-and-php-troubles&amp;seed_title=Installing+Apache+and+PHP%26%23160%3BTroubles/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install PostgreSQL on Ubuntu&#160;7.10</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstall-postgresql-on-ubuntu-710&amp;seed_title=Install+PostgreSQL+on+Ubuntu%26%23160%3B7.10</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstall-postgresql-on-ubuntu-710&amp;seed_title=Install+PostgreSQL+on+Ubuntu%26%23160%3B7.10#comments</comments>
		<pubDate>Mon, 05 Nov 2007 18:48:10 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[noteworthy]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/2007/11/05/install-posgresql-on-ubuntu-710/</guid>
		<description><![CDATA[If you are using the latest version of Ubuntu (8.04 - Hardy Heron), you might find these slightly updated instructions useful. This quick walk-through are my notes for installing the PostgreSQL database server and the PgAdmin administration application on Ubuntu &#8230; <a href="http://hocuspokus.net/feeder/?FeederAction=clicked&#38;feed=Articles+%28RSS2%29&#38;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstall-postgresql-on-ubuntu-710&#38;seed_title=Install+PostgreSQL+on+Ubuntu%26%23160%3B7.10">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p class="alert">If you are using the latest version of Ubuntu (8.04 - Hardy Heron), you might find these <a href="http://hocuspokus.net/2008/05/13/install-postgresql-on-ubuntu-804/">slightly updated instructions</a> useful.</p>

<p>This quick walk-through are my notes for installing the PostgreSQL database server and the PgAdmin administration application on Ubuntu Linux, and also set up the server so it allows access to other PC&#8217;s on your network.</p>

<p>Before we move on, this guide was tested on the current release of Ubuntu Linux, (7.10 - Gutsy Gibbon) and PostgreSQL 8.2, but it should also be applicable to older versions (of Ubuntu and PostgreSQL) and other Debian based distros.</p>

<p><span id="more-57"></span></p>

<p>Right for the basic installation, at the command-line, enter the following commands (or search for the listed packages in synaptic if you prefer that way of working):</p>

<pre><code>$ sudo apt-get install postgresql postgresql-client postgresql-contrib
$ sudo apt-get install pgadmin3
</code></pre>

<p>This installs the database server/client, some extra utility scripts and the pgAdmin GUI application for working with the database.</p>

<p>Now we need to reset the password for the &#8216;postgres&#8217; admin account for the server, so we can use this for all of the system administration tasks. Type the following at the command-line (substitute in the password you want to use for your administrator account):</p>

<pre><code>$ sudo su postgres -c psql template1
template1=# ALTER USER postgres WITH PASSWORD 'password';
template1=# \q
</code></pre>

<p>That alters the password for within the database, now we need to do the same for the unix user &#8216;postgres&#8217;:</p>

<pre><code>$ sudo passwd -d postgres
$ sudo su postgres -c passwd
</code></pre>

<p>Now enter the same password that you used previously.</p>

<p>Then, from here on in we can use both pgAdmin and command-line access (as the postgres user) to run the database server.  But before you jump into pgAdmin we should set-up the PostgreSQL admin pack that enables better logging and monitoring within pgAdmin.  Run the following at the command-line:</p>

<pre><code>$ sudo su postgres -c psql &lt; /usr/share/postgresql/8.2/contrib/adminpack.sql
</code></pre>

<p>Finally, we need to open up the server so that we can access and use it remotely - unless you only want to access the database on the local machine. To do this, first, we need to edit the postgresql.conf file:</p>

<pre><code>$ sudo gedit /etc/postgresql/8.2/main/postgresql.conf
</code></pre>

<p>Now, to edit a couple of lines in the &#8216;Connections and Authentication&#8217; section&#8230;</p>

<p>Change the line:</p>

<pre><code>#listen_addresses = 'localhost'
</code></pre>

<p>to</p>

<pre><code>listen_addresses = '*'
</code></pre>

<p>and also change the line:</p>

<pre><code>#password_encryption = on
</code></pre>

<p>to</p>

<pre><code>password_encryption = on
</code></pre>

<p>Then save the file and close gedit.</p>

<p>Now for the final step, we must define who can access the server. This is all done using the pg_hba.conf file.<sup id="fnref:1"><a href="#fn:1" rel="footnote">1</a></sup></p>

<pre><code>$ sudo gedit /etc/postgresql/8.2/main/pg_hba.conf
</code></pre>

<p>Comment out, or delete the current contents of the file, then add this text to the bottom of the file:</p>

<p><pre># DO NOT DISABLE!</p>

<h1>If you change this first entry you will need to make sure that the</h1>

<h1>database</h1>

<h1>super user can access the database using some other method.</h1>

<h1>Noninteractive</h1>

<h1>access to all databases is required during automatic maintenance</h1>

<h1>(autovacuum, daily cronjob, replication, and similar tasks).</h1>

<p>#</p>

<h1>Database administrative login by UNIX sockets</h1>

<p>local   all         postgres                          ident sameuser</p>

<h1>TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD</h1>

<h1>"local" is for Unix domain socket connections only</h1>

<p>local   all         all                               md5</p>

<h1>IPv4 local connections:</h1>

<p>host    all         all         127.0.0.1/32          md5</p>

<h1>IPv6 local connections:</h1>

<p>host    all         all         ::1/128               md5</p>

<h1>Connections for all PCs on the subnet</h1>

<p>#</p>

<h1>TYPE DATABASE USER IP-ADDRESS IP-MASK METHOD</h1>

<p>host    all         all         [ip address]          [subnet mask]  md5</pre></p>

<p>and in the last line, add in your subnet mask (i.e. 255.255.255.0) and the IP address of the machine that you would like to access your server (i.e. 138.250.192.115). However, if you would like to enable access to a range of IP addresses, just substitute the last number for a zero and all machines within that range will be allowed access (i.e. 138.250.192.0 would allow all machines with an IP address 138.250.192.x to use the database server).</p>

<p>That&#8217;s it, now all you have to do is restart the server:</p>

<pre><code>$ sudo /etc/init.d/postgresql-8.2 restart
</code></pre>

<p>And all should be working.</p>

<div class="footnotes">
<hr />
<ol>

<li id="fn:1">
<p>The following advice can also be given to you (plus you don&#8217;t even need to figure out IP addresses and subnet masks) from the latest versions of pgAdmin (1.6.x).  However, this is not the version that ships with Ubuntu, so i&#8217;ll leave these instructions here.&#160;<a href="#fnref:1" rev="footnote">&#8617;</a></p>
</li>

</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstall-postgresql-on-ubuntu-710&amp;seed_title=Install+PostgreSQL+on+Ubuntu%26%23160%3B7.10/feed</wfw:commentRss>
		<slash:comments>63</slash:comments>
		</item>
		<item>
		<title>Installing VMware Tools on Ubuntu&#160;Gutsy</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstalling-vmware-tools-on-ubuntu-gutsy&amp;seed_title=Installing+VMware+Tools+on+Ubuntu%26%23160%3BGutsy</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstalling-vmware-tools-on-ubuntu-gutsy&amp;seed_title=Installing+VMware+Tools+on+Ubuntu%26%23160%3BGutsy#comments</comments>
		<pubDate>Sat, 03 Nov 2007 21:59:50 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/2007/11/03/installing-vmware-tools-on-ubuntu-gutsy/</guid>
		<description><![CDATA[I&#8217;ve just started to play about with the new Ubuntu (7.10 - Gutsy), I have to say that I quite like it - I was a big fan of Feisty and all other Ubuntu releases previously, so this is more &#8230; <a href="http://hocuspokus.net/feeder/?FeederAction=clicked&#38;feed=Articles+%28RSS2%29&#38;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstalling-vmware-tools-on-ubuntu-gutsy&#38;seed_title=Installing+VMware+Tools+on+Ubuntu%26%23160%3BGutsy">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just started to play about with the new Ubuntu (7.10 - Gutsy), I have to say that I quite like it - I was a big fan of Feisty and all other Ubuntu releases previously, so this is more of the same good stuff.</p>

<p>As I&#8217;m working with <a href="http://www.vmware.com/mac">VMWare Fusion</a>, the first thing that needs to be done is install the VMWare Tools.  This is quite simply done with the following lines in the terminal once you have started your VM and mounted the tools image (Virtual Machine > Install VMWare Tools in the menu):</p>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> build-essential linux-headers-$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">uname</span> -r<span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-a</span> <span style="color: #000000; font-weight: bold;">/</span>media<span style="color: #000000; font-weight: bold;">/</span>cdrom<span style="color: #000000; font-weight: bold;">/</span>VMwareTools<span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-vxzf</span> VMwareTools<span style="color: #000000; font-weight: bold;">*</span>.gz
<span style="color: #7a0874; font-weight: bold;">cd</span> vmware-tools-distrib<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> .<span style="color: #000000; font-weight: bold;">/</span>vmware-install.pl</pre></td></tr></table></div>


<p>The just accept all of the defaults for the installation package.</p>

<p>Cheers to <a href="http://ubuntu-tutorials.com/2007/10/02/how-to-install-vmware-tools-on-ubuntu-guests/">Ubuntu Tutorials</a> for the info.</p>
]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Finstalling-vmware-tools-on-ubuntu-gutsy&amp;seed_title=Installing+VMware+Tools+on+Ubuntu%26%23160%3BGutsy/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->