<?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>Matthew Lenz &#187; Linux</title>
	<atom:link href="http://www.nocturnal.org/blog/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nocturnal.org/blog</link>
	<description>Ignore the typos and spelling.  I do.</description>
	<lastBuildDate>Wed, 25 Jan 2012 13:35:12 +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>Six hours spent trying to install Linux Mint 12.</title>
		<link>http://www.nocturnal.org/blog/2012/01/25/six-hours-spent-trying-to-install-linux-mint-12/</link>
		<comments>http://www.nocturnal.org/blog/2012/01/25/six-hours-spent-trying-to-install-linux-mint-12/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 13:27:44 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=264</guid>
		<description><![CDATA[I&#8217;ve been using Linux on the desktop for about 18 years now and needless to say I know my way around pretty well. I&#8217;ve been using Ubuntu 10.04 LTS for the last year or so and recently upgraded to two new drives on my work system. Rather than reinstalling 10.04 LTS I decided to give [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using Linux on the desktop for about 18 years now and needless to say I know my way around pretty well.  I&#8217;ve been using Ubuntu 10.04 LTS for the last year or so and recently upgraded to two new drives on my work system.  Rather than reinstalling 10.04 LTS I decided to give Linux Mint 12 a try.  The catch is that I wanted to do software RAID 1 for the boot partition and RAID 0 for the system.  Ubuntu allows software RAID configuration using its alternate installation media and Linux Mint (although initially based on Ubuntu) doesn&#8217;t provide an alternate install.  I found a <a href="http://forums.linuxmint.com/viewtopic.php?f=46&#038;t=90878&#038;start=0" target="_blank">guide on the Linux Mint forums</a> which can be followed to manually configure software RAID during installation.  Linux Mint&#8217;s immaturity as an OS reared it&#8217;s ugly head when I neared the end of the install and the installer wouldn&#8217;t let me proceed.  Long story short I ended up installing Ubuntu 11.10 using the alternate install media and had a software RAID system up and running in about 20 minutes.  I will admit that Unity is pretty pointless considering the recent advancements with Gnome 3 and I might have to spend some time getting this desktop to be less clunky.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2012%2F01%2F25%2Fsix-hours-spent-trying-to-install-linux-mint-12%2F&amp;title=Six%20hours%20spent%20trying%20to%20install%20Linux%20Mint%2012." id="wpa2a_2">Share/Save</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2012/01/25/six-hours-spent-trying-to-install-linux-mint-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting from mbox to Maildir with Postfix and Dovecot on Debian</title>
		<link>http://www.nocturnal.org/blog/2011/02/07/converting-from-mbox-to-maildir-with-postfix-and-dovecot-on-debian/</link>
		<comments>http://www.nocturnal.org/blog/2011/02/07/converting-from-mbox-to-maildir-with-postfix-and-dovecot-on-debian/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 16:13:10 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=218</guid>
		<description><![CDATA[This is the procedure I used for converting from mbox to Maildir with Postfix and Dovecot running Debain 5.x. This assumes that you have individual system accounts for each mail user and that the mbox files are currently in /var/spool/mail/USER and /home/USER/mail/FOLDERS. All the following commands/edits will need to be done as root: Install mb2md: [...]]]></description>
			<content:encoded><![CDATA[<p>This is the procedure I used for converting from mbox to Maildir with Postfix and Dovecot running Debain 5.x.  This assumes that you have individual system accounts for each mail user and that the mbox files are currently in /var/spool/mail/USER and /home/USER/mail/FOLDERS.</p>
<p>All the following commands/edits will need to be done as root:</p>
<p>Install mb2md:</p>
<p><code>aptitude install mb2md</code></p>
<p>Stop the mail servers:</p>
<p><code>/etc/init.d/postfix stop<br />
/etc/init.d/dovecot stop</code></p>
<p>Edt the /etc/posfix/main.cf:</p>
<p><code>home_mailbox = Maildir/</code></p>
<p>Edit the /etc/procmailrc (if you are using procmail for local delivery/filtering):</p>
<p><code>ORGMAIL=$HOME/Maildir/<br />
MAILDIR=$ORGMAIL<br />
DEFAULT=$ORGMAIL</code></p>
<p>Edit the /etc/dovecot/dovecot.conf:</p>
<p><code>mail_location = maildir:~/Maildir</code></p>
<p>At this point I&#8217;d backup the user accounts just in case there is an issue.</p>
<p>Create a bash script with the following and execute it:</p>
<p><code>for i in $( ls -1 /home ); do<br />
    su -l -c 'mb2md -m' $i;  ## convert /var/spool/mail/USER<br />
    su -l -c 'mb2md -s mail -R' $i;<br />
done</code></p>
<p>At this point you will need to restart the mail servers:</p>
<p><code>/etc/init.d/dovecot start<br />
/etc/init.d/postfix start</code></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2011%2F02%2F07%2Fconverting-from-mbox-to-maildir-with-postfix-and-dovecot-on-debian%2F&amp;title=Converting%20from%20mbox%20to%20Maildir%20with%20Postfix%20and%20Dovecot%20on%20Debian" id="wpa2a_4">Share/Save</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2011/02/07/converting-from-mbox-to-maildir-with-postfix-and-dovecot-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Correct way to install Firefox 3.6 on Ubuntu 9.10 Karmic Koala</title>
		<link>http://www.nocturnal.org/blog/2010/01/26/correct-way-to-install-firefox-3-6-on-ubuntu-9-10-karmic-koala/</link>
		<comments>http://www.nocturnal.org/blog/2010/01/26/correct-way-to-install-firefox-3-6-on-ubuntu-9-10-karmic-koala/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 16:10:05 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/2010/01/26/correct-way-to-install-firefox-3-6-on-ubuntu-9-10-karmic-koala/</guid>
		<description><![CDATA[First close all your current firefox windows. Then open a Terminal with Applications &#62; Accessories &#62; Terminal. At the $ prompt enter the following: sudo add-apt-repository ppa:mozillateam/firefox-stable When prompted for your password enter it and enter the following commands one on each line: sudo apt-get update sudo apt-get install firefox-3.6 Enjoy.]]></description>
			<content:encoded><![CDATA[<p>First close all your current firefox windows.  Then open a Terminal with Applications &gt; Accessories &gt; Terminal.  At the $ prompt enter the following:</p>
<p><strong>sudo add-apt-repository ppa:mozillateam/firefox-stable</strong></p>
<p>When prompted for your password enter it and enter the following commands one on each line:</p>
<p><strong>sudo apt-get update</strong><br />
<strong> sudo apt-get install firefox-3.6</strong></p>
<p>Enjoy.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2010%2F01%2F26%2Fcorrect-way-to-install-firefox-3-6-on-ubuntu-9-10-karmic-koala%2F&amp;title=Correct%20way%20to%20install%20Firefox%203.6%20on%20Ubuntu%209.10%20Karmic%20Koala" id="wpa2a_6">Share/Save</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2010/01/26/correct-way-to-install-firefox-3-6-on-ubuntu-9-10-karmic-koala/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding perl packages with APT</title>
		<link>http://www.nocturnal.org/blog/2009/09/02/finding-perl-packages-with-apt/</link>
		<comments>http://www.nocturnal.org/blog/2009/09/02/finding-perl-packages-with-apt/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 16:07:12 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/2009/09/02/finding-perl-packages-with-apt/</guid>
		<description><![CDATA[If you are attempting to satisfy dependencies for perl software that was NOT available via your favourite repository (this is sometimes unavoidable in enterprise environments) you should AT LEAST attempt to satisfy those dependencies using said repository. The easiest solution is to install &#8216;apt-file&#8217; from your repo and for any perl modules you can simply [...]]]></description>
			<content:encoded><![CDATA[<p>If you are attempting to satisfy dependencies for perl software that was NOT available via your favourite repository (this is sometimes unavoidable in enterprise environments) you should AT LEAST attempt to satisfy those dependencies using said repository.  The easiest solution is to install &#8216;apt-file&#8217; from your repo and for any perl modules you can simply call:</p>
<pre>apt-file search "LWP::UserAgent"</pre>
<p>This will return the following list on Debian Lenny:</p>
<pre>liblwp-useragent-determined-perl: /usr/share/man/man3/LWP::UserAgent::Determined.3pm.gz
libtest-mock-lwp-perl: /usr/share/man/man3/Test::Mock::LWP::UserAgent.3pm.gz
libwww-perl: /usr/share/man/man3/LWP::UserAgent.3pm.gz</pre>
<p>Now you know that in order to satisfy a dependency on &#8220;LWP::UserAgent&#8221; you would need to install the &#8216;libwww-perl&#8217; module from the repo.</p>
<p>If the module is not available via the repo you should next consider installing the package into a custom perl lib directory specifically for the software (and/or user account) in question.  To do this read the documentation for the <a href="http://search.cpan.org/search?query=local%3A%3Alib&amp;mode=dist">local::lib module in CPAN</a>.</p>
<p>Ultimately your goal should be to not install non-packaged software to /usr/local and by doing so increase the maintainability of your systems.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2009%2F09%2F02%2Ffinding-perl-packages-with-apt%2F&amp;title=Finding%20perl%20packages%20with%20APT" id="wpa2a_8">Share/Save</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2009/09/02/finding-perl-packages-with-apt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating bios and/or firmware on Dell servers running Debian or any unsupported OS</title>
		<link>http://www.nocturnal.org/blog/2009/07/07/updating-biosfirmware-on-dell-servers-running-debian/</link>
		<comments>http://www.nocturnal.org/blog/2009/07/07/updating-biosfirmware-on-dell-servers-running-debian/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 01:06:47 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=127</guid>
		<description><![CDATA[These instructions will help you update BIOS, BMC, PERC or any other system firmware on your Dell system running any supported or unsupported OS. I finally got around to updating our servers to Debian Lenny. We have 1850&#8242;s and 2850&#8242;s. After lots of trial and error I figured out how to go about updating the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>These instructions will help you update BIOS, BMC, PERC or any other system firmware on your Dell system running any supported or unsupported OS.<br />
</strong><br />
I finally got around to updating our servers to Debian Lenny.  We have 1850&#8242;s and 2850&#8242;s.  After lots of trial and error I figured out how to go about updating the bios and various device firmware without a Dell supported Linux environment installed on the server.  You should note that instructions below still require basic Linux experience.  Another note is that these instructions are OS agnostic and use a livecd which doesn&#8217;t care what operating system you actually have installed on the machine itself.</p>
<p>The first step is running the Dell Content Manager to create a custom update repository for your severs.  The fun part is actually getting your hands on the thing.  You will need to download the <a href="http://support.dell.com/support/downloads/download.aspx?c=us&#038;l=en&#038;s=gen&#038;releaseid=R200232&#038;SystemID=PWE_FOS_XEO_2650&#038;servicetag=J3TD01J&#038;os=WNET&#038;osl=en&#038;deviceid=17782&#038;devlib=0&#038;typecnt=0&#038;vercnt=3&#038;catid=-1&#038;impid=-1&#038;formatcnt=1&#038;libid=36&#038;fileid=279040">Dell Systems Build and Update Utility</a>.  I should note that I wasn&#8217;t able to get the download to work until I tried with a MS Windows desktop.  When/If you are prompted for a Service Tag, just enter one for one of your own servers.</p>
<p>Once the ISO is downloaded you&#8217;ll need to mount/copy or extract the &#8216;contentmanager&#8217; directory onto your desktop.  Assuming you are moving forward with the Windows desktop route you&#8217;ll want to run the &#8216;win\wincontent.exe&#8217; (there is also a &#8216;lin\lincontent.tar&#8217; if you want to try that, I didn&#8217;t).  Now go find the new directory that was created.  Edit the content.ini and change the &#8216;ftp://&#8217; url to &#8216;http://&#8217;.  After you save that, run the &#8216;contentmanager.exe&#8217;.  Select &#8216;Create Custom Server Update Utility&#8217; and &#8216;Next.&#8217;  Click &#8216;Browse&#8217; and select a directory to dump this repository and click &#8216;Next.&#8217;  Wait for the program to download some meta-data and then un-check &#8216;Windows&#8217; (leaving &#8216;Linux&#8217; checked).  Now control-click all the server models you need to upgrade and click &#8216;Next.&#8217;  Go get a soda and let it download everything.  Once you&#8217;ve got your &#8216;CustomRepository&#8217; go into the &#8216;repository/sysman&#8217; directory and edit the .XML files in that directory with your favorite editor and look for the &#8216;path=&#8217; attribute(s) (one for each system type).  You&#8217;ll see something like &#8216;path=&#8221;sysman\&#8230;&#8221;&#8216; change the slash to a &#8216;/&#8217; so it&#8217;ll look like &#8216;path=&#8221;sysman/&#8230;&#8221;.  Save your changes and copy the contents (not the directory itself) of the &#8216;CustomRepository&#8217; to the root of a FAT32 formatted usbkey.</p>
<p>Now you need to download the <a href="http://linux.dell.com/files/openmanage-contributions/omsa-55-live/omsa-55-022109.iso">OpenManage Server Administrator</a>.  Burn it to a CD and then boot it in one of the servers you want to upgrade.  Let it boot up all the way (this can take several minutes while network connectivity times out etc. and you answer a couple questions) and once you login as root you need to insert the usbkey.  Mount it (you can check &#8216;dmesg&#8217; output for the device and it&#8217;ll be the first partition on there) with something like &#8216;mkdir /media/disk; mount /dev/sdb1 /media/disk -o ro&#8217;.  Change directory into &#8216;/media/disk&#8217; and run the following &#8216;./suu -u&#8217;.  Wait for it to analyze your system and update your system to the newest bios and firmwares.  You&#8217;ll probably see some notifications from snmpd and other stuff, they can be ignored.  After you&#8217;ve completed all the updates type &#8216;reboot&#8217;.  Do not power down your system, some of the updates need the system to be rebooted to complete (such as BIOS updates).</p>
<p>You should now have up-to-date hardware bios/firmwares for your server.  I should point out that under the Drivers section for your Service Tag on Dell&#8217;s site you might also see something about &#8216;SCSI Drives&#8217; firmware update.  If you are using SCSI drives in your system you might want to get these out of the way as well.  There is a Windows .exe you can download which will create a floppy or ISO image which you can boot in your server to update the drive firmware.</p>
<p>I hope this helps out, this was the simplest solution I could find given my environment (no DVD drives, no network connectivity, and the livecd not supporting X on the 1850&#8242;s).   Good luck! <img src='http://www.nocturnal.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2009%2F07%2F07%2Fupdating-biosfirmware-on-dell-servers-running-debian%2F&amp;title=Updating%20bios%20and%2For%20firmware%20on%20Dell%20servers%20running%20Debian%20or%20any%20unsupported%20OS" id="wpa2a_10">Share/Save</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2009/07/07/updating-biosfirmware-on-dell-servers-running-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora Core one last time</title>
		<link>http://www.nocturnal.org/blog/2005/10/04/fedora-core-one-last-time/</link>
		<comments>http://www.nocturnal.org/blog/2005/10/04/fedora-core-one-last-time/#comments</comments>
		<pubDate>Tue, 04 Oct 2005 01:21:24 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=26</guid>
		<description><![CDATA[This is my last post about this disaster of a linux distribution. Install 2 Package(s) Update 39 Package(s) Remove 0 Package(s) Total download size: 92 M]]></description>
			<content:encoded><![CDATA[<p>This is my last post about this disaster of a linux distribution.</p>
<ul>
<li> Install      2 Package(s)</li>
<li> Update      39 Package(s)</li>
<li> Remove       0 Package(s)</li>
<li> Total download size: 92 M</li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2005%2F10%2F04%2Ffedora-core-one-last-time%2F&amp;title=Fedora%20Core%20one%20last%20time" id="wpa2a_12">Share/Save</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2005/10/04/fedora-core-one-last-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora Core (2.5 weeks later) again</title>
		<link>http://www.nocturnal.org/blog/2005/09/17/fedora-core-25-weeks-later-again/</link>
		<comments>http://www.nocturnal.org/blog/2005/09/17/fedora-core-25-weeks-later-again/#comments</comments>
		<pubDate>Sat, 17 Sep 2005 04:13:12 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=31</guid>
		<description><![CDATA[I thought I should keep this joke running because that&#8217;s what it is really; a complete  joke. Why do they even bother having releases? I had to double check to make sure I wasn&#8217;t tracking rawhide. Just because its F/OSS doesn&#8217;t mean it has to suck guys. Install 1 Package(s) Update 60 Package(s) Remove 0 [...]]]></description>
			<content:encoded><![CDATA[<p>I thought I should keep this joke running because that&#8217;s what it is really; a complete  joke.  Why do they even bother having releases?  I had to double check to make sure I wasn&#8217;t tracking rawhide.  Just because its F/OSS doesn&#8217;t mean it has to suck guys.</p>
<ul>
<li> Install      1 Package(s)</li>
<li> Update      60 Package(s)</li>
<li> Remove       0 Package(s)</li>
<li> Total download size: 88 M</li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2005%2F09%2F17%2Ffedora-core-25-weeks-later-again%2F&amp;title=Fedora%20Core%20%282.5%20weeks%20later%29%20again" id="wpa2a_14">Share/Save</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2005/09/17/fedora-core-25-weeks-later-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora Core (2.5 weeks later)</title>
		<link>http://www.nocturnal.org/blog/2005/08/30/fedora-core-25-weeks-later/</link>
		<comments>http://www.nocturnal.org/blog/2005/08/30/fedora-core-25-weeks-later/#comments</comments>
		<pubDate>Tue, 30 Aug 2005 00:57:40 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=25</guid>
		<description><![CDATA[Time for another FC4 update a couple weeks later. Install 3 Package(s) Update 38 Package(s) Remove 0 Package(s) Total download size: 151 M Here piggy piggy piggy. Come on piggy!]]></description>
			<content:encoded><![CDATA[<p>Time for another FC4 update a couple weeks later.</p>
<ul>
<li> Install      3 Package(s)</li>
<li> Update      38 Package(s)</li>
<li> Remove       0 Package(s)</li>
<li> Total download size: 151 M</li>
</ul>
<p>Here piggy piggy piggy.  Come on piggy!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2005%2F08%2F30%2Ffedora-core-25-weeks-later%2F&amp;title=Fedora%20Core%20%282.5%20weeks%20later%29" id="wpa2a_16">Share/Save</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2005/08/30/fedora-core-25-weeks-later/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora Core</title>
		<link>http://www.nocturnal.org/blog/2005/08/11/fedora-core/</link>
		<comments>http://www.nocturnal.org/blog/2005/08/11/fedora-core/#comments</comments>
		<pubDate>Thu, 11 Aug 2005 21:01:05 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=24</guid>
		<description><![CDATA[I decided to run an update on my FC4 box today after about 3 weeks of being away from my desk. Install 2 Package(s) Update 85 Package(s) Remove 0 Package(s) Total download size: 226 M Anyone who uses this OS and doesn&#8217;t feel like a complete guinea pig please raise your hand.]]></description>
			<content:encoded><![CDATA[<p>I decided to run an update on my FC4 box today after about 3 weeks of being away from my desk.</p>
<ul>
<li> Install      2 Package(s)</li>
<li> Update      85 Package(s)</li>
<li> Remove       0 Package(s)</li>
<li> Total download size: 226 M</li>
</ul>
<p>Anyone who uses this OS and doesn&#8217;t feel like a complete guinea pig please raise your hand. <img src='http://www.nocturnal.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2005%2F08%2F11%2Ffedora-core%2F&amp;title=Fedora%20Core" id="wpa2a_18">Share/Save</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2005/08/11/fedora-core/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora Core 3 (Ok, so maybe not)</title>
		<link>http://www.nocturnal.org/blog/2005/05/05/ok-so-maybe-not/</link>
		<comments>http://www.nocturnal.org/blog/2005/05/05/ok-so-maybe-not/#comments</comments>
		<pubDate>Thu, 05 May 2005 07:37:26 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=29</guid>
		<description><![CDATA[I went back to FC3 at work. FC4T2 is showing a bit more promise as well. I liked Ubuntu but its very young, and has almost no configuration tools. They use gnome system tools for most stuff, which at best are flaky. Oh well, it was worth a try I still stand by the Debian [...]]]></description>
			<content:encoded><![CDATA[<p>I went back to FC3 at work.  FC4T2 is showing a bit more promise as well.  I liked Ubuntu but its very young, and has almost no configuration tools.  They use gnome system tools for most stuff, which at best are flaky.  Oh well, it was worth a try <img src='http://www.nocturnal.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I still stand by the Debian on the server though.  9000 packages are hard to ignore.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2005%2F05%2F05%2Fok-so-maybe-not%2F&amp;title=Fedora%20Core%203%20%28Ok%2C%20so%20maybe%20not%29" id="wpa2a_20">Share/Save</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2005/05/05/ok-so-maybe-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

