<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>
<channel>
	<title>G-Loaded Journal &#187; Fedora</title>
	<atom:link href="http://www.g-loaded.eu/tag/fedora/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.g-loaded.eu</link>
	<description>An open-source software and technology related journal</description>
	<lastBuildDate>Mon, 05 Dec 2011 19:55:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
		<item>
		<title>How to change the Timezone</title>
		<link>http://www.g-loaded.eu/2009/10/07/how-to-change-the-timezone/</link>
		<comments>http://www.g-loaded.eu/2009/10/07/how-to-change-the-timezone/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 13:44:03 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Scientific Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Service]]></category>
		<category><![CDATA[System]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=1183</guid>
		<description><![CDATA[Usually, the only time I make a change to the timezone setting of the operating system is during the installation time. But it may happen that a change to that setting is necessary. There are several ways to do this, but, as usual, there is only one Right Way&#8482; to set the timezone info in [...]]]></description>
			<content:encoded><![CDATA[<p>Usually, the only time I make a change to the <strong>timezone</strong> setting of the operating system is during the installation time. But it may happen that a change to that setting is necessary. There are several ways to do this, but, as usual, there is only one <em>Right Way</em>&trade; to set the timezone info in your <strong>Linux</strong> distribution. I investigated it for a while and I think I have figured out how to do it right using <strong>command-line</strong> utilities on <a href="http://fedoraproject.org">Fedora</a> and all RHEL rebuilds (<a href="http://centos.org">CentOS</a>, <a href="http://www.scientificlinux.org/">Scientific Linux</a>, etc). I am quite certain that many people miss this piece of information, so I describe it in detail right below.<br />
<span id="more-1183"></span></p>
<h4>Configuration</h4>
<p>The procedure must be performed by <strong>root</strong>.</p>
<p>First of all, you need to edit the <em>/etc/sysconfig/clock</em> file:</p>
<pre class="codesnp">
ZONE="Etc/GMT"
UTC=true
</pre>
<p>Please, read the notes below for more information about the settings above.</p>
<p>Then run the <strong>tzdata-update</strong> utility. This copies the correct zonefile to <em>/etc/localtime</em>:</p>
<pre class="console">
/usr/sbin/tzdata-update
</pre>
<p>Finally, update the system time by either running <strong>ntpd</strong> or the <strong>ntpdate</strong> utility. Both are part of the <code>ntp</code> RPM package, so if this is not installed, just use &#8220;<code>yum install ntp</code>&#8221; to get it installed.</p>
<pre class="console">
/usr/sbin/ntpdate -b pool.ntp.org
</pre>
<p>This will make sure your time is correct.</p>
<p>You can set a <strong>cronjob</strong> to update the system&#8217;s time using ntpdate, like this:</p>
<pre class="codesnp">
#
# Update the system time
#
55 23 * * * root /usr/sbin/ntpdate -4 -b pool.ntp.org 2>&#038;1 >> /var/log/ntpdate.log
</pre>
<h4>Notes</h4>
<p>Here are some notes about the configuration of the timezone:</p>
<ol>
<li>You can find the valid timezones by changing to the <code>/usr/share/zoneinfo/</code> directory. From there, any <em>relative path</em> to a timezone file is a valid timezone. For example, &#8220;<em>Etc/GMT</em>&#8220;, &#8220;<em>Europe/Athens</em>&#8220;, &#8220;<em>America/New_York</em>&#8221; et cetera.</li>
<li><strong>GMT</strong> and <strong>UTC</strong> time are practically the same and they both refer to the <a href="http://en.wikipedia.org/wiki/Greenwich_Mean_Time">Greenwich Mean Time</a>, so setting the timezone to &#8220;<em>Etc/UTC</em>&#8221; or &#8220;<em>Etc/GMT</em>&#8221; is practically the same.</li>
<li>In <code>/etc/sysconfig/clock</code> you can set whether the <strong>hardware clock</strong> is set to <strong>UTC/GMT</strong> time or to <strong>Local Time</strong>. I am not sure in what way the hardware clock gets involved is the time of the Operating System. But, anyway, if you know how the hardware clock is configured, set this accordingly to true or false. Usually, if I set the OS to use GMT time, I also set this to true regardless of the actual hardware clock configuration. More info on this is still needed.</li>
<li>In <code>/etc/sysconfig/clock</code> you may see the options <strong>ARC=false</strong> and <strong>SRM=false</strong>. These change the way the &#8220;epoch&#8221; is assumed by the console on Alpha systems and have no effect if you do not use such a platform. Delete them or leave as is, unless you know you need to set one of them to true.</li>
<li>In order to set the correct timezone, you could just create a <strong>symlink</strong> at <code>/etc/localtime</code> pointing to the correct timezone file in <code>/usr/share/zoneinfo/</code>. Then again, this would render the system configuration file <code>/etc/sysconfig/clock</code> (and thus all other applications that use it) useless and ineffective, so this method is generally <strong>not recommended</strong>.</li>
</ol>
<h4>Final thoughts</h4>
<p>Setting your server to use the correct time is very important. Generally, I hate it when I see web sites or other services having incorrect time. This reveals the web server or the web application administrator&#8217;s laziness or inability to properly configure the time. I hope this guide will help get rid of this issue.</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2009/10/07/how-to-change-the-timezone/">How to change the Timezone</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2008/11/27/maxminds-geoip-dat-gz-location-change/" rel="bookmark">Maxmind&#8217;s GeoIP.dat.gz location change</a></li>
<li><a href="http://www.g-loaded.eu/2005/09/30/change-console-font-in-fedora/" rel="bookmark">Change console font in Fedora</a></li>
<li><a href="http://www.g-loaded.eu/2005/11/05/assign-virtual-ips-to-your-nic/" rel="bookmark">Assign Virtual IPs to your NIC</a></li>
<li><a href="http://www.g-loaded.eu/2008/05/12/how-to-disable-ipv6-in-fedora-and-centos/" rel="bookmark">How to Disable IPv6 in Fedora and CentOS</a></li>
<li><a href="http://www.g-loaded.eu/2010/11/01/change-expiration-date-gpg-key/" rel="bookmark">How to change the expiration date of a GPG key</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2009/10/07/how-to-change-the-timezone/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Fedora Server vs CentOS</title>
		<link>http://www.g-loaded.eu/2009/10/05/fedora-server-vs-centos/</link>
		<comments>http://www.g-loaded.eu/2009/10/05/fedora-server-vs-centos/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 19:52:02 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Servers]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=1225</guid>
		<description><![CDATA[End of era for my Fedora based server after almost five years of service. The box now runs CentOS. I had this box at home and it was the only Fedora Server I ever maintained at home or elsewhere. I should state from the beginning that it was only Fedora&#8217;s short life-cycle that practically forced [...]]]></description>
			<content:encoded><![CDATA[<p>End of era for my <a href="http://fedoraproject.org/">Fedora</a> based server after almost five years of service. The box now runs <a href="http://centos.org/">CentOS</a>. I had this box at home and it was the only <strong>Fedora Server</strong> I ever maintained at home or elsewhere. I should state from the beginning that it was only Fedora&#8217;s short <em>life-cycle</em> that practically forced me to switch. Other than that, I&#8217;ve never encountered a single issue with its <strong>performance</strong>, <strong>stability</strong> or <strong>security</strong>, even if I had been upgrading through yum since Fedora Core 3 (upgrading through yum is probably still an officially unsupported feature).<br />
<span id="more-1225"></span><br />
You have probably read several times on this website about the stability issues I had faced on my <strong>Fedora Desktop</strong>. All those issues were entirely related to <em>graphical applications</em> and are common among all Linux distributions that are used as desktop operating systems. There is a huge <em>gap in quality</em> between the software that is used to run a WWW, SMTP, FTP, et cetera server and the software that is used on Linux desktops. Anyway, I won&#8217;t go into the details of this topic in the current post. I would like to say only this: If Fedora&#8217;s <em>short life-cycle</em> and the <em>frequent updates</em> are not a problem to you, then Fedora automatically becomes a very strong candidate for your server.</p>
<p>Having used <strong>Red Hat Linux</strong>, <strong>CentOS</strong> and <strong>Fedora</strong> over time I have finally come to several conclusions about each of them (well RHL has reached EOL). Below, I try to summarize the advantages and downsides of each of the last two distributions both as an operating system for a server and as a project to which you might want to contribute (since you use it on your boxes):</p>
<h4>CentOS</h4>
<p>Advantages:</p>
<ul>
<li>Almost guaranteed <strong>stability</strong>. The distribution includes old but proven versions of software which are very unlikely to have serious <em>security</em> or <em>blocker</em> bugs. &#8220;<em>Almost</em>&#8221; is used because you get true <strong>guaranteed</strong> stability only by using <em>Red Hat Enterprise Linux</em> (RHEL), which is available under contract by Red Hat Inc.</li>
<li>The CentOS or better the <a href="http://www.redhat.com/security/updates/errata/">RHEL Life-Cycle</a> is <strong>7 years</strong>.</li>
</ul>
<p>Disadvantages:</p>
<ul>
<li>The included software on the base repositories does not fully cover the needs of a <em>modern server</em>. Using software from <strong>3rd party repositories</strong> has become a common practice among CentOS users. There are some well-known repositories, but it may happen that you have to use a package from a repository that is not so popular or (many times) completely unknown. Using software from 3rd party repositories renders your installation less secure.</li>
<li>If a <strong>bug</strong> is not security-related, it may take several months (sometimes more than a year) to get fixed. Although the sources are the same with RHEL, except for the artwork, logos and release notes, CentOS has its own bug tracking system, which is completely unrelated to the Red Hat bug tracking system, meaning that they do not monitor or notify each other for bug submissions and fixes, despite the fact that the two OSes are almost alike. In practice, this is worse than it sounds. Things *could* be better.</li>
<li>The organization of the <em>community</em> behind CentOS is not very clear. Even if you want to contribute some time and effort you will have to accept some things &#8220;as is&#8221;. In general, it is nowhere near the organization and openness of the Fedora community.</li>
<li>CentOS does not differ from the vast majority of Linux distributions when it comes to your relationship as a contributor to the project, which is mostly governed by &#8220;bro&#8221; rules and practices.</li>
</ul>
<h4>Fedora</h4>
<p>Advantages:</p>
<ul>
<li><strong>Software availability</strong>. The project&#8217;s repositories contain a huge amount of packages, which have been built with common, well-documented packaging guidelines. Almost any software a modern server may require can be found in the main RPM repository. Only in rear occasions you will need a 3rd party repo.</li>
<li>A well-organized <strong>community</strong> around the project. All procedures are open and well-documented.</li>
<li>Professional procedures and practices govern your relationship to the project as a contributor.</li>
<li>Bugs are resolved rather quickly, especially blocker bugs.</li>
</ul>
<p>Disadvantages:</p>
<ul>
<li><a href="http://fedoraproject.org/wiki/LifeCycle">Short life-cycle</a> of about 13 months.</li>
<li>Theoritically, <strong>less stable</strong> versions of software than CentOS or RHEL. Even the server software is updated too often. Despite of the high quality of the server software, the frequent updates makes it &#8220;feel&#8221; less stable. From my own experience though, I&#8217;d say that, if CentOS gets an &#8220;<strong>100% Stable</strong>&#8221; label, a Fedora Server gets a <strong>99.5%</strong>. Personally, although I had set up several services on the box, I never had any stability issues, but that does not necessarily mean that they do not exist.</li>
</ul>
<p>As you can see, both distributions have their downsides. Now that I have written all the above, I think that there is a gap between the two OSes, which could be filled by a 3rd operating system. A system that would be more modern than CentOS, but less &#8220;cutting edge&#8221; than Fedora, and which would have a life-cycle of about 3-4 years. That would be very interesting.</p>
<p>Personally, I have successfully used both operating systems as servers for several years. I cannot make up my mind and decide which one better meets a server&#8217;s requirements. As I have previously mentioned, I decided to fully switch to CentOS because of the significantly longer life-cycle.</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2009/10/05/fedora-server-vs-centos/">Fedora Server vs CentOS</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2009/04/07/sticking-with-centos-rpmforge-and-yum-priorities-for-now/" rel="bookmark">Sticking with CentOS, RPMforge and yum-priorities for now</a></li>
<li><a href="http://www.g-loaded.eu/2008/12/11/centos-debian-freebsd-opensolaris/" rel="bookmark">CentOS, Debian, FreeBSD, OpenSolaris</a></li>
<li><a href="http://www.g-loaded.eu/2009/04/01/centos-community-enterprise-operating-system/" rel="bookmark">CentOS &#8211; Community ENTerprise Operating System</a></li>
<li><a href="http://www.g-loaded.eu/2008/12/10/almost-saying-goodbye-to-innovation/" rel="bookmark">Almost saying goodbye to innovation</a></li>
<li><a href="http://www.g-loaded.eu/2008/05/12/how-to-disable-ipv6-in-fedora-and-centos/" rel="bookmark">How to Disable IPv6 in Fedora and CentOS</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2009/10/05/fedora-server-vs-centos/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Sticking with CentOS, RPMforge and yum-priorities for now</title>
		<link>http://www.g-loaded.eu/2009/04/07/sticking-with-centos-rpmforge-and-yum-priorities-for-now/</link>
		<comments>http://www.g-loaded.eu/2009/04/07/sticking-with-centos-rpmforge-and-yum-priorities-for-now/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 14:14:22 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[RPM]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=1018</guid>
		<description><![CDATA[Having spent some days with CentOS on my desktop and having tried several 3rd party RPM repositories, I&#8217;ve finally decided to mix the official repos (base, updates, addons, extras) with RPMforge and also make use of the priorities yum plugin. Read on if you care about the details&#8230; My initial effort involved using EPEL and [...]]]></description>
			<content:encoded><![CDATA[<p>Having spent some days with <a href="http://centos.org/">CentOS</a> on my desktop and having tried several 3rd party RPM repositories, I&#8217;ve finally decided to <strong>mix</strong> the official repos (<em>base</em>, <em>updates</em>, <em>addons</em>, <em>extras</em>) with <a href="http://rpmforge.net/">RPMforge</a> and also make use of the <em>priorities</em> yum plugin. Read on if you care about the details&#8230;<br />
<span id="more-1018"></span><br />
My initial effort involved using <a href="http://fedoraproject.org/wiki/EPEL">EPEL</a> and <a href="http://rpmfusion.org/">RPMfusion</a>, which contains stuff that does not &#8220;fit&#8221; into EPEL and, of course, is built on top of EPEL. What I like about EPEL is the fact that RPMs are being built using Fedora&#8217;s <a href="http://fedoraproject.org/wiki/Packaging/Guidelines">RPM packaging standards</a>, which I can say, from my 4 year experience with Fedora, results in very high quality RPMs. Currently, the problem with the <em>EPEL+RPMfusion</em> combination is that the number of the available packages for <em>Red Hat Enterprise Linux</em> (RHEL) and its compatible distributions <em>CentOS</em> and <em>Scientific Linux</em> (SL) is rather limited when compared to the number of the available RPMs in the RPMforge repository.</p>
<p>While using EPEL+RPMfusion I tried to rebuild several Fedora SRPMs for use in CentOS. Many of them were built without dependency issues, but soon I came to a dead-end with some packages (also known as <em>Dependency Hell</em>&trade;) which required me to upgrade some core CentOS packages which in turn required the upgrade of some other core packages, which is generally considered a <em>Very Bad Thing</em>&trade; to do. This was an expected thing to happen, since Fedora uses newer versions of software than RHEL. Also, this somehow reminded me the reason why I had switched to CentOS; <em>spending the least possible time hacking around the operating system</em>, that is. So, I quickly abandoned EPEL and RPMfusion. I liked the idea behind that effort though, so it won&#8217;t be a surprise if you find me in #epel.</p>
<p>Having read the above two paragraphs, one might think that I somehow do not value RPMforge as much as EPEL. This is not correct. While EPEL sticks to the Fedora procedures, thus leaving almost no room for collaboration with other 3rd party repositories, RPMforge is the result of the collaborative work of some well-known RPM <a href="https://rpmrepo.org/RPMforge/FAQ">packagers</a> for RHEL and compatible linux distributions and also provides high quality RPMs. BTW, there are times that I prefer projects driven by a small community rather than a very big one, such as the Fedora Community.</p>
<p>Apart from the above repositories, I also use <a href="http://www.adobe.com/">Adobe</a>&#8216;s yum repository for the <em>Flash</em> plugin and the official <em>Open Office</em> RPM distribution (excluding JRE) from <a href="http://openoffice.org">OpenOffice.org</a>.</p>
<p>So, I&#8217;ve found myself happy with CentOS and I think I&#8217;ll stick with it for a while. Hopefully, not having to deal with so many bugs like it happened in Fedora will leave me with some more free time to get some things done in my <a href="http://www.codetrax.org/">own open-source projects</a> or contribute to other projects.</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2009/04/07/sticking-with-centos-rpmforge-and-yum-priorities-for-now/">Sticking with CentOS, RPMforge and yum-priorities for now</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2009/04/09/yum-priorities-configuration-for-a-centos-desktop/" rel="bookmark">YUM-Priorities Configuration for a CentOS Desktop</a></li>
<li><a href="http://www.g-loaded.eu/2011/02/28/awaiting-centos-6/" rel="bookmark">Awaiting CentOS 6</a></li>
<li><a href="http://www.g-loaded.eu/2009/10/05/fedora-server-vs-centos/" rel="bookmark">Fedora Server vs CentOS</a></li>
<li><a href="http://www.g-loaded.eu/2011/05/12/running-supervisor-3-on-centos-5/" rel="bookmark">Running supervisor 3 on CentOS 5</a></li>
<li><a href="http://www.g-loaded.eu/2008/12/10/almost-saying-goodbye-to-innovation/" rel="bookmark">Almost saying goodbye to innovation</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2009/04/07/sticking-with-centos-rpmforge-and-yum-priorities-for-now/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Update on the Fedora Infrastructure Break-In in August 2008</title>
		<link>http://www.g-loaded.eu/2009/04/02/update-on-the-fedora-infrastructure-break-in-in-august-2008/</link>
		<comments>http://www.g-loaded.eu/2009/04/02/update-on-the-fedora-infrastructure-break-in-in-august-2008/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 13:51:26 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[News]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=1013</guid>
		<description><![CDATA[The Fedora Project has published an announcement about the infrastructure break-in back in August 2008. In this announcement Paul Frields goes into some of the details of that breach. Well, please read the announcement for those details. To tell you the truth, this announcement does not leave me fully satisfied, as I would like some [...]]]></description>
			<content:encoded><![CDATA[<p>The Fedora Project has published an <a href="https://www.redhat.com/archives/fedora-announce-list/2009-March/msg00010.html">announcement</a> about the infrastructure break-in back in August 2008. In this announcement Paul Frields goes into some of the details of that breach. Well, please read the announcement for those details. To tell you the truth, this announcement does not leave me fully satisfied, as I would like some more details about how the Fedora Infrastructure team realized that security had been breached. OK, cron reported a strange error about a cronjob. A little more info on that cronjob and how the error had been connected to an intruder would be really great and appreciated. Another thing I would like some more info about is how the intruder got the administrator&#8217;s account password. OK, getting the passwordless SSH key can be explained in various ways, but how has the intruder acquired the admin&#8217;s account password? Did he manage to break the encrypted form of the password? Was it too weak? Last but not least, there is absolutely no information about the Fedora Project, possibly with the help of Red Hat, proceeding to any legal actions in order to find out who the intruder was. That would be very interesting information too. Apart from all these, it is quite obvious that the Fedora Project managed to recover from such a difficult situation in about a week. Also, from a user&#8217;s perspective, I have to say that the project&#8217;s recovery process was completely transparent to me as a Fedora user at that time.</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2009/04/02/update-on-the-fedora-infrastructure-break-in-in-august-2008/">Update on the Fedora Infrastructure Break-In in August 2008</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2008/12/05/fedora-server-edition/" rel="bookmark">Fedora Server Edition?</a></li>
<li><a href="http://www.g-loaded.eu/2006/01/05/break-out-of-frames-wordpress-plugin/" rel="bookmark">Break-Out-Of-Frames WordPress Plugin</a></li>
<li><a href="http://www.g-loaded.eu/2006/11/01/fedora-core-6/" rel="bookmark">Fedora Core 6</a></li>
<li><a href="http://www.g-loaded.eu/2006/04/05/how-to-build-rpm-packages-on-fedora/" rel="bookmark">How To Build RPM Packages on Fedora</a></li>
<li><a href="http://www.g-loaded.eu/2007/02/09/server-upgraded-to-fedora-6/" rel="bookmark">Server upgraded to Fedora 6</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2009/04/02/update-on-the-fedora-infrastructure-break-in-in-august-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>CentOS, Debian, FreeBSD, OpenSolaris</title>
		<link>http://www.g-loaded.eu/2008/12/11/centos-debian-freebsd-opensolaris/</link>
		<comments>http://www.g-loaded.eu/2008/12/11/centos-debian-freebsd-opensolaris/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 14:06:08 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[OpenSolaris]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=782</guid>
		<description><![CDATA[During the last week, I&#8217;ve installed several operating systems in Virtualbox or VMware in an attempt to discover the one that manages to balance between innovation and usability. What is funny is that there is one desktop environment I want to use, GNOME, but I cannot decide on the backend, aka the operating system! Of [...]]]></description>
			<content:encoded><![CDATA[<p>During the last week, I&#8217;ve installed several operating systems in <a href="http://virtualbox.org">Virtualbox</a> or <a href="http://vmware.com">VMware</a> in an attempt to discover the one that manages to balance between innovation and usability. What is funny is that there is one desktop environment I want to use, <a href="http://gnome.org">GNOME</a>, but I cannot decide on the backend, aka the operating system! Of all the above operating systems, <a href="http://opensolaris.org">OpenSolaris</a> was a surprisingly positive experience. While it uses the latest GNOME release, it wisely does not include other immature pieces of software like pulseaudio. Generally, it seems like an operating system aiming at office desktops. This is good enough and I will definitely install it on a physical partition to check it out extensively in the near future.</p>
<p>As for the others, <a href="http://freebsd.org">FreeBSD</a> was exactly as I expected it to be. A system aiming at stability and backwards compatibility, but I am not sure if it would be the right choice for the everyday desktop computer. Like it happens with OpenSolaris, the user needs to do some extensive reading before this OS can reveal its full potential.</p>
<p><a href="http://centos.org">CentOS</a> and <a href="http://debian.org">Debian</a> are two widely used linux distributions. Well, I had never really used Debian before (constantly stuck with RedHat Linux, Mandrake and CentOS), so some reading is also required for this OS too (not as much though as in FreeBSD/OpenSolaris).</p>
<p>What is the conclusion of all those test installations? In terms of easy-migration from Fedora to my new desktop OS, CentOS is probably the #1 candidate to take <a href="http://fedoraproject.org">Fedora</a>&#8216;s place. But, I think I will delay the migration a bit longer in order to have time to check OpenSolaris more thoroughly.</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2008/12/11/centos-debian-freebsd-opensolaris/">CentOS, Debian, FreeBSD, OpenSolaris</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2008/12/18/while-searching-for-information-about-opensolaris/" rel="bookmark">&#8230;while searching for information about OpenSolaris</a></li>
<li><a href="http://www.g-loaded.eu/2008/12/10/almost-saying-goodbye-to-innovation/" rel="bookmark">Almost saying goodbye to innovation</a></li>
<li><a href="http://www.g-loaded.eu/2009/04/10/windows-7-opensolaris-put-to-the-test/" rel="bookmark">Windows 7, OpenSolaris &#8211; put to the test</a></li>
<li><a href="http://www.g-loaded.eu/2009/04/01/centos-community-enterprise-operating-system/" rel="bookmark">CentOS &#8211; Community ENTerprise Operating System</a></li>
<li><a href="http://www.g-loaded.eu/2009/10/05/fedora-server-vs-centos/" rel="bookmark">Fedora Server vs CentOS</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2008/12/11/centos-debian-freebsd-opensolaris/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Almost saying goodbye to innovation</title>
		<link>http://www.g-loaded.eu/2008/12/10/almost-saying-goodbye-to-innovation/</link>
		<comments>http://www.g-loaded.eu/2008/12/10/almost-saying-goodbye-to-innovation/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 17:23:54 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Red Hat]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=764</guid>
		<description><![CDATA[Having used Fedora 10 for several days, I can say that this release is by far better than Fedora 9 in terms of desktop-related software quality. Of course, it is not bug-free and I still cannot consider it a desktop on which one can work efficiently. Having to deal with numerous known-bugs every six months [...]]]></description>
			<content:encoded><![CDATA[<p>Having used Fedora 10 for several days, I can say that this release is by far better than Fedora 9 in terms of desktop-related software quality. Of course, it is not bug-free and I still cannot consider it a desktop on which one can work efficiently. Having to deal with numerous <em>known-bugs</em> <strong>every six months</strong> is totally incompatible with any form of productivity. The last days, I have been considering trying to use CentOS as my primary desktop. It is a distribution I know very well. Even while Microsoft Windows was still my primary desktop, I had been using RedHat Linux, Mandrake Linux and later CentOS, which I currently use both on the Xen Dom0 and on DomUs, in a LAN-only headless home server. My real concern though is that this dull and predictable operating system is not suitable for a desktop. Despite the various community-driven RPM repositories, <em>software availability</em> is a big issue. It is nowhere near the number of packages that are available for Fedora. I recall the days of Fedora Core 3/4 when I was creating RPMs like crazy and I seriously do not wish to do it once again. Another serious drawback is that while usability bugs take months to get fixed on Fedora, it might take ages to see them fixed in CentOS. I&#8217;ve been using Fedora as my primary desktop for over 4 years and switching is not an easy decision. On the other hand, I use Fedora on my second server machine, on which this website is hosted, and I&#8217;ve never had any issues with it. It is rock solid. No matter which operating system is used, either the conservative CentOS or the innovative Fedora, server software runs perfectly. The real problem is the graphical applications. I&#8217;ve never used RedHat Linux in the past or CentOS as a desktop. What I am concerned with is that, if I finally try CentOS as a desktop and do not like it (very likely for the reasons I explaned above), then my only option would be to return back to a Windows desktop as I wouldn&#8217;t have any other choices left. This is something I will not like, but, on the other hand, I do not wish to become my computer&#8217;s slave for the sake of the freedom of computer software. Period.</p>
<p>This post is not supposed to start a flame about linux distributions, so please allow me to disable comments.</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2008/12/10/almost-saying-goodbye-to-innovation/">Almost saying goodbye to innovation</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2009/04/01/centos-community-enterprise-operating-system/" rel="bookmark">CentOS &#8211; Community ENTerprise Operating System</a></li>
<li><a href="http://www.g-loaded.eu/2009/10/05/fedora-server-vs-centos/" rel="bookmark">Fedora Server vs CentOS</a></li>
<li><a href="http://www.g-loaded.eu/2008/12/11/centos-debian-freebsd-opensolaris/" rel="bookmark">CentOS, Debian, FreeBSD, OpenSolaris</a></li>
<li><a href="http://www.g-loaded.eu/2006/11/20/my-running-dog/" rel="bookmark">My running dog</a></li>
<li><a href="http://www.g-loaded.eu/2008/12/05/fedora-server-edition/" rel="bookmark">Fedora Server Edition?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2008/12/10/almost-saying-goodbye-to-innovation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Fedora Server Edition?</title>
		<link>http://www.g-loaded.eu/2008/12/05/fedora-server-edition/</link>
		<comments>http://www.g-loaded.eu/2008/12/05/fedora-server-edition/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 08:49:27 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Red Hat]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=725</guid>
		<description><![CDATA[I don&#8217;t know if you have noticed it, but the Fedora download page includes the following: &#8220;Get Fedora 10 Desktop Edition Now&#8220;. Until Fedora 10, there was no &#8220;edition&#8221; statement. Fedora is a release aiming at desktop computers. Does this title mean that RedHat Inc and the Fedora community plan to release a separate edition [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know if you have noticed it, but the <a href="http://fedoraproject.org/en/get-fedora">Fedora download page</a> includes the following: &#8220;<em>Get Fedora 10 Desktop Edition Now</em>&#8220;. Until Fedora 10, there was no &#8220;edition&#8221; statement. Fedora is a release aiming at desktop computers. Does this title mean that RedHat Inc and the Fedora community plan to release a separate edition of Fedora aiming at server computers? I don&#8217;t know if I have missed such an announcement, but the phrase &#8220;<em>Get Fedora 10 Desktop Edition Now</em>&#8221; definitely implies that. One might wonder though why a Fedora Server Edition should be ever released? Which problems would it solve?</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2008/12/05/fedora-server-edition/">Fedora Server Edition?</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2007/02/24/creative-commons-v30-licenses-launched/" rel="bookmark">Creative Commons v3.0 Licenses Launched</a></li>
<li><a href="http://www.g-loaded.eu/2007/02/09/server-upgraded-to-fedora-6/" rel="bookmark">Server upgraded to Fedora 6</a></li>
<li><a href="http://www.g-loaded.eu/2009/10/05/fedora-server-vs-centos/" rel="bookmark">Fedora Server vs CentOS</a></li>
<li><a href="http://www.g-loaded.eu/2008/05/16/desktop-now-uses-fedora-9/" rel="bookmark">Desktop now uses Fedora 9</a></li>
<li><a href="http://www.g-loaded.eu/2008/11/27/updated-to-fedora-10/" rel="bookmark">Updated to Fedora 10</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2008/12/05/fedora-server-edition/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Updated to Fedora 10</title>
		<link>http://www.g-loaded.eu/2008/11/27/updated-to-fedora-10/</link>
		<comments>http://www.g-loaded.eu/2008/11/27/updated-to-fedora-10/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 04:27:11 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Fedora]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=673</guid>
		<description><![CDATA[Yesterday night, at the moment rTorrent finished downloading the Fedora 10 ISO image, I rushed to burn it to a DVD and perform a clean installation of the operating system. No, I was not that excited about the new features of F10. I just wanted to replace what had been the buggiest desktop I had [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday night, at the moment rTorrent finished downloading the Fedora 10 ISO image, I rushed to burn it to a DVD and perform a clean installation of the operating system. No, I was not that excited about the new features of F10. I just wanted to replace what had been the buggiest desktop I had ever used, GNOME 2.22. All I hope for, as far as software is concerned, is that the 2.24.1 version -included in F10- has less bugs. Please, do not get me wrong. I <strong>highly respect</strong> the hard work and effort of all GNOME and Fedora contributors. It&#8217;s just their decision to release unfinished and therefore unreliable software as stable for the sake of the 6-month release-cycle-madness I criticize! Of course, the same goes for Ubuntu. Lately, I&#8217;ve been thinking about trying to use CentOS as a desktop operating system. The software it contains might be a bit outdated, but at least it will help me preserve my sanity.</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2008/11/27/updated-to-fedora-10/">Updated to Fedora 10</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2006/04/02/fedora-core-5/" rel="bookmark">Fedora Core 5</a></li>
<li><a href="http://www.g-loaded.eu/2008/05/16/desktop-now-uses-fedora-9/" rel="bookmark">Desktop now uses Fedora 9</a></li>
<li><a href="http://www.g-loaded.eu/2008/12/05/fedora-server-edition/" rel="bookmark">Fedora Server Edition?</a></li>
<li><a href="http://www.g-loaded.eu/2009/10/05/fedora-server-vs-centos/" rel="bookmark">Fedora Server vs CentOS</a></li>
<li><a href="http://www.g-loaded.eu/2008/12/11/centos-debian-freebsd-opensolaris/" rel="bookmark">CentOS, Debian, FreeBSD, OpenSolaris</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2008/11/27/updated-to-fedora-10/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Use the Alternatives System to switch to a custom Firefox release</title>
		<link>http://www.g-loaded.eu/2008/06/18/use-the-alternatives-system-to-switch-to-a-custom-firefox-release/</link>
		<comments>http://www.g-loaded.eu/2008/06/18/use-the-alternatives-system-to-switch-to-a-custom-firefox-release/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 05:46:25 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Web]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=496</guid>
		<description><![CDATA[From a user&#8217;s perspective, having to use an old beta version of Firefox in my primary desktop, while, at the same time, a final stable release of the browser has been released, is a bit annoying. But, the fact that this happens due to technical issues makes it partially acceptable. The following article aims to [...]]]></description>
			<content:encoded><![CDATA[<p>From a user&#8217;s perspective, having to use an old beta version of <a href="http://www.mozilla.org/">Firefox</a> in <a href="http://www.g-loaded.eu/2008/05/16/desktop-now-uses-fedora-9/">my primary desktop</a>, while, at the same time, a final stable release of the browser has been released, is a bit annoying. But, the fact that this happens due to technical issues makes it partially acceptable. The following article aims to provide step-by-step instructions about how to use the <strong>alternatives system</strong> to set a custom Firefox release, downloaded from mozilla.org, to be the system&#8217;s default. Using this method the user is relieved from having to go through all the firefox launchers and menu entries in order to edit the paths to the firefox executable. Moreover, this post should also be a good example of how to use the alternatives system in the Linux distributions that support it.</p>
<p><strong><em>Update</em></strong>: Firefox 3.0 final has become available from the official fedora updates repository. It seems that the technical issues of the past do not exist any more! Kudos! This tutorial will still give you an idea though about how to <em>quickly</em> and <em>easily</em> switch between the default and custom versions of the same software in your system.<br />
<span id="more-496"></span><br />
Fedora 9 has been used as the desktop system for this article. The provided information will certainly work in CentOS and RHEL, but might also work for other linux distributions which use the alternatives system, such as Debian, Ubuntu, OpenSUSE etc. As far as I know, Gentoo and its derivatives use their own system.</p>
<p>In order to check if &#8220;alternatives&#8221; is available in your system, try one of the following commands:</p>
<pre class="console">
which alternatives
which update-alternatives
</pre>
<h4>Firefox Installation</h4>
<p>First of all, we install a <em>precompiled</em> (binary) Firefox distribution, downloaded from mozilla.org, in the <strong>/opt</strong> directory. All the following commands should be issued by &#8216;<code>root</code>&#8216; or by your regular user using &#8216;<code>sudo</code>&#8216;.</p>
<p><em>Change</em> to the <strong>/opt</strong> directory, <em>download</em> and <em>extract</em> the firefox package:</p>
<pre class="console">
cd /opt/
wget ftp://ftp.mozilla.org/pub/firefox/releases/3.0/linux-i686/en-US/firefox-3.0.tar.bz2
tar -xjf firefox-3.0.tar.bz2
</pre>
<p>Now <em>change</em> to the <strong>/opt/firefox/</strong> directory, <em>delete</em> the <strong>plugins/</strong> subdirectory and create a <em>symlink</em> to the system&#8217;s directory containing the firefox plugins (<code>/usr/lib/mozilla/plugins/</code> in Fedora).</p>
<pre class="console">
cd firefox/
rm -fr plugins
ln -s /usr/lib/mozilla/plugins/ plugins
</pre>
<p>The installation of the custom Firefox version is complete.</p>
<h4>Set the system-wide default Firefox version</h4>
<p>In this section we will use the <strong>alternatives system</strong> in order to provide us with two options:</p>
<ol>
<li>Use Fedora&#8217;s default Firefox release. This means that <strong>/usr/bin/firefox</strong> should be executed whenever we issue the &#8216;<code>firefox</code>&#8216; command.</li>
<li>Set our custom Firefox release as the system&#8217;s default. This means that <strong>/opt/firefox/firefox</strong> should be executed whenever we issue the &#8216;<code>firefox</code>&#8216; command.</li>
</ol>
<p><strong><em>Note</em></strong>: Describing the details of the alternatives system is out of the scope of this article, so it is highly recommended that you study the <em>alternatives manual page</em> (<code>man 8 alternatives</code>)</p>
<p>In the following steps we will add a <strong>group</strong>, named &#8220;<em>firefox</em>&#8220;, of alternative options for the location of the <strong>firefox executable</strong>. These options are actually <em>filesystem locations</em> which will be linked by the <strong>/usr/local/bin/firefox</strong> symlink. Note that we use the <strong>/usr/local/bin/&#8230;</strong> path for our symlink, because <strong>/usr/bin/firefox</strong> is occupied by fedora&#8217;s firefox executable. The latter will not be called directly any more, as the executables located in <strong>/usr/local/bin/</strong> override the ones located in <strong>/usr/bin/</strong>, so whenever the command &#8216;<code>firefox</code>&#8216; is invoked, <strong>/usr/local/bin/firefox</strong> will actually be used. The latter is a symlink, which links to either fedora&#8217;s firefox executable or our custom firefox executable.</p>
<p>So, we add the &#8216;<em>firefox</em>&#8216; group of options:</p>
<pre class="console">
/usr/sbin/alternatives --install /usr/local/bin/firefox firefox /usr/bin/firefox 10
/usr/sbin/alternatives --install /usr/local/bin/firefox firefox /opt/firefox/firefox 20
</pre>
<p>Now we can manually set which firefox executable to use as the system&#8217;s default. In other words, the following command links <strong>/usr/local/bin/firefox</strong> to the desired executable (<strong>/opt/firefox/firefox</strong> in our case):</p>
<pre class="console">
/usr/sbin/alternatives --set firefox /opt/firefox/firefox
</pre>
<p><strong>Instead of the <code>--set</code> option as shown above</strong>, we can use the <strong>&#8211;config</strong> option, so that a list of the available <em>alternatives</em> is displayed and we are prompted to make a selection:</p>
<pre class="console">
# /usr/sbin/alternatives --config firefox
There are 2 programs which provide 'firefox'.
  Selection    Command
-----------------------------------------------
   1           /usr/bin/firefox
*+ 2           /opt/firefox/firefox
Enter to keep the current selection[+], or type selection number: 2
</pre>
<p>Finally, we can issue the following command to get an overview of our current configuration for the group &#8216;<em>firefox</em>&#8216;:</p>
<pre class="console">
# /usr/sbin/alternatives --display firefox
firefox - status is manual.
 link currently points to /opt/firefox/firefox
/usr/bin/firefox - priority 10
/opt/firefox/firefox - priority 20
Current `best' version is /opt/firefox/firefox.
</pre>
<h4>Revert to the original state</h4>
<p>If for any reason you need to revert things back to the default state, all you have to do in order to remove all the &#8220;<em>alternatives</em>&#8221; we had configured in the previous section is the following:</p>
<pre class="console">
/usr/sbin/alternatives --remove firefox /opt/firefox/firefox
/usr/sbin/alternatives --remove firefox /usr/bin/firefox
</pre>
<p>No other configuration is required. From now on, whenever the &#8216;<code>firefox</code>&#8216; command is invoked, fedora&#8217;s old <strong>/usr/bin/firefox</strong> is executed.</p>
<h4>Final Thoughts</h4>
<p>Technical issues in the linux distribution preparation process might limit the user to certain software versions. The alternatives system provides users with the choice to configure the system in a way that it is extremely <strong>easy to switch</strong> between <strong>default</strong> and <strong>custom</strong> versions of the same software.</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2008/06/18/use-the-alternatives-system-to-switch-to-a-custom-firefox-release/">Use the Alternatives System to switch to a custom Firefox release</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2011/09/28/the-new-amateuristic-release-strategy-of-firefox/" rel="bookmark">The new amateuristic release strategy of Firefox</a></li>
<li><a href="http://www.g-loaded.eu/2009/10/30/selinux-setenforce-mode/" rel="bookmark">Using setenforce to switch SELinux mode wisely</a></li>
<li><a href="http://www.g-loaded.eu/2008/11/26/using-a-switch-to-prevent-system-shutdownrebootsuspend/" rel="bookmark">Using a switch to prevent system shutdown/reboot/suspend</a></li>
<li><a href="http://www.g-loaded.eu/2005/12/11/local-yum-repository/" rel="bookmark">Local YUM Repository</a></li>
<li><a href="http://www.g-loaded.eu/2005/11/08/the-use-of-the-uppercase-x-in-chmod/" rel="bookmark">The use of the uppercase X in chmod</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2008/06/18/use-the-alternatives-system-to-switch-to-a-custom-firefox-release/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Desktop now uses Fedora 9</title>
		<link>http://www.g-loaded.eu/2008/05/16/desktop-now-uses-fedora-9/</link>
		<comments>http://www.g-loaded.eu/2008/05/16/desktop-now-uses-fedora-9/#comments</comments>
		<pubDate>Fri, 16 May 2008 00:02:24 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Fedora]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=494</guid>
		<description><![CDATA[This is just a quick note that I have upgraded to Fedora 9. Generally, I am against upgrading an operating system at the time of a new release. The new OS version might be tagged as stable, but it is a fact that, during the first weeks after the release, many new bugs are discovered. [...]]]></description>
			<content:encoded><![CDATA[<p>This is just a quick note that I have upgraded to Fedora 9. Generally, I am against <a href="http://www.g-loaded.eu/2007/02/09/server-upgraded-to-fedora-6/">upgrading an operating system at the time of a new release</a>. The new OS version might be tagged as stable, but it is a fact that, during the first weeks after the release, many new bugs are discovered. Although I knew this very well, I decided to go for <a href="http://fedoraproject.org/">Fedora</a> 9 and, so far, I haven&#8217;t regret it, despite the several rough edges it contains.</p>
<p>I usually upgrade my server or desktop through yum, but this time I performed a clean install. I wouldn&#8217;t expect a yum upgrade to work just one day after the OS&#8217;s general availability, taking into account that Fedora does not officially support upgrading through yum. Truth is: I tested it and it would cause much more trouble than good.</p>
<p>What I would consider as the highlight of this release is <a href="http://www.packagekit.org/">PackageKit</a>, a program that is used by <a href="http://www.gnome.org/">GNOME</a> in order to stand between the user and the various package managers, so users don&#8217;t have to worry about what happens behind the scenes. Personally, I believe that approaching free software&#8217;s &#8220;<em>chaotic</em>&#8221; development model in such a way is good for both the end-users and the active contributors, as it makes their effort more focused and coordinated. PackageKit also includes a command line interface.</p>
<p>The <a href="http://docs.fedoraproject.org/release-notes/f9/en_US/index.html">release notes</a> for Fedora 9 contain all the information you need to know about the changes and the new features. If you find it difficult to go through the release notes in their entirety, make sure you at least read the section about the <a href="http://docs.fedoraproject.org/release-notes/f9/en_US/sn-Desktop.html">new features of the GNOME desktop environment</a> included in this release or read the relevant section about the desktop environment you use. Finally, if GDM looks a bit ugly, read <a href="http://live.gnome.org/GDM/2.22/Configuration">GDM 2.22 Configuration</a>. Although, I hate the term &#8220;known bugs&#8221;, this is where you find the Fedora 9&#8242;s <a href="http://fedoraproject.org/wiki/Bugs/F9Common">common bugs and known issues</a>.</p>
<p>Having used Fedora 9 for a day or so, I can say that it is a fine release that deserves your attention. But, I would recommend upgrading to it after a week (or two) hoping that until then most of the annoying bugs will have been resolved.</p>
<p>PS: I tried to take advantage of the new kernel-based mode-setting feature as described in <a href="http://www.phoronix.com/scan.php?page=article&#038;item=kernel_modesetting&#038;num=1">this article at Phoronix</a>, but it did not work. The hardware I tried it on is the following motherboard: <a href="http://asus.com/products.aspx?l1=3&#038;l2=11&#038;l3=563&#038;l4=0&#038;model=1772&#038;modelmenu=1">ASUS P5KPL-VM</a> using the onboard Intel Graphics Media Accelerator 3100 (<em>GMA 3100</em>). If you have any more clues, please let me know.</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2008/05/16/desktop-now-uses-fedora-9/">Desktop now uses Fedora 9</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2008/11/27/updated-to-fedora-10/" rel="bookmark">Updated to Fedora 10</a></li>
<li><a href="http://www.g-loaded.eu/2006/11/01/fedora-core-6/" rel="bookmark">Fedora Core 6</a></li>
<li><a href="http://www.g-loaded.eu/2007/02/09/server-upgraded-to-fedora-6/" rel="bookmark">Server upgraded to Fedora 6</a></li>
<li><a href="http://www.g-loaded.eu/2006/04/02/fedora-core-5/" rel="bookmark">Fedora Core 5</a></li>
<li><a href="http://www.g-loaded.eu/2008/12/05/fedora-server-edition/" rel="bookmark">Fedora Server Edition?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2008/05/16/desktop-now-uses-fedora-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
	</channel>
</rss>

