<?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>PRESOON.COM &#187; Centos</title>
	<atom:link href="http://presoon.com/blog/category/linux/centos-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://presoon.com/blog</link>
	<description></description>
	<lastBuildDate>Sat, 20 Mar 2010 03:59:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>/sbin/hotplug: no runnable /etc/hotplug/aaaa.agent is installed in /var/log/messages</title>
		<link>http://presoon.com/blog/2010/02/21/sbinhotplug-no-runnable-etchotplugaaaa-agent-is-installed-in-varlogmessages/</link>
		<comments>http://presoon.com/blog/2010/02/21/sbinhotplug-no-runnable-etchotplugaaaa-agent-is-installed-in-varlogmessages/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 06:02:57 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[avahi]]></category>
		<category><![CDATA[hotplug]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[kernel error]]></category>
		<category><![CDATA[plug and play]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=166</guid>
		<description><![CDATA[Hi guys,
You might have been facing the error getting logged in /var/log/messages. Deeper research in Google gave the result that it is the issue with the loaded Kernel.
Before going for and upgrade, just confirm the following.
Check whether the following files are present.
/lib/modules/*/modules.*map      depmod output
/proc/sys/kernel/hotplug       [...]]]></description>
			<content:encoded><![CDATA[<p>Hi guys,</p>
<p>You might have been facing the error getting logged in /var/log/messages. Deeper research in Google gave the result that it is the issue with the loaded Kernel.</p>
<p>Before going for and upgrade, just confirm the following.</p>
<p>Check whether the following files are present.</p>
<pre><code>/lib/modules/*/modules.*map      depmod output
/proc/sys/kernel/hotplug         specifies hotplug program path
/sbin/hotplug                    hotplug program (default path name)
/etc/hotplug/*                   hotplug files
/etc/hotplug/NAME.agent          hotplug subsystem-specific agents
/etc/hotplug/NAME*               subsystem-specific files, for agents
/etc/hotplug/usb/                   depmod data for user-mode drivers</code></pre>
<pre><code>chmod 755 /etc/hotplug/*.agent
check tail -f /var/log/messages</code>
</pre>
<p><strong>Now try the following before kernel upgrade.</strong></p>
<p>The issue should have been fixed by now. If the message is still coming up in /var/log/messages, you will need to go for Kernel upgrade.</p>
<p>Thank you guys..</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2010/02/21/sbinhotplug-no-runnable-etchotplugaaaa-agent-is-installed-in-varlogmessages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change Mysql database directory to another partition in cPanel. /var patition full</title>
		<link>http://presoon.com/blog/2010/01/07/how-to-change-mysql-database-directory-to-another-partition-in-cpanel-var-patition-full/</link>
		<comments>http://presoon.com/blog/2010/01/07/how-to-change-mysql-database-directory-to-another-partition-in-cpanel-var-patition-full/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 07:39:59 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[/var partition full]]></category>
		<category><![CDATA[/var/lib/mysql]]></category>
		<category><![CDATA[change mysql data directory in mysql]]></category>
		<category><![CDATA[move /var/lib/mysql to another partition]]></category>
		<category><![CDATA[separate mysql data directory]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=154</guid>
		<description><![CDATA[Hi guys,
you might have faced the issue of /var partition gettting full regularly due to database directory. If you have a larger partition with free space, then it is possible to move the database directory to the larger partition.
Here are the steps
Switch off the database server while we are moving the databases.

/etc/rc.d/init.d/mysql stop

I am considering [...]]]></description>
			<content:encoded><![CDATA[<p>Hi guys,</p>
<p>you might have faced the issue of /var partition gettting full regularly due to database directory. If you have a larger partition with free space, then it is possible to move the database directory to the larger partition.</p>
<p>Here are the steps</p>
<p>Switch off the database server while we are moving the databases.</p>
<pre>
<code>/etc/rc.d/init.d/mysql stop</code>
</pre>
<p>I am considering that I have enough space in /home partition. Here goes my new database data directory as /home/mysql</p>
<p>Now it is better to copy the database first, rather than move.</p>
<pre>
<code>cp -pr /var/lib/mysql /home
mv /var/lib/mysql /var/lib/mysql-bk</code>
</pre>
<p>We are copying the database to the new location since it is better to revert back the settings with minimum downtime, if anything goes wrong.</p>
<p>move to /tmp</p>
<pre>
<code>cd /tmp
unlink mysql.sock
ln -s /home/mysql/mysql.sock /tmp/mysql.sock</code>
</pre>
<p>Take a backup of /etc/my.cnf</p>
<p>Now edit /etc/my.cnf</p>
<pre>
<code>vi /etc/my.cnf

add the line
datadir=/home/mysql</code>
</pre>
<p>If the socket file is specified, comment it out.</p>
<p>Now move to /var/lib/mysql and create a symblink</p>
<pre>
<code>ln -s /home/mysql /var/lib/mysql</code>
</pre>
<p>(Please note that you don&#8217;t specify the socket file location in my.cnf since it causes issues with phpMyadmin)</p>
<p>For, cPanel server, edit the phpMyadmin configuration<br />
take a backup of &#8220;/usr/local/cpanel/base/3rdparty/phpMyAdmin/config.inc.php&#8221;</p>
<pre>
<code>edit this file /usr/local/cpanel/base/3rdparty/phpMyAdmin/config.inc.php
vi /usr/local/cpanel/base/3rdparty/phpMyAdmin/config.inc.php</code>
</pre>
<p>add the following lines. If they already exist, edit as below.<br />
(the connect_type usually exist at &#8220;tcp&#8221; change it to &#8220;socket&#8221;)</p>
<pre>
<code>$cfg['Servers'][$i]['socket'] = ‘/home/mysql/mysql.sock’;
$cfg['Servers'][$i]['connect_type'] = ’socket’;</code>
</pre>
<p>Now start the database server.</p>
<pre>
<code>/etc/rc.d/ini.d/mysql start</code>
</pre>
<p>If it starts fine, you are done. Check the database connections of your site.<br />
You can now remove the directory /var/lib/mysql-bk</p>
<p>Suggestions, questions are welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2010/01/07/how-to-change-mysql-database-directory-to-another-partition-in-cpanel-var-patition-full/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting sshd:PRNG is not seeded</title>
		<link>http://presoon.com/blog/2009/03/23/starting-sshdprng-is-not-seeded/</link>
		<comments>http://presoon.com/blog/2009/03/23/starting-sshdprng-is-not-seeded/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 23:21:53 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PRNG]]></category>
		<category><![CDATA[urandom]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=83</guid>
		<description><![CDATA[You might have received this error when restarting SSHD.
#/etc/rc.d/init.d/sshd restart
Stopping sshd:                                             [...]]]></description>
			<content:encoded><![CDATA[<p>You might have received this error when restarting SSHD.</p>
<p>#/etc/rc.d/init.d/sshd restart</p>
<p>Stopping sshd:                                             [  OK  ]</p>
<p>Starting sshd:PRNG is not seeded</p>
<p>[FAILED]</p>
<p>Here is the fix.</p>
<p>cd /dev/</p>
<p>./MAKEDEV generic</p>
<p>Now try starting SSH. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2009/03/23/starting-sshdprng-is-not-seeded/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Error : tty device not owned by group &#8216;tty&#8217;</title>
		<link>http://presoon.com/blog/2009/03/20/error-tty-device-not-owned-by-group-tty/</link>
		<comments>http://presoon.com/blog/2009/03/20/error-tty-device-not-owned-by-group-tty/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 20:37:53 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[/dev]]></category>
		<category><![CDATA[tty]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=81</guid>
		<description><![CDATA[You might receive this error when your try to restart services in CPanel.
This is because the group of the tty devices are not &#8220;tty&#8221;
Change it to tty.
chgrp tty /dev/ttyp* /dev/ptyp* /dev/vcs* /dev/ptmx /dev/pts/0
as simple as that.:)
]]></description>
			<content:encoded><![CDATA[<p>You might receive this error when your try to restart services in CPanel.</p>
<p>This is because the group of the tty devices are not &#8220;tty&#8221;</p>
<p>Change it to tty.</p>
<p><em>chgrp tty /dev/ttyp* /dev/ptyp* /dev/vcs* /dev/ptmx /dev/pts/0</em></p>
<p>as simple as that.:)</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2009/03/20/error-tty-device-not-owned-by-group-tty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>/usr/java/jdkX.X.X_Xbin/java: not found + Install Java on Linux servers</title>
		<link>http://presoon.com/blog/2008/10/19/usrjavajdkxxx_xbinjava-not-found-install-java-on-linux-servers/</link>
		<comments>http://presoon.com/blog/2008/10/19/usrjavajdkxxx_xbinjava-not-found-install-java-on-linux-servers/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 14:50:06 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[java binary path]]></category>
		<category><![CDATA[JSDK]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=70</guid>
		<description><![CDATA[In some cases, the 3rd parts scripts in server requires java to be installed. It may not work properly if the binary of java installed in the server. You need to install JavaSDK
So we present here the installation of Java in Linux server.
Its as easy as you run upcp in a Cpanel server.
Download the installation [...]]]></description>
			<content:encoded><![CDATA[<p>In some cases, the 3rd parts scripts in server requires java to be installed. It may not work properly if the binary of java installed in the server. You need to install JavaSDK</p>
<p>So we present here the installation of Java in Linux server.</p>
<p>Its as easy as you run upcp in a Cpanel server.</p>
<p>Download the installation binary from Sun&#8217;s Java site</p>
<p>J2SE for Linux <span class="external free">http://java.sun.com/j2se/1.4.2/download.html.( Download J2SE SDK)</span></p>
<p>You may need to register at the site and then they will send you the download link. Download the non-rpm binary</p>
<p><em>cd /usr/local/src/ </em></p>
<p><em>wget thebinary</em></p>
<p><em>mv j2sdk-1_4_2_18-linux-i586.bin /usr/local/</em></p>
<p><em>cd /usr/local/</em></p>
<p><em>chmod 755 j2sdk-1_4_2_18-linux-i586.bin</em></p>
<p><em>./j2sdk-1_4_2_18-linux-i586.bin</em></p>
<p>Now setup the environment variables.</p>
<p><em>JAVA_HOME=/usr/local/j2sdk1.4.2_18</em></p>
<p><em>export JAVA_HOME</em></p>
<p>Also, you need to add these in the file /etc/profile.</p>
<p><em>JAVA_HOME=/usr/local/j2sdk1.4.2_18</em></p>
<p><em>export JAVA_HOME</em></p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/10/19/usrjavajdkxxx_xbinjava-not-found-install-java-on-linux-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install BFD</title>
		<link>http://presoon.com/blog/2008/10/11/how-to-install-bfd/</link>
		<comments>http://presoon.com/blog/2008/10/11/how-to-install-bfd/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 04:06:44 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[APF]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Attacks]]></category>
		<category><![CDATA[BFD]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=68</guid>
		<description><![CDATA[What is BFD (Brute Force Detection)?

BFD is a modular shell script for parsing applicable logs and checking for authentication failures. There is not much complexity or detail to BFD yet and likewise it is very straight-forward in its installation, configuration and usage. The reason behind BFD is very simple; the fact there is little to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is BFD (Brute Force Detection)?</strong></p>
<p><strong><br />
</strong>BFD is a modular shell script for parsing applicable logs and checking for authentication failures. There is not much complexity or detail to BFD yet and likewise it is very straight-forward in its installation, configuration and usage. The reason behind BFD is very simple; the fact there is little to no authentication and brute force auditing programs in the linux community that work in conjunction with a firewall or real-time facility to place bans. BFD is available at: <a href="http://www.rfxnetworks.com/bfd.php" target="_blank">http://www.rfxnetworks.com/bfd.php</a></p>
<p>This guide will show you how to install and configure BFD to protect your system from brute force hack attempts.</p>
<p><strong>Requirements:</strong><br />
- You MUST have APF Firewall Installed before installing BFD &#8211; it works with APF and requires some APF files to operate.<br />
- Root SSH access to your server</p>
<p><strong></strong><strong><br />
</strong>Login to your server through SSH and su to the root user.</p>
<p><strong>1. </strong><em>cd /usr/local/src/</em>.</p>
<p><!-- COPYRIGHT MIDDLE ART --></p>
<div class="whitetext">Article provided by WebHostGear.com</div>
<div id="beacon_53" style="position: absolute; left: 0px; top: 0px; visibility: hidden;">&lt;a href=&#8217;http://a.wavepointmedia.net/adclick.php?n=a263378f&#8217; target=&#8217;_blank&#8217;&gt;&lt;img src=&#8217;http://a.wavepointmedia.net/adview.php?what=zone:14&amp;amp;n=a263378f&#8217; border=&#8217;0&#8242; alt=&#8221;&gt;&lt;/a&gt;</div>
<p><noscript></noscript><strong>2.</strong> <em>wget </em><a href="http://www.rfxnetworks.com/downloads/bfd-current.tar.gz"><em>http://www.rfxnetworks.com/downloads/bfd-current.tar.gz</em></a></p>
<p><strong>3. </strong><span style="color: #003366;"><em>tar -xvzf bfd-current.tar.gz</em></p>
<p><strong>4.</strong> <em>cd bfd-*</p>
<p></em><strong>5. </strong>Run the install file: <em>./install.sh<br />
</em>You will receive a message saying it has been installed</p>
<p>.: BFD installed<br />
Install path:    /usr/local/bfd<br />
Config path:     /usr/local/bfd/conf.bfd<br />
Executable path: /usr/local/sbin/bfd</p>
<p><strong>6.</strong> Edit the configuration file: <em>vi /usr/local/bfd/conf.bfd</em></p>
<p><strong>7. </strong>Enable brute force hack attempt alerts:</p>
<p>Find: <em>EMAIL_USR=&#8221;root&#8221;</em> CHANGE TO: <em>EMAIL_USR=&#8221;your@yourdomain.com&#8221; </em></p>
<p>Save the changes<em></em></p>
<p><strong>8. </strong>Prevent locking yourself out!<br />
<em>vi /usr/local/bfd/ignore.hosts</em> and add your own trusted IPs</span><span style="color: #003366;"><em><br />
</em>Save the changes<em></em></p>
<p><strong>9.</strong> Run the program!<br />
<em>/usr/local/sbin/bfd -s</em></p>
<p><strong>10.</strong> Customize your applicatoins brute force configuration<br />
Check out the <strong>rules</strong> directory in your <em>/usr/local/bfd</em></p>
<p>Here you&#8217;ll find all kinds of pre-made rules for popular services such as Apache, and ProFTPD w00t!<br />
If you have any clue about shell scripting you can customize them or create new rules for enhanced brute force detection and prevent attacks.</p>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/10/11/how-to-install-bfd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>top: error while loading shared libraries: libncurses.so.4: cannot open shared object file: Error 40</title>
		<link>http://presoon.com/blog/2008/05/14/top-error-while-loading-shared-libraries-libncursesso4-cannot-open-shared-object-file-error-40/</link>
		<comments>http://presoon.com/blog/2008/05/14/top-error-while-loading-shared-libraries-libncursesso4-cannot-open-shared-object-file-error-40/#comments</comments>
		<pubDate>Tue, 13 May 2008 22:14:43 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[top]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=53</guid>
		<description><![CDATA[This error is received when top command is executed.
top
top: error while loading shared libraries: libncurses.so.4: cannot open shared object file: Error 40
Fix.
locate libncurses.so.5
lib/libncurses.so.5
/usr/lib/libncurses.so.5
/usr/lib/libncurses.so.5.5
create symblinks
ln -s /lib/libncurses.so.5 /lib/libncurses.so.4
ln -s /usr/lib/libncurses.so.5 /usr/lib/libncurses.so.4
the location may be different. Just create symblink from libncurses.so.4 to libncurses.so.5
load the configuration
ldconfig
]]></description>
			<content:encoded><![CDATA[<p>This error is received when top command is executed.</p>
<p>top<br />
top: error while loading shared libraries: libncurses.so.4: cannot open shared object file: Error 40</p>
<p>Fix.</p>
<p><em>locate libncurses.so.5</em></p>
<p>lib/libncurses.so.5<br />
/usr/lib/libncurses.so.5<br />
/usr/lib/libncurses.so.5.5</p>
<p>create symblinks<br />
<em>ln -s /lib/libncurses.so.5 /lib/libncurses.so.4</em><br />
<em>ln -s /usr/lib/libncurses.so.5 /usr/lib/libncurses.so.4</em></p>
<p>the location may be different. Just create symblink from libncurses.so.4 to libncurses.so.5</p>
<p>load the configuration<br />
<em>ldconfig</em></p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/05/14/top-error-while-loading-shared-libraries-libncursesso4-cannot-open-shared-object-file-error-40/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>yum.conf  for Centos 4.6</title>
		<link>http://presoon.com/blog/2008/04/24/yumconf-for-centos-46/</link>
		<comments>http://presoon.com/blog/2008/04/24/yumconf-for-centos-46/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 03:41:33 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[yum]]></category>
		<category><![CDATA[yum error]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=28</guid>
		<description><![CDATA[Here is the yum.conf entry for Centos 4.6. Copy all the lines below.
############################
[main]
cachedir=/var/cache/yum
debuglevel=2
logfile=/var/log/yum.log
pkgpolicy=newest
installonlypkgs=kernel kernel-smp kernel-devel kernel-smp-devel kernel-largesmp kernel-largesmp-devel kernel-hugemem kernel-hugemem-devel
distroverpkg=centos-release
tolerant=1
exactarch=1
retries=20
obsoletes=1
gpgcheck=1
plugins=1
# PUT YOUR REPOS HERE OR IN separate files named file.repo
# in /etc/yum.repos.d
############################
Here is the repo for Centos 4.4.
CentOS-Base.repo
# CentOS-Base.repo
#
# This file uses a new mirrorlist system developed by Lance Davis for CentOS.
# The mirror system [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the yum.conf entry for Centos 4.6. Copy all the lines below.</p>
<p>############################</p>
<p>[main]<br />
cachedir=/var/cache/yum<br />
debuglevel=2<br />
logfile=/var/log/yum.log<br />
pkgpolicy=newest<br />
installonlypkgs=kernel kernel-smp kernel-devel kernel-smp-devel kernel-largesmp kernel-largesmp-devel kernel-hugemem kernel-hugemem-devel<br />
distroverpkg=centos-release<br />
tolerant=1<br />
exactarch=1<br />
retries=20<br />
obsoletes=1<br />
gpgcheck=1<br />
plugins=1</p>
<p># PUT YOUR REPOS HERE OR IN separate files named file.repo<br />
# in /etc/yum.repos.d</p>
<p>############################</p>
<p>Here is the repo for Centos 4.4.</p>
<p>CentOS-Base.repo</p>
<pre># CentOS-Base.repo
#
# This file uses a new mirrorlist system developed by Lance Davis for CentOS.
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client.  You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
#
#

[base]
name=CentOS-$releasever - Base
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&amp;arch=$basearch&amp;repo=os
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4

#released updates
[update]
name=CentOS-$releasever - Updates
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&amp;arch=$basearch&amp;repo=updates
#baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4

#packages used/produced in the build but not released
[addons]
name=CentOS-$releasever - Addons
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&amp;arch=$basearch&amp;repo=addons
#baseurl=http://mirror.centos.org/centos/$releasever/addons/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4

#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&amp;arch=$basearch&amp;repo=extras
#baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4

#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&amp;arch=$basearch&amp;repo=centosplus
#baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4

#contrib - packages by Centos Users
[contrib]
name=CentOS-$releasever - Contrib
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&amp;arch=$basearch&amp;repo=contrib
#baseurl=http://mirror.centos.org/centos/$releasever/contrib/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4
</pre>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/24/yumconf-for-centos-46/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
