<?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>Pario TechnoBlob &#187; rhel5</title>
	<atom:link href="http://pario.no/tag/rhel5/feed/" rel="self" type="application/rss+xml" />
	<link>http://pario.no</link>
	<description>A cronological documentation test project, nothing serious, really!</description>
	<lastBuildDate>Thu, 02 Feb 2012 13:17:58 +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>Replace RPMforge packages with Redhats own on a RHEL5 system</title>
		<link>http://pario.no/2009/05/25/replace-rpmforge-packages-with-redhats-own-on-a-rhel5-system/</link>
		<comments>http://pario.no/2009/05/25/replace-rpmforge-packages-with-redhats-own-on-a-rhel5-system/#comments</comments>
		<pubDate>Mon, 25 May 2009 09:19:30 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[RHEL4]]></category>
		<category><![CDATA[rhel5]]></category>
		<category><![CDATA[rpmforge]]></category>

		<guid isPermaLink="false">http://pario.no/?p=1096</guid>
		<description><![CDATA[This post came to life after experiencing some upgrade problems with missing dependencies and RPM packages from RPMforge and Redhat Enterprise Linux Client release 5. The prosess to remove or replace the packages was to remove RPMforge as a package repository and replace the blocking packages with Redhats own packages. The process of replacing RPMforge [...]]]></description>
			<content:encoded><![CDATA[<p>This post came to life after experiencing some upgrade problems with missing dependencies and RPM packages from RPMforge and Redhat Enterprise Linux Client release 5. The prosess to remove or replace the packages was to remove RPMforge as a package repository and replace the blocking packages with Redhats own packages.</p>
<p><strong>The process of replacing RPMforge packages with Redhats own packages</strong><br />
First we remove rpmforge as package repository</p>
<pre>
rpm -e rpmforge</pre>
<p>This command removes the <strong>/etc/yum.repos.d/rpmforge.repo</strong> file.</p>
<p>Then we list all packages installed from the RPMforge repository to get an overview of the packages causing problems on the system.</p>
<pre>
rpm -qa --queryformat %{NAME}-%{VERSION}-%{ARCH}-%{RELEASE}\\n|sort|grep el5.rf</pre>
<p>The result</p>
<pre>
dnsmasq-2.47-x86_64-1.el5.rf
libsndfile-1.0.17-x86_64-1.el5.rf
lftp-3.7.12-x86_64-1.el5.rf
...</pre>
<p>The <strong>rf</strong> ending tells you that these packages are RPMforge packages. This command also tells you if it is 32bit (i386) or 64bit  (x86_64) packages. I&#8217;ve described the prosess of removing 32- and 64bits packages in a earlier post named <a href"=http://pario.no/2007/11/23/remove-duplicate-packages-when-querying-the-rpm-database/">Remove duplicate packages when querying the rpm database</a>.</p>
<p>Howto remove 64bit packages</p>
<pre>
yum remove libsndfile.x86_64</pre>
<p>Next we will download the packages we want to replace, in my case dnsmasq</p>
<p><strong>On a RHEL5 system</strong></p>
<pre>
yumdownloader dnsmasq</pre>
<p>If you don&#8217;t have yumdownloader in your system you have to install the <strong>yum-utils</strong> package.</p>
<p><strong>On a RHEL4 system</strong></p>
<pre>
up2date -d dnsmasq</pre>
<p>Then we replace the RPMforge RPM package with Redhats own package</p>
<pre>
# rpm -Uvh --replacepkgs --oldpackage dnsmasq-2.45-1.el5_2.1.x86_64.rpm
Preparing...                ########################################### [100%]
   1:dnsmasq                ########################################### [100%]</pre>
<p>If you don&#8217;t use the <strong>&#8211;oldpackage</strong> option you might get an error message like this</p>
<pre>
package dnsmasq-2.47-1.el5.rf.x86_64 (which is newer than dnsmasq-2.45-1.el5_2.1.x86_64) is already installed</pre>
<p>I continued removing RPMForge packages until yum managed to resolve any unresolved dependencies.</p>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDkvMDUvMjUvcmVwbGFjZS1ycG1mb3JnZS1wYWNrYWdlcy13aXRoLXJlZGhhdHMtb3duLW9uLWEtcmhlbDUtc3lzdGVtLzx3cHRiPlJlcGxhY2UgUlBNZm9yZ2UgcGFja2FnZXMgd2l0aCBSZWRoYXRzIG93biBvbiBhIFJIRUw1IHN5c3RlbTx3cHRiPmh0dHA6Ly9wYXJpby5ubzx3cHRiPlBhcmlvIFRlY2hub0Jsb2I%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2009/05/25/replace-rpmforge-packages-with-redhats-own-on-a-rhel5-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Force a user to change password upon first login</title>
		<link>http://pario.no/2008/12/23/force-a-user-to-change-password-upon-first-login/</link>
		<comments>http://pario.no/2008/12/23/force-a-user-to-change-password-upon-first-login/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 08:31:16 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[rhel5]]></category>

		<guid isPermaLink="false">http://pario.no/?p=845</guid>
		<description><![CDATA[This is how you can force a Redhat user to change his password upon first login on a Redhat 5 installation. This might work on other versions and distributions&#8230; First lock the account to prevent the user from logging in until the change has been made # usermod -L &#60;username&#62; Change the password expiration date [...]]]></description>
			<content:encoded><![CDATA[<p>This is how you can force a Redhat user to change his password upon first login on a Redhat 5 installation. This might work on other versions and distributions&#8230;</p>
<ol>
<li>First lock the account to prevent the user from logging in until the change has been made
</li>
<pre>
# usermod -L &lt;username&gt;</pre>
<li>Change the password expiration date to 0 to ensure the user changes the password during the next login attempt
</li>
<pre>
# chage -d 0 &lt;username&gt;</pre>
<li>To unlock the account after the change do the following:</li>
<pre>
# usermod -U &lt;username&gt;</pre>
</ol>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDgvMTIvMjMvZm9yY2UtYS11c2VyLXRvLWNoYW5nZS1wYXNzd29yZC11cG9uLWZpcnN0LWxvZ2luLzx3cHRiPkZvcmNlIGEgdXNlciB0byBjaGFuZ2UgcGFzc3dvcmQgdXBvbiBmaXJzdCBsb2dpbjx3cHRiPmh0dHA6Ly9wYXJpby5ubzx3cHRiPlBhcmlvIFRlY2hub0Jsb2I%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2008/12/23/force-a-user-to-change-password-upon-first-login/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redhat documentation in one place</title>
		<link>http://pario.no/2008/09/18/redhat-documentation-in-one-place/</link>
		<comments>http://pario.no/2008/09/18/redhat-documentation-in-one-place/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 11:57:16 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[rhel5]]></category>

		<guid isPermaLink="false">http://pario.no/?p=654</guid>
		<description><![CDATA[http://www.redhat.com/docs/manuals/enterprise/ is a documentation page I always return to when I manage Redhat Enterprise Linux systems. Redhat has put a lot of effort in their documentation and even allow you to download them as PDF documents. The documentation below is for RHEL5.2 Deployment Guide May 21, 2008 PDF Installation Guide May 21, 2008 PDF Virtualization [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.redhat.com/docs/manuals/enterprise/">http://www.redhat.com/docs/manuals/enterprise/</a> is a documentation page I always return to when I manage Redhat Enterprise Linux systems. </p>
<p>Redhat has put a lot of effort in their documentation and even allow you to download them as PDF documents.</p>
<p>The documentation below is for RHEL5.2</p>
<table>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Deployment_Guide/index.html">Deployment Guide</a></td>
<td >May 21, 2008</td>
<td ><a class="pdf" title="Download PDF" href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Deployment_Guide/Deployment_Guide.pdf"><acronym title="portable document format">PDF</acronym></a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Installation_Guide/index.html">Installation Guide</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Installation_Guide/Installation_Guide.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Virtualization/index.html">Virtualization Guide</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Virtualization/Virtualization.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Cluster_Suite_Overview/index.html">Cluster Suite Overview</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Cluster_Suite_Overview/Cluster_Suite_Overview.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Cluster_Administration/index.html">Cluster Administration</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Cluster_Administration/Cluster_Administration.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Cluster_Logical_Volume_Manager/index.html">LVM Administrator&#8217;s Guide</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Cluster_Logical_Volume_Manager/Cluster_Logical_Volume_Manager.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Global_File_System/index.html">Global File System</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Global_File_System/Global_File_System.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Global_Network_Block_Device/index.html">Using GNBD with GFS</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Global_Network_Block_Device/Global_Network_Block_Device.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Virtual_Server_Administration/index.html">Linux Virtual Server Administration</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Virtual_Server_Administration/Virtual_Server_Administration.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/DM_Multipath/index.html">Using Device-Mapper Multipath</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/DM_Multipath/DM_Multipath.pdf">PDF</a></td>
</tr>
<tr>
<td ><!--a href="RHEL-5-manual/en-US/RHEL510/DM_Multipath/index.html"-->Tuning and Optimizing Red Hat Enterprise Linux for Oracle 9i and 10g Databases<!--/a--></td>
<td class="date">Nov 2007</td>
<td class="download"><a href="http://www.redhat.com/docs/manuals/enterprise/RHELTuningandOptimizationforOracleV11.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Online_Storage_Reconfiguration_Guide/index.html">Online  Storage Reconfiguration Guide (Beta)</a></td>
<td >July 2, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Online_Storage_Reconfiguration_Guide/Online_Storage_Reconfiguration_Guide.pdf">PDF</a></td>
</tr>
</table>
<p>These documents is a great resource if you plan to become a RHCT or RHCE.</p>
<script type="text/javascript">var wordpress_toolbar_urls = ["http:\/\/www.redhat.com\/docs\/manuals\/enterprise\/","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Deployment_Guide\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Deployment_Guide\/Deployment_Guide.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Installation_Guide\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Installation_Guide\/Installation_Guide.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Virtualization\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Virtualization\/Virtualization.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Cluster_Suite_Overview\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Cluster_Suite_Overview\/Cluster_Suite_Overview.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Cluster_Administration\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Cluster_Administration\/Cluster_Administration.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Cluster_Logical_Volume_Manager\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Cluster_Logical_Volume_Manager\/Cluster_Logical_Volume_Manager.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Global_File_System\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Global_File_System\/Global_File_System.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Global_Network_Block_Device\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Global_Network_Block_Device\/Global_Network_Block_Device.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Virtual_Server_Administration\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Virtual_Server_Administration\/Virtual_Server_Administration.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/DM_Multipath\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/DM_Multipath\/DM_Multipath.pdf","http:\/\/www.redhat.com\/docs\/manuals\/enterprise\/RHELTuningandOptimizationforOracleV11.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Online_Storage_Reconfiguration_Guide\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Online_Storage_Reconfiguration_Guide\/Online_Storage_Reconfiguration_Guide.pdf"];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDgvMDkvMTgvcmVkaGF0LWRvY3VtZW50YXRpb24taW4tb25lLXBsYWNlLzx3cHRiPlJlZGhhdCBkb2N1bWVudGF0aW9uIGluIG9uZSBwbGFjZTx3cHRiPmh0dHA6Ly9wYXJpby5ubzx3cHRiPlBhcmlvIFRlY2hub0Jsb2I%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2008/09/18/redhat-documentation-in-one-place/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert unix timestamp to date</title>
		<link>http://pario.no/2008/09/13/convert-unix-timestamp-to-date/</link>
		<comments>http://pario.no/2008/09/13/convert-unix-timestamp-to-date/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 10:57:38 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[RHEL4]]></category>
		<category><![CDATA[rhel5]]></category>

		<guid isPermaLink="false">http://pario.no/?p=622</guid>
		<description><![CDATA[# date -d @1221256800 "+%Y-%m-%d %T" 2008-09-13 00:00:00 Convert a date (YYYYMMDD) to unix timestamp # date -d "20080913" +%s 1221256800]]></description>
			<content:encoded><![CDATA[<pre>
# date -d @1221256800 "+%Y-%m-%d %T"
2008-09-13 00:00:00
</pre>
<h2>Convert a date (YYYYMMDD) to unix timestamp</h2>
<pre>
# date -d "20080913" +%s
1221256800
</pre>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDgvMDkvMTMvY29udmVydC11bml4LXRpbWVzdGFtcC10by1kYXRlLzx3cHRiPkNvbnZlcnQgdW5peCB0aW1lc3RhbXAgdG8gZGF0ZTx3cHRiPmh0dHA6Ly9wYXJpby5ubzx3cHRiPlBhcmlvIFRlY2hub0Jsb2I%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2008/09/13/convert-unix-timestamp-to-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable IPv6 on Redhat RHEL5</title>
		<link>http://pario.no/2008/09/09/disable-ipv6-on-redhat-rhel5/</link>
		<comments>http://pario.no/2008/09/09/disable-ipv6-on-redhat-rhel5/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 14:08:35 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[ip6tables]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[rhel5]]></category>
		<category><![CDATA[rhel6]]></category>

		<guid isPermaLink="false">http://pario.no/?p=626</guid>
		<description><![CDATA[This post describes how to disable IPv6 on a Redhat (RHEL5) installation. I haven&#8217;t had the time to test it on other version of Redhat. Edit /etc/sysconfig/network and change NETWORKING_IPV6=no Edit /etc/modprobe.conf and add these lines alias net-pf-10 off alias ipv6 off Stop the ipv6tables service # service ip6tables stop Disable the ipv6tables service # [...]]]></description>
			<content:encoded><![CDATA[<p>This post describes how to disable IPv6 on a Redhat (RHEL5) installation. I haven&#8217;t had the time to test it on other version of Redhat.</p>
<p>Edit <b>/etc/sysconfig/network</b> and change</p>
<pre>
NETWORKING_IPV6=no</pre>
<p>Edit <b>/etc/modprobe.conf</b> and add these lines</p>
<pre>
alias net-pf-10 off
alias ipv6 off</pre>
<p>Stop the ipv6tables service</p>
<pre>
# service ip6tables stop</pre>
<p>Disable the ipv6tables service</p>
<pre>
# chkconfig ip6tables off</pre>
<p>IPv6 will be disabled after the next reboot.</p>
<p><strong>Edit</strong><br />
This also works on RHEL6/CentOS6</p>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDgvMDkvMDkvZGlzYWJsZS1pcHY2LW9uLXJlZGhhdC1yaGVsNS88d3B0Yj5EaXNhYmxlIElQdjYgb24gUmVkaGF0IFJIRUw1PHdwdGI%2BaHR0cDovL3BhcmlvLm5vPHdwdGI%2BUGFyaW8gVGVjaG5vQmxvYg%3D%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2008/09/09/disable-ipv6-on-redhat-rhel5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

