<?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>Raskas' blog &#187; Fedora</title>
	<atom:link href="http://www.raskas.be/blog/category/fedora/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.raskas.be/blog</link>
	<description>Everything is possible... You only have to find out how.</description>
	<lastBuildDate>Sat, 05 Dec 2009 14:18:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ubuntu Intrepid Ibex</title>
		<link>http://www.raskas.be/blog/2008/11/07/ubuntu-intrepid-ibex/</link>
		<comments>http://www.raskas.be/blog/2008/11/07/ubuntu-intrepid-ibex/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 15:44:00 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[lightning]]></category>
		<category><![CDATA[lvm]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/?p=86</guid>
		<description><![CDATA[Last week a new version was released of Ubuntu, 8.10 aka Intrepid Ibex. It&#8217;s already installed on my laptop and it&#8217;s looking nice!
The installer still doesn&#8217;t support LVM. To be able to install Ubuntu on my LVM partitions I had to follow the steps described in one of my previous posts.
Previously I installed the i386 [...]]]></description>
			<content:encoded><![CDATA[<p>Last week a new version was released of Ubuntu, 8.10 aka Intrepid Ibex. It&#8217;s already installed on my laptop and it&#8217;s looking nice!</p>
<p>The installer still doesn&#8217;t support LVM. To be able to install Ubuntu on my LVM partitions I had to follow <a href="http://www.raskas.be/blog/2008/07/18/installing-ubuntu/" target="_blank">the steps described in one of my previous posts</a>.</p>
<p>Previously I installed the i386 bit version of distributions on my laptop although it is a x86_64 system. But this time I went for the amd64 version.</p>
<p>You can check if you really have a 64bit processor by checking if there is a &#8220;lm&#8221; flag for your processor: <code><br />
$ cat /proc/cpuinfo | grep lm </code></p>
<p>Using the 64bit version gave some problems, but they are all fixed now:</p>
<p><strong>thunderbird-lightning</strong></p>
<p>The lightning plugin you can download from the add-ons site of thunderbird is the i386 version which doesn&#8217;t work with a x86_64 thunderbird. Ubuntu provides a lightning package but this contains some old version. Luckily you can find the x86_64 xpi here: http://releases.mozilla.org/pub/mozilla.org/calendar/lightning/releases/0.9/contrib/linux-x86_64/</p>
<p><strong>sun javaws</strong></p>
<p>The sun javaws isn&#8217;t available for x86_64. The openJDK version is available but not all java applications work with that Java WebStart. You can manually install the i386 version of sun-java6-bin: <code><br />
sudo apt-get install ia32-sun-java6-bin</code><br />
You can now find the working javaws in following directory: /usr/lib/jvm/ia32-java-6-sun-1.6.0.10/bin/javaws</p>
<p>BTW &#8230; Fedora 10 will be released in 18 days</p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2008/11/07/ubuntu-intrepid-ibex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Ubuntu</title>
		<link>http://www.raskas.be/blog/2008/07/18/installing-ubuntu/</link>
		<comments>http://www.raskas.be/blog/2008/07/18/installing-ubuntu/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 19:44:15 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux SysAdmin]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[lvm]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/?p=84</guid>
		<description><![CDATA[This week I reinstalled one of my Fedora machines with an Ubuntu 8.04. Not that I don&#8217;t like Fedora anymore but just because I want something new.
One of the big annoyancies I noticed during the installation was that it didn&#8217;t recognize my lvm partitions. And I really need that, as my home and root partition [...]]]></description>
			<content:encoded><![CDATA[<p>This week I reinstalled one of my Fedora machines with an Ubuntu 8.04. Not that I don&#8217;t like Fedora anymore but just because I want something new.</p>
<p>One of the big annoyancies I noticed during the installation was that it didn&#8217;t recognize my lvm partitions. And I really need that, as my home and root partition are on lvm and I didn&#8217;t want to repartition my complete drive.</p>
<p>Luckily I found some explanation for lvm support during the installation. This is the summary of the actions you need to perform.</p>
<p>Become the root user:<br />
<strong>ubuntu@ubuntu:~$ sudo -i</strong></p>
<p>Load the dm-mod module:<strong><br />
root@ubuntu:~# modprobe dm-mod</strong></p>
<p>Install the lvm2 package on the live system:<strong><br />
root@ubuntu:~# apt-get install lvm2</strong></p>
<p>Activate the logical volumes of your volumegroup<strong><br />
root@ubuntu:~# lvchange -a y &lt;volgroup name&gt;</strong></p>
<p>At this moment you can perform a normal installation, your existing logical volumes will be recognized and can be used during installation.<br />
After the complete installation process you have to install lvm support for you new installation.</p>
<p>Mount the partitions of your new installation:<br />
<strong>root@ubuntu:~# mount /dev/volgroup/root /mnt</strong><br />
<strong>root@ubuntu:~# mount /dev/sda1 /mnt/boot<br />
</strong><strong>root@ubuntu:~# mount -o bind /dev /mnt/dev</strong></p>
<p>Chroot into your new installation:<br />
<strong>root@ubuntu:~# chroot /mnt</strong></p>
<p>Install the lvm2 package:<br />
<strong>root@ubuntu:~# apt-get install lvm2</strong></p>
<p>You can now exit your chroot environment and reboot your machine. If everything is OK, you can boot your fresh ubuntu installation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2008/07/18/installing-ubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Shell History Meme</title>
		<link>http://www.raskas.be/blog/2008/04/10/shell-history-meme/</link>
		<comments>http://www.raskas.be/blog/2008/04/10/shell-history-meme/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 07:28:14 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux SysAdmin]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[top 10]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/?p=82</guid>
		<description><![CDATA[There is a Shell history meme going on on planet Fedora; Let&#8217;s join.
[johan@laptop ~]$ history&#124;awk &#39;{a[$2]++ } END{for(i in a){print a[i] &#34; &#34; i}}&#39;&#124;sort -nr&#124;head
201 ls
108 ssh
108 cd
98 sh
81 su
29 vi
24 rpm
24 ping
23 rm
20 mv
[johan@workstation ~]$ history&#124;awk &#39;{a[$2]++ } END{for(i in a){print a[i] &#34; &#34; i}}&#39;&#124;sort -nr&#124;head
149 ls
128 cd
125 cvs
93 diff
71 echo
54 ssh
45 for
28 mkdir
26 [...]]]></description>
			<content:encoded><![CDATA[<p>There is a Shell history meme going on on <a href="http://planet.fedoraproject.org/" target="_blank">planet Fedora</a>; Let&#8217;s join.</p>
<p>[johan@laptop ~]$ history|awk &#39;{a[$2]++ } END{for(i in a){print a[i] &#34; &#34; i}}&#39;|sort -nr|head<br />
201 ls<br />
108 ssh<br />
108 cd<br />
98 sh<br />
81 su<br />
29 vi<br />
24 rpm<br />
24 ping<br />
23 rm<br />
20 mv</p>
<p>[johan@workstation ~]$ history|awk &#39;{a[$2]++ } END{for(i in a){print a[i] &#34; &#34; i}}&#39;|sort -nr|head<br />
149 ls<br />
128 cd<br />
125 cvs<br />
93 diff<br />
71 echo<br />
54 ssh<br />
45 for<br />
28 mkdir<br />
26 md5sum<br />
24 reset</p>
<p>My previous post of my <a href="http://www.raskas.be/blog/2006/09/25/top-10-used-commands/" target="_blank">Top 10 used commands</a> was more than 1 year ago.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2008/04/10/shell-history-meme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora upgrade</title>
		<link>http://www.raskas.be/blog/2008/04/07/fedora-upgrade/</link>
		<comments>http://www.raskas.be/blog/2008/04/07/fedora-upgrade/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 15:50:19 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/?p=80</guid>
		<description><![CDATA[Fedora 9 will be released this month, this means that Fedora 7 will be end-of-live within 2 months (1 month after the release of Fedora 9 to be exact).
As one of my desktops was still running Fedora 7 it was time to upgrade to the current stable Fedora, Fedora 8.
On the Fedora wiki you can [...]]]></description>
			<content:encoded><![CDATA[<p>Fedora 9 will be released this month, this means that Fedora 7 will be end-of-live within 2 months (1 month after the release of Fedora 9 to be exact).</p>
<p>As one of my desktops was still running Fedora 7 it was time to upgrade to the current stable Fedora, Fedora 8.</p>
<p>On the Fedora wiki you can find a list of instructions to upgrade your machine using yum. It will list the general actions but also the execptions for each upgrade.<br />
You can find these instructions here: <a href="http://fedoraproject.org/wiki/YumUpgradeFaq" target="_blank">http://fedoraproject.org/wiki/YumUpgradeFaq</a></p>
<p>The upgrade went very smooth, but isn&#8217;t recommended for non-technical users as it all happens on the command line.<br />
For those non-technical users a graphical user interface which guides you through the complete process would be very handy (Ubuntu has it already, don&#8217;t know if it is available in Fedora 8/9).<br />
I prefer the upgrade with yum as I want to know what my machine is doing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2008/04/07/fedora-upgrade/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firefox 3 beta on Fedora 9 alpha</title>
		<link>http://www.raskas.be/blog/2008/02/29/firefox-3-beta-on-fedora-9-alpha/</link>
		<comments>http://www.raskas.be/blog/2008/02/29/firefox-3-beta-on-fedora-9-alpha/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 16:44:02 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[Fedora]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/2008/02/29/firefox-3-beta-on-fedora-9-alpha/</guid>
		<description><![CDATA[I upgraded my laptop to Fedora 9 alpha some days after the release. You could see that it is an alpha release because several things weren&#8217;t going as smooth as they should go. But most of them got fixed when updating all packages regularly. Except for Firefox.
When I started Firefox for the first time everything [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://fedoraproject.org/wiki/Artwork/PromoBanners?action=AttachFile&amp;do=get&amp;target=fedora9alpha-banner2_mo.png" alt="Fedora 9 alpha" align="right" height="100" width="200" />I upgraded my laptop to Fedora 9 alpha some days after the release. You could see that it is an alpha release because several things weren&#8217;t going as smooth as they should go. But most of them got fixed when updating all packages regularly. Except for Firefox.</p>
<p>When I started Firefox for the first time everything looked extreme big (user interface and content). This was caused by a bad autodetected dpi setting. Manually changing it to 96dpi solved the problem.<br />
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=394103" target="_blank">Bug 394103</a> in the mozilla bugzilla describes the problem and how you can solve it.</p>
<p>Some time later, when I upgraded some packages (including Firefox), i had a problem with the address bar. I could enter the url but pressing enter won&#8217;t bring me to the website. Pressing the green arrow on the right side of the url did.<br />
Some upgrades later it still wasn&#8217;t fixed, it was even worse. Entering some text in the address bar was impossible and thus making Firefox useless. It was time to find the cause and solve the issue.</p>
<p>Removing and reinstalling the Firefox package didn&#8217;t solve it, but it showed there were some problems with xulrunner, a dependency of Firefox. The xulrunner rpm never got installed correctly, it gave following errors during rpm installation:</p>
<pre>
Error unpacking rpm package xulrunner-1.9-0.beta3.29.nightly20080227.fc9.i386
error: unpacking of archive failed on file /usr/lib/xulrunner-1.9pre/dictionaries: cpio: rename</pre>
<p>Searching the Fedora bugzilla for this problem pointed me to <a href="https://bugzilla.redhat.com/show_bug.cgi?id=433096" target="_blank">bug 433096</a> which handles this problem. As explained in one of the comments removing and reinstalling xulrunner rpm solved the problem.</p>
<p>I can now enjoy again from my Fedora 9 alpha with Firefox 3 beta!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2008/02/29/firefox-3-beta-on-fedora-9-alpha/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bluetooth on Fedora 8</title>
		<link>http://www.raskas.be/blog/2007/11/14/bluetooth-on-fedora-8/</link>
		<comments>http://www.raskas.be/blog/2007/11/14/bluetooth-on-fedora-8/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 18:52:31 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[Fedora]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/2007/11/14/bluetooth-on-fedora-8/</guid>
		<description><![CDATA[A couple of days ago, Dag wrote how you can browse your mobile phone with CentOS.
I&#8217;ve recently installed the new Fedora 8, so it is time to check how you can browse you mobile phone with F8.
If you bluetooth adapter is recognized you will see the icon of the &#8220;Bluetooth Applet&#8221;. Right click on it [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of days ago, <a href="http://dag.wieers.com/blog/content/obex-for-dummies" target="_blank">Dag</a> wrote how you can browse your mobile phone with CentOS.</p>
<p>I&#8217;ve recently installed the new Fedora 8, so it is time to check how you can browse you mobile phone with F8.</p>
<p>If you bluetooth adapter is recognized you will see the icon of the &#8220;Bluetooth Applet&#8221;. Right click on it and you will find the <strong>Browse Device&#8230;</strong> entry. Any bluetooth device in your neighborhood will be listed, choose your phone and <strong>connect</strong> with it. After pairing (= exchanging passwords for the first time) a Nautilus window  will open with the content of your phone.</p>
<p>It is just that easy&#8230; That&#8217;s really something different than <a href="http://www.raskas.be/blog/2006/05/01/bluetooth-on-fedora/" target="_blank">a couple of fedora releases ago</a>.</p>
<p>Thumbs up for the Fedora 8 team!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2007/11/14/bluetooth-on-fedora-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beryl and Java apps</title>
		<link>http://www.raskas.be/blog/2007/05/28/beryl-and-java-apps/</link>
		<comments>http://www.raskas.be/blog/2007/05/28/beryl-and-java-apps/#comments</comments>
		<pubDate>Mon, 28 May 2007 10:22:05 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Xen]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/2007/05/28/beryl-and-java-apps/</guid>
		<description><![CDATA[While using Beryl as my default window manager, I noticed that some java applications didn&#8217;t work correctly, for example the XenServer Client.
The application started correctly but I only saw a gray screen.
Whenever my Metacity window manager (that&#8217;s the one of gnome) was active, instead of Beryl, the application works as it was meant to be.
This [...]]]></description>
			<content:encoded><![CDATA[<p>While using Beryl as my default window manager, I noticed that some java applications didn&#8217;t work correctly, for example the XenServer Client.<br />
The application started correctly but I only saw a gray screen.<br />
Whenever my Metacity window manager (that&#8217;s the one of gnome) was active, instead of Beryl, the application works as it was meant to be.</p>
<p>This problem is explained in the <a href="http://wiki.beryl-project.org/wiki/Java">beryl wiki</a>.<br />
The solution is also mentioned there.</p>
<p>Because I&#8217;m using java 5 (1.5.0u11 from Sun) the fix is very simple.<br />
I added following line at the end of <strong>/etc/bashrc</strong>.</p>
<p><code>export AWT_TOOLKIT=MToolkit</code></p>
<p>After restarting the X server the java applications works without any problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2007/05/28/beryl-and-java-apps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Less than minimal</title>
		<link>http://www.raskas.be/blog/2007/03/07/less-than-minimal/</link>
		<comments>http://www.raskas.be/blog/2007/03/07/less-than-minimal/#comments</comments>
		<pubDate>Wed, 07 Mar 2007 18:01:33 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux SysAdmin]]></category>
		<category><![CDATA[Xen]]></category>
		<category><![CDATA[kickstart]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/2007/03/07/less-than-minimal/</guid>
		<description><![CDATA[Last week I updated my CentOS base image document.
One important change was in the yum line.
Previously it would do a groupinstall of Base, which results in a total of 300 packages. This is the same amount of packages when it is installed from cd and minimal install is checked.
But this minimal install includes way to [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I updated my <a href="http://www.raskas.be/blog/howtos/centos-base-image/">CentOS base image</a> document.<br />
One important change was in the yum line.</p>
<p>Previously it would do a groupinstall of <b>Base</b>, which results in a total of 300 packages. This is the same amount of packages when it is installed from cd and minimal install is checked.<br />
But this minimal install includes way to much and useless packages like pcmcia, irda, isdn, &#8230;<br />
The groupinstall of <b>Core</b> gives a better result. Now only a bit more than 100 packages are installed. Even yum or openssh aren&#8217;t installed. So you will have to add some extra packages but at least you&#8217;re not stuck with all those unused packages and running services.</p>
<p>The same happens when you kickstart. By default it will install the base and core groups. But again this results in 300 packages. Just mentioning core or not mentioning base in the packages section doesn&#8217;t solve the problem.<br />
Luckily there is an, undocumented, option for the packages section. You can pass &#8211;nobase if you don&#8217;t want to install the complete Base group. But now you will have to mention the Core group or it will install not enough packages.<br />
This is how your packages section in the kickstart file can look like:<br />
<code><br />
% packages --nobase<br />
@ Core<br />
yum<br />
openssh-clients<br />
openssh-server<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2007/03/07/less-than-minimal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Perl Binary</title>
		<link>http://www.raskas.be/blog/2006/11/30/perl-binary/</link>
		<comments>http://www.raskas.be/blog/2006/11/30/perl-binary/#comments</comments>
		<pubDate>Thu, 30 Nov 2006 15:07:19 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux SysAdmin]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/2006/11/30/perl-binary/</guid>
		<description><![CDATA[For a special task I needed to run a perl script on a specific machine, the problem was&#8230; there is no perl on that system.
This can be easily solved with the compilation of the perl script.
Fred tested the perl compilation with perlcc together with me. He has summarized the results in his “perl binary”-blog post. [...]]]></description>
			<content:encoded><![CDATA[<p>For a special task I needed to run a perl script on a specific machine, the problem was&#8230; there is no perl on that system.<br />
This can be easily solved with the compilation of the perl script.</p>
<p><a href="http://www.lefred.be/blog/">Fred</a> tested the perl compilation with perlcc together with me. He has summarized the results in his <a href="http://www.lefred.be/blog/index.php?2006/11/29/40-perl-binary">“perl binary”-blog post</a>. At the end he added the pp (Perl Packager) which also compiles perl scripts.</p>
<p>I tested this and at the first sight it worked fine, but at second sight some strange things happened.</p>
<p>The binary I created on my machine (Fedora Core 6) worked fine on my machine but gave a “Floating point exception” on any other machine. When I tested it on an other FC 6 it worked without any problems.<br />
When the binary is created on an other machine it worked on all machines, including mine. I repeated this test with different machines (CentOs, Debian, Suse) and those worked fine. They also worked on the system without perl. </p>
<p>When comparing the binaries compiled on the different system I noticed that libresolv.so.2 shows up in the output of “ldd” only with the FC6 binaries.<br />
When creating a <a href='http://www.raskas.be/blog/wp-content/uploads/2007/08/pp-chart.pdf' title='chart displaying pp compatibility'>chart</a> of all systems with the check result, I added the glibc version of the system. It appeared that the version differs on the systems. On FC it was a newer version (2.5) then the other hosts (2.3).</p>
<p>I added glibc in my search query on google and I found following warnings on <a href="http://search.cpan.org/~smueller/PAR-0.960/lib/PAR/Tutorial.pod">cpan.org</a>:</p>
<pre>
Linux and other libc-based platforms
* Try to avoid running pp on a bleeding-edge version of the OS
* Older versions with an earlier libc won't work with new ones
</pre>
<p>This means that perl compilation with pp with the bleading edge version of glibc (2.5) may not work on other systems. If you compile it on a system with a more stable version of glibc, it will work on all systems. (or at least on the systems with the same glibc).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2006/11/30/perl-binary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora Core 6 &#8230; released!</title>
		<link>http://www.raskas.be/blog/2006/10/24/fedora-core-6-released/</link>
		<comments>http://www.raskas.be/blog/2006/10/24/fedora-core-6-released/#comments</comments>
		<pubDate>Tue, 24 Oct 2006 13:40:16 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[Fedora]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/2006/10/24/fedora-core-6-released/</guid>
		<description><![CDATA[After several delays, Fedora Core 6 is released and can be downloaded from the redhat downloadpage. I expect the mirrors will be opened within several minutes. 
btw: it&#8217;s now 20 minutes before the official release which is planned at 14:00 GMT
]]></description>
			<content:encoded><![CDATA[<p>After several delays, Fedora Core 6 is released and can be downloaded from the <a href="http://redhat.download.fedoraproject.org/pub/fedora/linux/core/6/i386/iso/">redhat downloadpage</a>. I expect the mirrors will be opened within several minutes. </p>
<p>btw: it&#8217;s now 20 minutes before the official release which is planned at 14:00 GMT</p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2006/10/24/fedora-core-6-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
