<?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>Ecommy - your ecommerce support for your online business &#187; Linux</title>
	<atom:link href="http://www.ecommy.com/c/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ecommy.com</link>
	<description>the path to your business success</description>
	<lastBuildDate>Tue, 08 Nov 2011 18:11:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>centos install memcached and memcache php module</title>
		<link>http://www.ecommy.com/linux/centos-install-memcached-and-memcache-php-module</link>
		<comments>http://www.ecommy.com/linux/centos-install-memcached-and-memcache-php-module#comments</comments>
		<pubDate>Thu, 27 Oct 2011 12:16:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.ecommy.com/?p=645</guid>
		<description><![CDATA[      
      1. yum install memcached 2a. wget http://pecl.php.net/get/memcache-3.0.6.tgz 2b. tar -xvf memcache-3.0.6.tgz here is a little storry, we need to use phpize to prepare the imagick php extension for compiling. On my server I have multiple php installations and if I use phpize directly it will compile the extension for a wrong version of php. Even [...]]]></description>
			<content:encoded><![CDATA[      
      <p>1. yum install memcached<br />
2a. wget http://pecl.php.net/get/memcache-3.0.6.tgz<br />
2b. tar -xvf memcache-3.0.6.tgz</p>
<p>here is a little storry, we need to use phpize to prepare the imagick php extension for compiling.<br />
On my server I have multiple php installations and if I use phpize directly it will compile the extension for a wrong version of php. Even if I try using phpize with an absolute path the end result will still be wrong and I’ll get the following errors inside my apache error log:<br />
“PHP Warning: PHP Startup: imagick: Unable to initialize module<br />
Module compiled with module API=20060613<br />
PHP compiled with module API=20090626<br />
These options need to match”</p>
<p>so keeping the story short I backup/rename (temporary) the default php include directory:<br />
3. rename /usr/local/include/php to /usr/local/include/_php (in my case)<br />
I create a symlink inside /usr/local/include/ called php that points to the php include version I whish to compile the imagemagick extension, in this case it will point to /usr/local/php-5.3.2-fcgi/include/php</p>
<p>4. now I continue with:<br />
/usr/local/php-5.3.2-fcgi/bin/phpize</p>
<p>5. I configure with the right php-config file:<br />
./configure –with-php-config=/usr/local/php-5.3.2-fcgi/bin/php-config</p>
<p>6. and the usual<br />
make<br />
make install</p>
<p>7. now check where the imagick.so file was copied to and include it in your php.ini:<br />
extension=/usr/…/extensions/memcache.so</p>
<p>8. start memcache server<br />
memcached -d -u nobody -m 1048 -p 11211 127.0.0.1</p>
<p>9. restart apache<br />
/etc/init.d/httpd restart</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ecommy.com/linux/centos-install-memcached-and-memcache-php-module/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php compile: undefined reference to `xmlXPathContextSetCache&#8217;</title>
		<link>http://www.ecommy.com/linux/php-compile-undefined-reference-to-xmlxpathcontextsetcache</link>
		<comments>http://www.ecommy.com/linux/php-compile-undefined-reference-to-xmlxpathcontextsetcache#comments</comments>
		<pubDate>Mon, 22 Aug 2011 13:27:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.ecommy.com/?p=643</guid>
		<description><![CDATA[      
      I am doing some tests to prepare a new version of PHP on which I needed the xsl library. Everything was going ok after the ./configure command (I added -with-xsl=/usr/lib64 as one of the configure options). I mention that I am using centos 5.3 as OS. When I tried to execute the make command I [...]]]></description>
			<content:encoded><![CDATA[      
      <p>I am doing some tests to prepare a new version of PHP on which I needed the xsl library. Everything was going ok after the ./configure command (I added -with-xsl=/usr/lib64 as one of the  configure options).</p>
<p>I mention that I am using centos 5.3 as OS.</p>
<p>When I tried to execute the make command I got the following error:<br />
&#8220;undefined reference to `xmlXPathContextSetCache&#8217;&#8221; and unfortunately didn&#8217;t found an answer on google that will solve my question. </p>
<p>After some trial &#038; error I noticed that inside /usr/lib64 folder I had a symlink called libxml2.so that pointed to libxml2.so.2.6.23.  I also had the file libxml2.so.2.6.26. </p>
<p>All I did is to change the symlink to point to the newer version of libxml2. In conclusion the problem seems to be in the libxml2 versions prior to 2.6.26 (2.6.25 and bellow)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ecommy.com/linux/php-compile-undefined-reference-to-xmlxpathcontextsetcache/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure: error: Cannot find libmysqlclient under /usr/local</title>
		<link>http://www.ecommy.com/linux/configure-error-cannot-find-libmysqlclient-under-usrlocal</link>
		<comments>http://www.ecommy.com/linux/configure-error-cannot-find-libmysqlclient-under-usrlocal#comments</comments>
		<pubDate>Tue, 26 Jul 2011 22:29:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.ecommy.com/?p=636</guid>
		<description><![CDATA[      
      The fix is pretty simple, run the following commands and afterwards reenter your previous ./configure command ln -s /usr/lib64/libmysqlclient.so /usr/lib/libmysqlclient.so ln -s /usr/lib64/libmysqlclient.so /usr/local/libmysqlclient.so]]></description>
			<content:encoded><![CDATA[      
      <p>The fix is pretty simple, run the following commands and afterwards reenter your previous ./configure command<br />
ln -s /usr/lib64/libmysqlclient.so /usr/lib/libmysqlclient.so<br />
ln -s /usr/lib64/libmysqlclient.so /usr/local/libmysqlclient.so </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ecommy.com/linux/configure-error-cannot-find-libmysqlclient-under-usrlocal/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>install percona in a whm cpanel environment</title>
		<link>http://www.ecommy.com/linux/install-percona-in-a-whm-cpanel-environment</link>
		<comments>http://www.ecommy.com/linux/install-percona-in-a-whm-cpanel-environment#comments</comments>
		<pubDate>Wed, 22 Jun 2011 14:35:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.ecommy.com/?p=628</guid>
		<description><![CDATA[      
      1. stop all services /etc/init.d/httpd stop ; /etc/init.d/exim stop ; /etc/init.d/pure-ftpd stop ; /etc/init.d/dovecot stop ; /etc/init.d/cpanel stop ; /etc/init.d/lfd stop ; /etc/init.d/munin-node stop ; /etc/init.d/crond stop ; /etc/init.d/mysql stop ; /etc/init.d/exim stop ; /etc/init.d/portsentry stop 2. uninstall mysql, the database files are not removed, but feel free to backup them if you want check [...]]]></description>
			<content:encoded><![CDATA[      
      <p>1. stop all services<br />
/etc/init.d/httpd stop ; /etc/init.d/exim stop ; /etc/init.d/pure-ftpd stop ; /etc/init.d/dovecot stop ; /etc/init.d/cpanel stop ; /etc/init.d/lfd stop ; /etc/init.d/munin-node stop ; /etc/init.d/crond stop ; /etc/init.d/mysql stop ; /etc/init.d/exim stop ; /etc/init.d/portsentry stop</p>
<p>2. uninstall mysql, the database files are not removed, but feel free to backup them if you want<br />
check the installed mysql packages<br />
yum list installed | grep -i mysql<br />
and now unsinstall them one by one, in my case:<br />
yum remove MySQL-test.x86_64<br />
yum remove MySQL-shared.x86_64<br />
yum remove MySQL-server.x86_64<br />
yum remove MySQL-devel.x86_64<br />
yum remove MySQL-client.x86_64</p>
<p>3. install yum repository for percona<br />
rpm -Uhv http://www.percona.com/downloads/percona-release/percona-release-0.0-1.x86_64.rpm</p>
<p>4. install percona yum install Percona-Server-client-51 Percona-Server-server-51<br />
LATER UPDATE!!!!<br />
please install the separate rpm from this because later you&#8217;ll run into all sort of dependency problems on centos5:</p>
<p>http://www.percona.com/downloads/Percona-Server-5.1/Percona-XtraDB-5.1.43-9.1/RPM/rhel5/x86_64/</p>
<p>you need to use rpm -ivh ~package_name.rpm~</p>
<p>5. now go to whm configuration section and set up mysql not to be updated automatically</p>
<p>6. you may need to recompile php, I needed to do it anyway so I am not sure if it wil work if you won&#8217;t compile it</p>
<p>7. start services again<br />
/etc/init.d/httpd start ; /etc/init.d/exim start ; /etc/init.d/pure-ftpd start ; /etc/init.d/dovecot start ; /etc/init.d/cpanel start ; /etc/init.d/lfd start ; /etc/init.d/munin-node start ; /etc/init.d/crond start ; /etc/init.d/mysql start ; /etc/init.d/exim start ; /etc/init.d/portsentry start</p>
<p>8. optionally install percona xbackup<br />
yum install xtrabackup</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ecommy.com/linux/install-percona-in-a-whm-cpanel-environment/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>install imagick for php</title>
		<link>http://www.ecommy.com/linux/install-imagick-for-php</link>
		<comments>http://www.ecommy.com/linux/install-imagick-for-php#comments</comments>
		<pubDate>Tue, 07 Jun 2011 22:30:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.ecommy.com/?p=624</guid>
		<description><![CDATA[      
      I&#8217;ll describe the installation process for Centos as this is my server&#8217;s operating system, the installation is very similar for any linux flavour. In order to have imagick class available inside php firstly we need to install ImageMagick-devel: 1. yum install ImageMagick-devel then, download &#038; extract the imagick pecl package: 2.a. cd ~ 2.b. wget [...]]]></description>
			<content:encoded><![CDATA[      
      <p>I&#8217;ll describe the installation process for Centos as this is my server&#8217;s operating system, the installation is very similar for any linux flavour.</p>
<p>In order to have imagick class available inside php firstly we need to install ImageMagick-devel:<br />
1. yum install ImageMagick-devel</p>
<p>then, download &#038; extract the imagick pecl package:<br />
2.a. cd ~<br />
2.b. wget http://pecl.php.net/get/imagick-3.0.1.tgz<br />
2.c. tar -xvf imagick-3.0.1.tgz<br />
2.d cd imagick-3.0.1.tgz</p>
<p>here is a little storry, we need to use phpize to prepare the imagick php extension for compiling.<br />
On my server I have multiple php installations and if I use phpize directly it will compile the extension for a wrong version of php. Even if I try using phpize with an absolute path the end result will still be wrong and I&#8217;ll get the following errors inside my apache error log:<br />
&#8220;PHP Warning:  PHP Startup: imagick: Unable to initialize module<br />
Module compiled with module API=20060613<br />
PHP    compiled with module API=20090626<br />
These options need to match&#8221;</p>
<p>so keeping the story short I backup/rename (temporary) the default php include directory:<br />
3. rename /usr/local/include/php to /usr/local/include/_php (in my case)<br />
I create a symlink inside /usr/local/include/ called php that points to the php include version I whish to compile the imagemagick extension, in this case it will point to /usr/local/php-5.3.2-fcgi/include/php</p>
<p>4. now I continue with:<br />
/usr/local/php-5.3.2-fcgi/bin/phpize</p>
<p>5. I configure with the right php-config file:<br />
./configure &#8211;with-php-config=/usr/local/php-5.3.2-fcgi/bin/php-config</p>
<p>6. and the usual<br />
make<br />
make install</p>
<p>7. now check where the imagick.so file was copied to and include it in your php.ini:<br />
extension=/usr/&#8230;/extensions/no-debug-non-zts-20090626/imagick.so</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ecommy.com/linux/install-imagick-for-php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>install apc for php</title>
		<link>http://www.ecommy.com/linux/install-apc-for-php</link>
		<comments>http://www.ecommy.com/linux/install-apc-for-php#comments</comments>
		<pubDate>Wed, 04 May 2011 20:24:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.ecommy.com/?p=611</guid>
		<description><![CDATA[      
      cd to where you dearchived the sourcecode files for apc export PHP_PREFIX=&#8221;/opt/php&#8221;, where /opt/php is where you have php installed $PHP_PREFIX/bin/phpize ./configure &#8211;with-php-config=$PHP_PREFIX/bin/php-config make make install add in php.ini the reference to the new extension that was copied inside extension folder restart apacje]]></description>
			<content:encoded><![CDATA[      
      <p>cd to where you dearchived the sourcecode files for apc<br />
export PHP_PREFIX=&#8221;/opt/php&#8221;, where /opt/php is where you have php installed<br />
$PHP_PREFIX/bin/phpize<br />
./configure &#8211;with-php-config=$PHP_PREFIX/bin/php-config<br />
make<br />
make install</p>
<p>add in php.ini the reference to the new extension that was copied inside extension folder<br />
restart apacje</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ecommy.com/linux/install-apc-for-php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux track cpu usage per user</title>
		<link>http://www.ecommy.com/linux/linux-track-cpu-usage-per-user</link>
		<comments>http://www.ecommy.com/linux/linux-track-cpu-usage-per-user#comments</comments>
		<pubDate>Sat, 26 Mar 2011 13:54:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.ecommy.com/?p=606</guid>
		<description><![CDATA[      
      Quick info how to setup everything so you&#8217;ll be able to check the cpu user per each user. As a note I have the PHP set up in fcgid mode and also suexec so each php process is running under the proper username. The solution I found is to install munin &#8211; this can be [...]]]></description>
			<content:encoded><![CDATA[      
      <p>Quick info how to setup everything so you&#8217;ll be able to check the cpu user per each user.<br />
As a note I have the PHP set up in fcgid mode and also suexec so each php process is running under the proper username.</p>
<p>The solution I found is to install munin &#8211; this can be installed from 1. shell 2. whm</p>
<p>1. from shell it&#8217;s as simple as:<br />
1.a.  sudo yum -y install munin<br />
1.b.  sudo yum -y install munin-node</p>
<p>if you run into dependencies problem make sure to check what you have in the global exclude list (I had ruby and perl packages excluded). Also set up the proper repositories:</p>

<div class="wp_syntax"><div class="code"><pre class="bash"><span class="kw2">sudo</span> <span class="kw2">vi</span> <span class="sy0">/</span>etc<span class="sy0">/</span>yum.repos.d<span class="sy0">/</span>dag.repo</pre></div></div>

<p>and inside the file place:</p>

<div class="wp_syntax"><div class="code"><pre class="bash"><span class="br0">&#91;</span>dag<span class="br0">&#93;</span>
<span class="re2">name</span>=Dag RPM Repository <span class="kw1">for</span> Red Hat Enterprise Linux
<span class="re2">baseurl</span>=http:<span class="sy0">//</span>apt.sw.be<span class="sy0">/</span>redhat<span class="sy0">/</span>el<span class="re1">$releasever</span><span class="sy0">/</span>en<span class="sy0">/</span><span class="re1">$basearch</span><span class="sy0">/</span>dag
<span class="re2">gpgcheck</span>=<span class="nu0">1</span>
<span class="re2">gpgkey</span>=http:<span class="sy0">//</span>dag.wieers.com<span class="sy0">/</span>rpm<span class="sy0">/</span>packages<span class="sy0">/</span>RPM-GPG-KEY.dag.txt
<span class="re2">enabled</span>=<span class="nu0">1</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="bash"><span class="kw2">sudo</span>  <span class="kw2">vi</span> <span class="sy0">/</span>etc<span class="sy0">/</span>yum.repos.d<span class="sy0">/</span>rubyworks.repo</pre></div></div>

<p>and inside the file place:</p>

<div class="wp_syntax"><div class="code"><pre class="bash"><span class="co0"># Link file for RubyWorks yum repository</span>
<span class="co0"># Place this file in /etc/yum.repos.d</span>
&nbsp;
<span class="br0">&#91;</span>rubyworks<span class="br0">&#93;</span>
<span class="re2">name</span>=RubyWorks
<span class="re2">baseurl</span>=http:<span class="sy0">//</span>rubyworks.rubyforge.org<span class="sy0">/</span>redhat<span class="sy0">/</span><span class="re1">$releasever</span><span class="sy0">/</span>RPMS<span class="sy0">/</span><span class="re1">$basearch</span>
<span class="re2">enabled</span>=<span class="nu0">1</span>
<span class="re2">gpgcheck</span>=<span class="nu0">1</span>
<span class="re2">gpgkey</span>=http:<span class="sy0">//</span>rubyworks.rubyforge.org<span class="sy0">/</span>RubyWorks.GPG.key
<span class="re2">priority</span>=<span class="nu0">1</span></pre></div></div>

<p>2. if you have cpanel installed, from whm is a lot simpler:<br />
2.a go to plugins and install munin from there<br />
2.b go to whm home->plugins->Munin Service Monitor and there you have all the graphs</p>
<p>Latest steps is to install this plugin: http://exchange.munin-monitoring.org/plugins/cpubyuser/details<br />
and restart the munin-node:</p>

<div class="wp_syntax"><div class="code"><pre class="bash"><span class="kw2">sudo</span> <span class="sy0">/</span>etc<span class="sy0">/</span>init.d<span class="sy0">/</span>munin-node restart</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.ecommy.com/linux/linux-track-cpu-usage-per-user/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solving: mod_fcgid: read data timeout</title>
		<link>http://www.ecommy.com/linux/solving-mod_fcgid-read-data-timeout</link>
		<comments>http://www.ecommy.com/linux/solving-mod_fcgid-read-data-timeout#comments</comments>
		<pubDate>Sat, 23 Oct 2010 14:35:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.ecommy.com/?p=557</guid>
		<description><![CDATA[      
      This is starting to be a more and more common problem because the hosting companies are using fcgid more often (which is a great thing as fcgid and suexec combination has a lot of advantages). solving the read data timeout for mod fcgid is not as hard as it seems it just required some testing: [...]]]></description>
			<content:encoded><![CDATA[      
      <p>This is starting to be a more and more common problem because the hosting companies are using fcgid more often (which is a great thing as fcgid and suexec combination has a lot of advantages). </p>
<p>solving the read data timeout for mod fcgid is not as hard as it seems it just required some testing: in http.conf &#8211; the configuration file for apache or in a file that&#8217;s included in http.conf place the following line:</p>
<p>IPCCommTimeout 120 or any number of seconds you find suitable for your server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ecommy.com/linux/solving-mod_fcgid-read-data-timeout/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>error removing addon domain from cpanel</title>
		<link>http://www.ecommy.com/linux/error-removing-addon-domain-from-cpanel</link>
		<comments>http://www.ecommy.com/linux/error-removing-addon-domain-from-cpanel#comments</comments>
		<pubDate>Fri, 22 Oct 2010 19:21:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.ecommy.com/?p=554</guid>
		<description><![CDATA[      
      Recently I was unable to remove a domain from cpanel after firstly I deleted the dns zone for that domain (using whm) The error was: &#8220;There was a problem removing the Addon Domain&#8221; and details of the error explained: &#8220;Error from park wrapper: Sorry, you do not control the domain exampledomain.com&#8221; I used the following [...]]]></description>
			<content:encoded><![CDATA[      
      <p>Recently I was unable to remove a domain from cpanel after firstly I deleted the dns zone for that domain (using whm)</p>
<p>The error was: &#8220;There was a problem removing the Addon Domain&#8221; and details of the error explained: &#8220;Error from park wrapper: Sorry, you do not control the domain exampledomain.com&#8221;</p>
<p>I used the following steps to remove the domain:</p>
<p>1. Remove domain.com from /var/cpanel/users/username<br />
2. Run /scripts/updateuserdomains as root user on the server.<br />
3. Remove /var/named/exampledomain.com.db<br />
4. Remove the virtualhost for domain.com on /usr/local/apache/conf/httpd.conf<br />
5. Remove exampledomain.com from /etc/named.conf</p>
<p>Simple as that!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ecommy.com/linux/error-removing-addon-domain-from-cpanel/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Centos add additional repositories</title>
		<link>http://www.ecommy.com/linux/centos-add-additional-repositories</link>
		<comments>http://www.ecommy.com/linux/centos-add-additional-repositories#comments</comments>
		<pubDate>Mon, 11 Oct 2010 21:42:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.ecommy.com/?p=551</guid>
		<description><![CDATA[      
      yum install yum-priorities edit all .repo files from /etc/yum.repos.d/ and add bellow: [base], [addons], [updates], [extras], [centosplus] priority=1 bellow [contrib] priority=2 download RPMforge and check the file rpm &#8211;import http://apt.sw.be/RPM-GPG-KEY.dag.txt rpm -K rpmforge-release-0.5.1-1.el5.rf.*.rpm install and check the installation rpm -i rpmforge-release-0.5.1-1.el5.rf.*.rpm yum check-update done]]></description>
			<content:encoded><![CDATA[      
      <p>yum install yum-priorities<br />
edit all .repo files from /etc/yum.repos.d/ and add bellow:<br />
[base], [addons], [updates], [extras], [centosplus]<br />
priority=1</p>
<p>bellow [contrib]<br />
priority=2</p>
<p>download RPMforge and check the file<br />
rpm &#8211;import http://apt.sw.be/RPM-GPG-KEY.dag.txt<br />
rpm -K rpmforge-release-0.5.1-1.el5.rf.*.rpm</p>
<p>install and check the installation<br />
rpm -i rpmforge-release-0.5.1-1.el5.rf.*.rpm<br />
yum check-update</p>
<p>done</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ecommy.com/linux/centos-add-additional-repositories/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.ecommy.com/c/linux/feed ) in 0.37990 seconds, on Feb 6th, 2012 at 10:08 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 6th, 2012 at 11:08 am UTC -->
