<?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</title>
	<atom:link href="http://www.raskas.be/blog/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>Adding Local Folders in Thunderbird</title>
		<link>http://www.raskas.be/blog/2009/12/05/adding-local-folders-in-thunderbird/</link>
		<comments>http://www.raskas.be/blog/2009/12/05/adding-local-folders-in-thunderbird/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 14:18:39 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/?p=107</guid>
		<description><![CDATA[Thunderbird has something called &#8220;Local Folders&#8221;.
What Local Folders are is described here: http://kb.mozillazine.org/Local_Folders
This webpage however doesn&#8217;t explain how to add an extra set of Local Folders.
This is how you can create them.
Open prefs.js with your favorite editor. This file is located inside the profile directory in you thunderbird hidden directory.
Don&#8217;t change this file when thunderbird [...]]]></description>
			<content:encoded><![CDATA[<p>Thunderbird has something called &#8220;Local Folders&#8221;.<br />
What Local Folders are is described here: <a href="http://kb.mozillazine.org/Local_Folders">http://kb.mozillazine.org/Local_Folders</a></p>
<p>This webpage however doesn&#8217;t explain how to add an extra set of Local Folders.<br />
This is how you can create them.</p>
<p>Open <strong>prefs.js</strong> with your favorite editor. This file is located inside the profile directory in you thunderbird hidden directory.<br />
<em>Don&#8217;t change this file when thunderbird is running.<br />
the serverX and accountX must be unique and could be different on your system</em></p>
<p>Search for the section defining the existing &#8220;Local Folders&#8221;, this looks something like this:<br />
<code>user_pref("mail.server.server3.directory", "/home/johan/.thunderbird/pd19vach.default/Mail/Local Folders");<br />
user_pref("mail.server.server3.directory-rel", "[ProfD]Mail/Local Folders");<br />
user_pref("mail.server.server3.hostname", "Local Folders");<br />
user_pref("mail.server.server3.name", "Local Folders");<br />
user_pref("mail.server.server3.type", "none");<br />
user_pref("mail.server.server3.userName", "nobody");<br />
</code></p>
<p>Copy those lines and edit them to your needs:<br />
<code>user_pref("mail.server.server4.directory", "/home/johan/.thunderbird/pd19vach.default/Mail/new_local_folders");<br />
user_pref("mail.server.server4.directory-rel", "[ProfD]Mail/new_local_folders");<br />
user_pref("mail.server.server4.hostname", "New Local Folders");<br />
user_pref("mail.server.server4.name", "New Local Folders");<br />
user_pref("mail.server.server4.type", "none");<br />
user_pref("mail.server.server4.userName", "nobody");<br />
</code></p>
<p>Also add following line:<br />
<code>user_pref("mail.account.account4.server", "server4");<br />
</code></p>
<p>And edit following line:<br />
<code>user_pref("mail.accountmanager.accounts", "account1,account2,account3,account4");<br />
</code></p>
<p>When the changes are made in the <strong>prefs.js</strong> you can create the new defined local folders. A subdirectory has to be created otherwise it won&#8217;t show up in Thunderbird.<br />
<code>mkdir /home/johan/.thunderbird/pd19vach.default/Mail/new_local_folders<br />
mkdir /home/johan/.thunderbird/pd19vach.default/Mail/new_local_folders/Inbox<br />
touch /home/johan/.thunderbird/pd19vach.default/Mail/new_local_folders/Inbox.msf<br />
</code></p>
<p>If everything goes well the new defined local folders directory appears when you open thunderbird.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2009/12/05/adding-local-folders-in-thunderbird/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apt-rpm dependency problem</title>
		<link>http://www.raskas.be/blog/2009/08/12/apt-rpm-dependency-problem/</link>
		<comments>http://www.raskas.be/blog/2009/08/12/apt-rpm-dependency-problem/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 15:30:08 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[Linux SysAdmin]]></category>
		<category><![CDATA[apt]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/?p=98</guid>
		<description><![CDATA[When installing some rpm&#8217;s on a CentOS5 system I encountered a dependency problem.
Apt told me that it depends on a specific file which isn&#8217;t provided by any package in the repository. After some investigation I noticed that the rpm WAS available in the repository, and that yum correctly found that package.
The problem was that the [...]]]></description>
			<content:encoded><![CDATA[<p>When installing some rpm&#8217;s on a CentOS5 system I encountered a dependency problem.</p>
<p>Apt told me that it depends on a specific file which isn&#8217;t provided by any package in the repository. After some investigation I noticed that the rpm WAS available in the repository, and that yum correctly found that package.</p>
<p>The problem was that the specific file needed by the package was a symlink provided by the other package. The symlink file is known by the rpm (rpm -ql /path/to/file gives the rpm) but isn&#8217;t know by apt.</p>
<p>Instead of running genbasedir with the location of the repository as only argument, add the &#8211;bloat argument.<br />
<code><br />
genbasedir --bloat /path/to/repository<br />
</code><br />
This will solve the problem!</p>
<p><br/></p>
<p>I noticed this problem during the installation of redhat-lsb on a very minimal CentOS5 system. redhat-lsb requires 2 files (which are symlinks), these files are provided by&#8230; redhat-lsb itselve&#8230;</p>
<p>If you didn&#8217;t use the &#8211;bloat argument the redhat-lsb package couldn&#8217;t be installed with apt, it could be installed with yum or rpm.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2009/08/12/apt-rpm-dependency-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mv inuits pinuits</title>
		<link>http://www.raskas.be/blog/2009/04/01/mv-inuits-pinuits/</link>
		<comments>http://www.raskas.be/blog/2009/04/01/mv-inuits-pinuits/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 11:00:34 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/?p=95</guid>
		<description><![CDATA[Today is announced that Inuits is rebranded to Pinuits.
This change happened to line up with other MySQL consultancy companies, but the P also points to strong focus on Puppet, aPache, Php, Perl, Python, druPal and many other Open-Source Tools.
More information can be found on: http://www.pinuits.be
]]></description>
			<content:encoded><![CDATA[<p>Today is announced that Inuits is rebranded to Pinuits.</p>
<p>This change happened to line up with other MySQL consultancy companies, but the P also points to strong focus on Puppet, aPache, Php, Perl, Python, druPal and many other Open-Source Tools.</p>
<p>More information can be found on: <a href="http://www.pinuits.be" target="_blank">http://www.pinuits.be</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2009/04/01/mv-inuits-pinuits/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>syslog-ng bug</title>
		<link>http://www.raskas.be/blog/2009/03/19/syslog-ng-bug/</link>
		<comments>http://www.raskas.be/blog/2009/03/19/syslog-ng-bug/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 11:49:57 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[Linux SysAdmin]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[syslog-ng]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/?p=91</guid>
		<description><![CDATA[Today I stumpled upon a syslog-ng bug.
We are using syslog-ng-2.1.3 on one of our machines which sends part of his messages over UDP to 2 syslog machines. On some days we noticed that syslog-ng and some other services are stopped. Restarting syslog-ng showed us that they were killed by the OOM-killer.
I directly suspected the java [...]]]></description>
			<content:encoded><![CDATA[<p>Today I stumpled upon a syslog-ng bug.</p>
<p>We are using syslog-ng-2.1.3 on one of our machines which sends part of his messages over UDP to 2 syslog machines. On some days we noticed that syslog-ng and some other services are stopped. Restarting syslog-ng showed us that they were killed by the OOM-killer.<br />
I directly suspected the java process that was also running on that machine.</p>
<p>After googling around I found this syslog-ng bug: <a href="https://bugzilla.balabit.com/show_bug.cgi?id=39" target="_blank">https://bugzilla.balabit.com/show_bug.cgi?id=39</a></p>
<p>And indeed, we had the same problem. This is how I could reproduce it:</p>
<ul>
<li>Stop the syslog service (on the host which receives the messages)</li>
<li>Restart syslog-ng</li>
<li>Watch the memory usage of syslog-ng growing until it starts swapping and triggers the OOM-killer</li>
</ul>
<p>Luckily this bug is already solved, and by upgrading to syslog-ng-2.1.4 the problem is fixed.</p>
<p>CentOS doesn&#8217;t provide the rpm packages of syslog-ng, <a href="http://www.silfreed.net/" target="_blank">silfreed.net</a> does: <a href="http://www.silfreed.net/download/repo/" target="_blank">http://www.silfreed.net/download/repo/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2009/03/19/syslog-ng-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Input/Output redirection, appending</title>
		<link>http://www.raskas.be/blog/2008/08/15/inputoutput-redirection-appending/</link>
		<comments>http://www.raskas.be/blog/2008/08/15/inputoutput-redirection-appending/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 13:58:18 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[Linux SysAdmin]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[bug]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/?p=85</guid>
		<description><![CDATA[In a previous post I wrote about output redirection of STDOUT, STDERR and both to a file. Off course you can do the same to append to an existing file:

ls &#62;&#62; output.txt
ls 2&#62;&#62; error.txt

If you try this with &#38;&#62;&#62; you will receive a bash syntax error:

ls &#38;&#62;&#62; output_and_error.txt
bash: syntax error near unexpected token `&#62;'

How come [...]]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://www.raskas.be/blog/2007/02/26/inputoutput-redirection/" target="_blank">a previous post</a> I wrote about output redirection of STDOUT, STDERR and both to a file. Off course you can do the same to append to an existing file:<br />
<code><br />
ls &gt;&gt; output.txt<br />
ls 2&gt;&gt; error.txt<br />
</code><br />
If you try this with &amp;&gt;&gt; you will receive a bash syntax error:<br />
<code><br />
ls &amp;&gt;&gt; output_and_error.txt<br />
bash: syntax error near unexpected token `&gt;'<br />
</code></p>
<p>How come appending of both STDOUT and STDERR to a file does not work this way? Is this a bug in bash?<br />
Yes, I know I can use the following, but I prefer the &amp;&gt;&gt;:<code><br />
ls 1>> output_and_error.txt 2>&#038;1<br />
</code></p>
<p>And how come I can&#8217;t find a bugzilla for bash?<br />
Yes, I know I can use the command bashbug to send a mail to a mailinglist, but this is not the same as bugzilla.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2008/08/15/inputoutput-redirection-appending/feed/</wfw:commentRss>
		<slash:comments>0</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>MySQL MYD and TMD files</title>
		<link>http://www.raskas.be/blog/2008/04/08/mysql-myd-and-tmd-files/</link>
		<comments>http://www.raskas.be/blog/2008/04/08/mysql-myd-and-tmd-files/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 12:32:27 +0000</pubDate>
		<dc:creator>Johan Huysmans</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[fsck]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.raskas.be/blog/?p=81</guid>
		<description><![CDATA[I just recovered from a database issue.
While running a mysqldump of my databases I received an error. Running a check on that specific database told me that the comments.MYD file was not found.
Investigating on the system showed me that due to an error the filesystem containing /var/lib/mysql was mounted read-only. Running a fsck on that [...]]]></description>
			<content:encoded><![CDATA[<p>I just recovered from a database issue.</p>
<p>While running a mysqldump of my databases I received an error. Running a check on that specific database told me that the comments.MYD file was not found.</p>
<p>Investigating on the system showed me that due to an error the filesystem containing /var/lib/mysql was mounted read-only. Running a fsck on that specific filesystem solved that error but didn&#8217;t fix my corrupted table.</p>
<p>phpMyAdmin showed that the table was in use and while performing a check or repair it complained about the missing file.</p>
<p>The comments.MYD file was indeed missing, but there was a comments.TMD file, which wasn&#8217;t there for all the other tables.</p>
<p>Moving this TMD file to MYD solved the issue. I could repair the table and the check is again successful.</p>
<p>During this problem wordpress didn&#8217;t complain but it just didn&#8217;t show my comments. But I have no clue what caused this problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.raskas.be/blog/2008/04/08/mysql-myd-and-tmd-files/feed/</wfw:commentRss>
		<slash:comments>1</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>
	</channel>
</rss>
