<?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>John McLear&#039;s School Technology &#187; install</title>
	<atom:link href="http://mclear.co.uk/category/install/feed/" rel="self" type="application/rss+xml" />
	<link>http://mclear.co.uk</link>
	<description>My mission: To encourage effective use of ICT in Schools. My main focus is on ages 6-11.</description>
	<lastBuildDate>Wed, 08 Sep 2010 12:35:15 +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>Installing Etherpad on Debian</title>
		<link>http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/</link>
		<comments>http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 23:50:00 +0000</pubDate>
		<dc:creator>Admin Admin</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[etherpad]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[installations]]></category>

		<guid isPermaLink="false">http://mclear.primaryblogger.co.uk/2009/12/19/installing-etherpad-on-debian/</guid>
		<description><![CDATA[IMPORTANT NOTE: THIS DOCUMENTATION IS NOW DATED.  You can now install Etherpad from apt. Installing Etherpad 1.0.1 with APT Add the following line as a source in your graphical package manager (In Ubuntu: System-&#62;Administration-&#62;Synaptic package manager; then Settings-&#62;Repositories and then finally Third party software), or edit the file /etc/apt/sources.list and add it there. deb http://etherpad.org/apt [...]]]></description>
			<content:encoded><![CDATA[<p>IMPORTANT NOTE: THIS DOCUMENTATION IS NOW DATED.  You can now install <a href="http://etherpad.org">Etherpad</a> from apt.</p>
<p><strong>Installing <a href="http://etherpad.org">Etherpad</a> 1.0.1 with APT</strong></p>
<p>Add the following line as a source in your graphical package manager (In Ubuntu: System-&gt;Administration-&gt;Synaptic package manager; then Settings-&gt;Repositories and then finally Third party software), or edit the file /etc/apt/sources.list and add it there.</p>
<pre class="brush: plain;">
deb http://etherpad.org/apt all .
</pre>
<pre class="brush: bash;">
apt-get update
apt-get install etherpad
</pre>
<p>Answer the questions (if any, depends on your system settings)</p>
<pre class="brush: bash;">
/etc/init.d/etherpad start
</pre>
<p>Other Linux distributions<br />
Download the .tgz and unpack it<br />
Follow instructions in README <img src='http://mclear.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>BELOW IS THE OLD GUIDE for Etherpad V1 released by Google</strong></p>
<param />
<param />
<param />
<param /><embed type="application/x-shockwave-flash" width="800" height="440" src="http://www.youtube.com/v/JpbT5H6-qr8&amp;hl=en_GB&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<div><strong>Install prereqs</strong></div>
<pre class="brush: bash;">

echo &quot;deb http://ftp.de.debian.org/debian sid main non-free&quot; &gt;&gt; /etc/apt/sources.list
apt-get update
apt-get install sun-java6-jdk
</pre>
<p>If the above fails then do not continue.  The output of</p>
<pre class="brush: bash;">java -version</pre>
<p>Should read..</p>
<pre>java version "1.6.0_17"
Java(TM) SE Runtime Environment (build 1.6.0_17-b04)
Java HotSpot(TM) Client VM (build 14.3-b01, mixed mode, sharing)</pre>
<pre class="brush: bash;">
apt-get install scala mysql-server libmysql-java mercurial
</pre>
<p>Paste the below to /etc/profile</p>
<pre>export PATH
export JAVA_HOME="/usr/lib/jvm/java-6-sun"
export SCALA_HOME="/usr/share/java"
export JAVA="/usr/bin/java"
export SCALA="/usr/bin/scala"
export PATH="/usr/bin:/usr/bin:/usr/local/mysql/bin:$PATH"
export MYSQL_CONNECTOR_JAR="/usr/share/java/mysql-connector-java-5.1.10.jar"
export JAVA_HOME SCALA_HOME JAVA SCALA MYSQL_CONNECTOR_JAR PATH
umask 022</pre>
<p>Download the etherpad source to /usr/local/etherpad</p>
<pre class="brush: bash;">
hg clone https://etherpad.googlecode.com/hg/ /usr/local/etherpad
</pre>
<p><strong>Set the environment variables</strong></p>
<pre class="brush: bash;">
export JAVA_HOME=&quot;/usr/lib/jvm/java-6-sun&quot;
export SCALA_HOME=&quot;/usr/share/java&quot;
export JAVA=&quot;/usr/bin/java&quot;
export SCALA=&quot;/usr/bin/scala&quot;
export PATH=&quot;/usr/bin:/usr/bin:/usr/local/mysql/bin:$PATH&quot;
export MYSQL_CONNECTOR_JAR=&quot;/usr/share/java/mysql-connector-java-5.1.10.jar&quot;
</pre>
<p><strong>Add your domain to the superdomain section</strong></p>
<pre class="brush: bash;">

nano /usr/local/etherpad/trunk/etherpad/src/etherpad/globals.js
</pre>
<p>Search for etherpad.com and replace it with your domain (confused?  You will figure it out)</p>
<p><strong>Create the etherpad mysql db and privelidges</strong></p>
<pre class="brush: bash;">
mysql -u root -p
</pre>
<p>Enter your password when prompted</p>
<pre class="brush: sql;">
create database etherpad;
grant all privileges on etherpad.* to 'etherpad'@'localhost' identified by 'password';
quit
</pre>
<div>
<pre class="brush: bash;">
cd /usr/local/etherpad/trunk/etherpad/
ln -s /usr/share/java /usr/share/java/lib
bin/rebuildjar.sh
bin/run-local.sh
</pre>
<p><strong>Wait quite a while while it builds.</strong></p>
</div>
<p>Test by browsing to your server at http://hostnameofserver:9000</p>
<p>Making pro work&#8230;</p>
<div>
<p>Make sure it doesn&#8217;t redirect to etherpad.com for pro</p>
<p>Edit /usr/local/etherpad/trunk/etherpad/src/main.js</p>
<p>Replace all instances of Etherpad.com with yourdomain.com</p>
<p>Edit /usr/local/etherpad/trunk/etherpad/src/static/crossdomain.xml</p>
<p>Add to the obvious section</p>
<pre class="brush: xml;">

&lt;allow-access-from domain=&quot;yourdomain.com&quot; to-ports=&quot;*&quot;/&gt;

&lt;allow-access-from domain=&quot;*.yourdomain.com&quot; to-ports=&quot;*&quot;/&gt;
</pre>
</div>
<p>Edit /usr/local/etherpad/trunk/etherpad/src/etherpad/pro/pro_utils.js</p>
<p>Replace</p>
<div>
<pre class="brush: plain;">var fromDomain = 'etherpad.com';</pre>
</div>
<p>with</p>
<div>
<pre class="brush: plain;">var fromDomain = 'yourdomain.com';</pre>
</div>
<p>Note: Originally published on the 19th of Dec 2009, Revised on the 10th of March 2010</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/&amp;title=Installing+Etherpad+on+Debian" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/&amp;title=Installing+Etherpad+on+Debian" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/&amp;title=Installing+Etherpad+on+Debian&amp;desc=IMPORTANT%20NOTE%3A%20THIS%20DOCUMENTATION%20IS%20NOW%20DATED.%20%C2%A0You%20can%20now%20install%20Etherpad%20from%20apt.%0D%0A%0D%0AInstalling%20Etherpad%201.0.1%20with%20APT%0D%0A%0D%0AAdd%20the%20following%20line%20as%20a%20source%20in%20your%20graphical%20package%20manager%20%28In%20Ubuntu%3A%20System-%26gt%3BAdministration-%26gt%3BSynaptic%20package%20manager%3B%20then%20Settings-%26gt%3BRepositories%20a" rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/&amp;imageurl=" rel="nofollow" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/&amp;title=Installing+Etherpad+on+Debian" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/&amp;title=Installing+Etherpad+on+Debian" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Installing+Etherpad+on+Debian+-+http://b2l.me/mmn4z&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<div class="yjl_settings" style="display:none;"><span class="yjl_com_paging"></span><span class="yjl_comPerPage"></span><span class="yjl_numPerPage"></span><span class="yjl_pager_pos"></span><span class="yjl_rep_form"></span><span class="yjl_ajax_posting"></span><span class="path">http://mclear.primaryblogger.co.uk/wp-content/plugins/wp-comment-master/ajax-loader.gif</span></div>

<p>Related posts:<ol><li><a href='http://mclear.co.uk/2010/02/18/installing-etherpad-on-windows-cygwin/' rel='bookmark' title='Permanent Link: Installing Etherpad on Windows (CYGWIN)'>Installing Etherpad on Windows (CYGWIN)</a></li>
<li><a href='http://mclear.co.uk/2010/05/06/etherpad-office-import-export-after-upgrade-to-v1/' rel='bookmark' title='Permanent Link: Etherpad Office Import &amp; Export after Upgrade to V1'>Etherpad Office Import &amp; Export after Upgrade to V1</a></li>
<li><a href='http://mclear.co.uk/2010/01/20/rebranding-etherpad/' rel='bookmark' title='Permanent Link: Rebranding Etherpad'>Rebranding Etherpad</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Installing the NRPE client, daemon and nagios plugins on debian</title>
		<link>http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/</link>
		<comments>http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 18:27:00 +0000</pubDate>
		<dc:creator>Admin Admin</dc:creator>
				<category><![CDATA[guide]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[nagios]]></category>
		<category><![CDATA[nrpe]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://mclear.primaryblogger.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/</guid>
		<description><![CDATA[We assuming have already configured nrpe on your nagios box and you are sudo&#8217;d/root Steps: adduser nagios (set the password)cd /home/nagioswget http://prdownloads.sourceforge.net/sourceforge/nagios/nrpe-2.12.tar.gz* If this step fails visit http://www.nagios.org/download/addons for the latest URL tar -zxvf nrpe-2.8.tar.gzcd nrpe-2.12apt-get install gcc gawk opensslapt-get install makeapt-get install libssl-devapt-get install nagios-plugins./configuremake allmake install-pluginmake install-daemonmake install-daemon-configecho &#8220;only_from = 0.0.0.1&#8243; >> /usr/local/nagios/etc/nrpe.cfg* [...]]]></description>
			<content:encoded><![CDATA[<p>We assuming have already configured nrpe on your nagios box and you are sudo&#8217;d/root</p>
<p>Steps:</p>
<p>adduser nagios (set the password)<br />cd /home/nagios<br />wget http://prdownloads.sourceforge.net/sourceforge/nagios/nrpe-2.12.tar.gz<br /><i>* If this step fails visit http://www.nagios.org/download/addons for the latest URL</i></p>
<p>tar -zxvf nrpe-2.8.tar.gz<br />cd nrpe-2.12<br />apt-get install gcc gawk openssl<br />apt-get install make<br />apt-get install libssl-dev<br />apt-get install nagios-plugins<br />./configure<br />make all<br />make install-plugin<br />make install-daemon<br />make install-daemon-config<br />echo &#8220;only_from = 0.0.0.1&#8243; >> /usr/local/nagios/etc/nrpe.cfg<br /><i>* Remember to replace 0.0.0.1 with your the IP address of your nagios server</i></p>
<p>cp init-script.debian /etc/init.d/nrpe<br />chmod 700 /etc/init.d/nrpe<br />/etc/init.d/nrpe start</p>
<p><span><i>You may want to make this script run on start up</i></span><br />update-rc.d nrpe defaults</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/&amp;title=Installing+the+NRPE+client%2C+daemon+and+nagios+plugins+on+debian" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/&amp;title=Installing+the+NRPE+client%2C+daemon+and+nagios+plugins+on+debian" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/&amp;title=Installing+the+NRPE+client%2C+daemon+and+nagios+plugins+on+debian&amp;desc=We%20assuming%20have%20already%20configured%20nrpe%20on%20your%20nagios%20box%20and%20you%20are%20sudo%27d%2FrootSteps%3Aadduser%20nagios%20%28set%20the%20password%29cd%20%2Fhome%2Fnagioswget%20http%3A%2F%2Fprdownloads.sourceforge.net%2Fsourceforge%2Fnagios%2Fnrpe-2.12.tar.gz%2A%20If%20this%20step%20fails%20visit%20http%3A%2F%2Fwww.nagios.org%2Fdownload%2Faddons%20for%20the%20latest%20URLtar%20-" rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/&amp;imageurl=" rel="nofollow" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/&amp;title=Installing+the+NRPE+client%2C+daemon+and+nagios+plugins+on+debian" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/&amp;title=Installing+the+NRPE+client%2C+daemon+and+nagios+plugins+on+debian" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Installing+the+NRPE+client%2C+daemon+and+nagios+plugins+on+debian+-+http://b2l.me/mn667&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<div class="yjl_settings" style="display:none;"><span class="yjl_com_paging"></span><span class="yjl_comPerPage"></span><span class="yjl_numPerPage"></span><span class="yjl_pager_pos"></span><span class="yjl_rep_form"></span><span class="yjl_ajax_posting"></span><span class="path">http://mclear.primaryblogger.co.uk/wp-content/plugins/wp-comment-master/ajax-loader.gif</span></div>

<p>Related posts:<ol><li><a href='http://mclear.co.uk/2010/03/10/installing-etherpad-on-debian/' rel='bookmark' title='Permanent Link: Installing Etherpad on Debian'>Installing Etherpad on Debian</a></li>
<li><a href='http://mclear.co.uk/2009/12/18/installing-sun-java-1-6-on-debian-using-apt-get/' rel='bookmark' title='Permanent Link: Installing Sun Java 1.6 on Debian using Apt-Get'>Installing Sun Java 1.6 on Debian using Apt-Get</a></li>
<li><a href='http://mclear.co.uk/2010/04/27/nagios-php-requirement-workaround/' rel='bookmark' title='Permanent Link: Nagios PHP requirement workaround'>Nagios PHP requirement workaround</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://mclear.co.uk/2010/01/18/installing-the-nrpe-client-daemon-and-nagios-plugins-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS Netinstall 5.4 ISO installation</title>
		<link>http://mclear.co.uk/2009/10/26/centos-netinstall-5-4-iso-installation/</link>
		<comments>http://mclear.co.uk/2009/10/26/centos-netinstall-5-4-iso-installation/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 17:52:00 +0000</pubDate>
		<dc:creator>Admin Admin</dc:creator>
				<category><![CDATA[cent os]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[i386]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[mirror]]></category>
		<category><![CDATA[path]]></category>

		<guid isPermaLink="false">http://mclear.primaryblogger.co.uk/2009/10/26/centos-netinstall-5-4-iso-installation/</guid>
		<description><![CDATA[Iv&#8217;e had to install CentOS 10+ times today and I wanted to quickly document my procedure: Grab http://mirror.sov.uk.goscomb.net/centos/5.4/isos/i386/CentOS-5.4-i386-netinstall.iso &#38; boot from it however you/I want. Select HTTP install then for server type: mirror.centos.org For path type: centos/5.4/os/i386 Go go gadget arms. Subscribe to the comments for this post? Share this on del.icio.us Digg this! Post [...]]]></description>
			<content:encoded><![CDATA[<p>Iv&#8217;e had to install CentOS 10+ times today and I wanted to quickly document my procedure:
<div></div>
<div>
<ol>
<li>Grab http://mirror.sov.uk.goscomb.net/centos/5.4/isos/i386/CentOS-5.4-i386-netinstall.iso &amp; boot from it however you/I want.</li>
<li>Select HTTP install then for server type: <b>mirror.centos.org</b></li>
<li>For path type: <b>centos/5.4/os/i386</b></li>
</ol>
</div>
<div></div>
<div>Go go gadget arms.</div>
<div></div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://mclear.co.uk/2009/10/26/centos-netinstall-5-4-iso-installation/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://mclear.co.uk/2009/10/26/centos-netinstall-5-4-iso-installation/&amp;title=CentOS+Netinstall+5.4+ISO+installation" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://mclear.co.uk/2009/10/26/centos-netinstall-5-4-iso-installation/&amp;title=CentOS+Netinstall+5.4+ISO+installation" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://mclear.co.uk/2009/10/26/centos-netinstall-5-4-iso-installation/&amp;title=CentOS+Netinstall+5.4+ISO+installation&amp;desc=Iv%27e%20had%20to%20install%20CentOS%2010%2B%20times%20today%20and%20I%20wanted%20to%20quickly%20document%20my%20procedure%3AGrab%20http%3A%2F%2Fmirror.sov.uk.goscomb.net%2Fcentos%2F5.4%2Fisos%2Fi386%2FCentOS-5.4-i386-netinstall.iso%20%26amp%3B%20boot%20from%20it%20however%20you%2FI%20want.Select%20HTTP%20install%20then%20for%20server%20type%3A%20mirror.centos.orgFor%20path%20type%3A%20centos%2F5." rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://mclear.co.uk/2009/10/26/centos-netinstall-5-4-iso-installation/&amp;imageurl=" rel="nofollow" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://mclear.co.uk/2009/10/26/centos-netinstall-5-4-iso-installation/&amp;title=CentOS+Netinstall+5.4+ISO+installation" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://mclear.co.uk/2009/10/26/centos-netinstall-5-4-iso-installation/&amp;title=CentOS+Netinstall+5.4+ISO+installation" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=CentOS+Netinstall+5.4+ISO+installation+-+http://b2l.me/nhc2k&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<div class="yjl_settings" style="display:none;"><span class="yjl_com_paging"></span><span class="yjl_comPerPage"></span><span class="yjl_numPerPage"></span><span class="yjl_pager_pos"></span><span class="yjl_rep_form"></span><span class="yjl_ajax_posting"></span><span class="path">http://mclear.primaryblogger.co.uk/wp-content/plugins/wp-comment-master/ajax-loader.gif</span></div>

<p>Related posts:<ol><li><a href='http://mclear.co.uk/2009/10/26/installing-shibboleth-sp-2-on-centos-to-the-ukfederation-w-godaddy-certs/' rel='bookmark' title='Permanent Link: Installing Shibboleth SP 2 on CentOS to the ukfederation w/ Godaddy certs'>Installing Shibboleth SP 2 on CentOS to the ukfederation w/ Godaddy certs</a></li>
<li><a href='http://mclear.co.uk/2009/11/07/installing-shibboleth-sp-2-3-on-centos/' rel='bookmark' title='Permanent Link: Installing shibboleth SP 2.3 on CentOS'>Installing shibboleth SP 2.3 on CentOS</a></li>
<li><a href='http://mclear.co.uk/2010/03/09/etherpad-centos-installation/' rel='bookmark' title='Permanent Link: Etherpad CentOS installation'>Etherpad CentOS installation</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://mclear.co.uk/2009/10/26/centos-netinstall-5-4-iso-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
