<?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>EZ Linux Admin</title>
	<atom:link href="http://www.ezlinuxadmin.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ezlinuxadmin.com</link>
	<description>Making Linux Easier</description>
	<lastBuildDate>Wed, 03 Mar 2010 12:19:41 +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>Getting a md5sum error when tranferring a cpanel account?</title>
		<link>http://www.ezlinuxadmin.com/2010/03/getting-a-md5sum-error-when-tranferring-a-cpanel-account/</link>
		<comments>http://www.ezlinuxadmin.com/2010/03/getting-a-md5sum-error-when-tranferring-a-cpanel-account/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 12:19:41 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Cpanel and WHM]]></category>
		<category><![CDATA[Linux Commands]]></category>
		<category><![CDATA[Linux Software / Scripts]]></category>
		<category><![CDATA[Cpanel transfer error]]></category>
		<category><![CDATA[md5sum error]]></category>
		<category><![CDATA[upgrade perl]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=434</guid>
		<description><![CDATA[This usually means you need to upgrade Perl on the server. Here is a example of a md5sum error.
The remote server didn&#8217;t report a correct md5sum of the archive. Please ensure you selected the correct type of remote server.
To fix upgrade Perl as shown here:
http://www.ezlinuxadmin.com/2009/08/upgrading-perl-on-cpanel/
]]></description>
			<content:encoded><![CDATA[<p>This usually means you need to upgrade Perl on the server. Here is a example of a md5sum error.</p>
<blockquote><p>The remote server didn&#8217;t report a correct md5sum of the archive. Please ensure you selected the correct type of remote server.</p></blockquote>
<p>To fix upgrade Perl as shown here:</p>
<p><a href="http://www.ezlinuxadmin.com/2009/08/upgrading-perl-on-cpanel/">http://www.ezlinuxadmin.com/2009/08/upgrading-perl-on-cpanel/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/03/getting-a-md5sum-error-when-tranferring-a-cpanel-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My new favorite rsync command</title>
		<link>http://www.ezlinuxadmin.com/2010/03/my-new-favorite-rsync-command/</link>
		<comments>http://www.ezlinuxadmin.com/2010/03/my-new-favorite-rsync-command/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 12:04:33 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Linux Commands]]></category>
		<category><![CDATA[Linux Software / Scripts]]></category>
		<category><![CDATA[Linux Tricks]]></category>
		<category><![CDATA[rsync code]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=432</guid>
		<description><![CDATA[rsync -vae ssh 12.123.123.123:/home/dwhsbackup/daily/username/ /backup/cpbackup/daily2/username/ –bwlimit=10000 &#8211;exclude-from &#8216;/root/exclude.txt&#8217;
]]></description>
			<content:encoded><![CDATA[<blockquote><p>rsync -vae ssh 12.123.123.123:/home/dwhsbackup/daily/username/ /backup/cpbackup/daily2/username/ –bwlimit=10000 &#8211;exclude-from &#8216;/root/exclude.txt&#8217;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/03/my-new-favorite-rsync-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calm down rsync if it overloads your IO memory or CPU</title>
		<link>http://www.ezlinuxadmin.com/2010/03/rsync-overloads-io-memory-cpu/</link>
		<comments>http://www.ezlinuxadmin.com/2010/03/rsync-overloads-io-memory-cpu/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 11:57:14 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Cheat Sheets]]></category>
		<category><![CDATA[Linux Commands]]></category>
		<category><![CDATA[Linux Security]]></category>
		<category><![CDATA[Linux Software / Scripts]]></category>
		<category><![CDATA[Linux Tricks]]></category>
		<category><![CDATA[limit io]]></category>
		<category><![CDATA[limit rsync]]></category>
		<category><![CDATA[rsync io]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=430</guid>
		<description><![CDATA[The trick is to limit I/O bandwidth for rsync.
The &#8211;bwlimit option limit I/O bandwidth. You need to set bandwidth using KBytes per second. For example, limit I/O bandwidth to 10000KB/s (9.7MB/s), enter:
rsync &#8211;delete &#8211;numeric-ids &#8211;relative &#8211;delete-excluded &#8211;bwlimit=10000 /path/to/source /path/to/dest/?
10 megs a second is plenty of speed and will keep the server running smoothly when your [...]]]></description>
			<content:encoded><![CDATA[<p>The trick is to limit I/O bandwidth for rsync.</p>
<p>The &#8211;bwlimit option limit I/O bandwidth. You need to set bandwidth using KBytes per second. For example, limit I/O bandwidth to 10000KB/s (9.7MB/s), enter:</p>
<blockquote><p>rsync &#8211;delete &#8211;numeric-ids &#8211;relative &#8211;delete-excluded &#8211;bwlimit=10000 /path/to/source /path/to/dest/?</p></blockquote>
<p>10 megs a second is plenty of speed and will keep the server running smoothly when your grabbing allot of files off of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/03/rsync-overloads-io-memory-cpu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rsync running slow?</title>
		<link>http://www.ezlinuxadmin.com/2010/03/rcync-running-slow/</link>
		<comments>http://www.ezlinuxadmin.com/2010/03/rcync-running-slow/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 05:31:19 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux Commands]]></category>
		<category><![CDATA[Linux Tricks]]></category>
		<category><![CDATA[reboot nic]]></category>
		<category><![CDATA[rsync slow]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=427</guid>
		<description><![CDATA[Today I was transferring files through rsync it was taking forever, my guess was the new server or old server was out of memory so I killed some procs and even rebooting the server but still it was crawling. So I thought I would think out of the box and after a couple trial and [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was transferring files through rsync it was taking forever, my guess was the new server or old server was out of memory so I killed some procs and even rebooting the server but still it was crawling. So I thought I would think out of the box and after a couple trial and errors I tried a nic reboot and wow it was super fast from there.</p>
<blockquote><p>/etc/init.d/network restart</p></blockquote>
<p>I&#8217;m still not sure how the nic got blogged up but this worked like charm.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/03/rcync-running-slow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All cpanel server should have the /var tmp folder symlinked to /tmp</title>
		<link>http://www.ezlinuxadmin.com/2010/03/all-cpanel-server-should-have-the-var-tmp-folder-symlinked-to-tmp/</link>
		<comments>http://www.ezlinuxadmin.com/2010/03/all-cpanel-server-should-have-the-var-tmp-folder-symlinked-to-tmp/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 03:51:35 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Linux Images]]></category>
		<category><![CDATA[/tmp]]></category>
		<category><![CDATA[/var]]></category>
		<category><![CDATA[/var/tmp]]></category>
		<category><![CDATA[symlink var tmp]]></category>
		<category><![CDATA[var tmp]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=425</guid>
		<description><![CDATA[Here is how, first remove the /var/tmp folder
rm -rf /var/tmp
Then add the symlink:
ln -s /tmp /var/tmp
]]></description>
			<content:encoded><![CDATA[<p>Here is how, first remove the /var/tmp folder</p>
<blockquote><p>rm -rf /var/tmp</p></blockquote>
<p>Then add the symlink:</p>
<blockquote><p>ln -s /tmp /var/tmp</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/03/all-cpanel-server-should-have-the-var-tmp-folder-symlinked-to-tmp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free /usr partition space by a symlink to domlogs</title>
		<link>http://www.ezlinuxadmin.com/2010/02/free-usr-partition-space-symlink-domlogs/</link>
		<comments>http://www.ezlinuxadmin.com/2010/02/free-usr-partition-space-symlink-domlogs/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 00:04:15 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Linux Commands]]></category>
		<category><![CDATA[Linux Tricks]]></category>
		<category><![CDATA[domlog]]></category>
		<category><![CDATA[free /usr space]]></category>
		<category><![CDATA[symlink]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=422</guid>
		<description><![CDATA[First move the domlogs folder to the backup partition:
mv /usr/local/apache/domlogs /backup
Then create a symbolic link to it:
ln -s /backup/domlogs /usr/local/apache/domlogs
]]></description>
			<content:encoded><![CDATA[<p>First move the domlogs folder to the backup partition:</p>
<blockquote><p>mv /usr/local/apache/domlogs /backup</p></blockquote>
<p>Then create a symbolic link to it:</p>
<blockquote><p>ln -s /backup/domlogs /usr/local/apache/domlogs</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/02/free-usr-partition-space-symlink-domlogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Default MYSQL port</title>
		<link>http://www.ezlinuxadmin.com/2010/02/default-mysql-port/</link>
		<comments>http://www.ezlinuxadmin.com/2010/02/default-mysql-port/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 20:48:58 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Cheat Sheets]]></category>
		<category><![CDATA[Linux Security]]></category>
		<category><![CDATA[Ports]]></category>
		<category><![CDATA[default mysql port]]></category>
		<category><![CDATA[mysql port]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=419</guid>
		<description><![CDATA[The default MYSQL port is:
3306
]]></description>
			<content:encoded><![CDATA[<p>The default MYSQL port is:</p>
<blockquote><p>3306</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/02/default-mysql-port/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Path to PHP CLI in CPanel</title>
		<link>http://www.ezlinuxadmin.com/2010/02/path-to-php-cli-in-cpanel/</link>
		<comments>http://www.ezlinuxadmin.com/2010/02/path-to-php-cli-in-cpanel/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 20:33:06 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Cpanel and WHM]]></category>
		<category><![CDATA[Linux Software / Scripts]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[php cli]]></category>
		<category><![CDATA[php cli cpanel]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=414</guid>
		<description><![CDATA[PHP CLI is installed by default by CPanel and placed in:
/usr/local/bin
or
/usr/bin
]]></description>
			<content:encoded><![CDATA[<p>PHP CLI is installed by default by CPanel and placed in:</p>
<blockquote><p>/usr/local/bin</p></blockquote>
<p>or</p>
<blockquote><p>/usr/bin</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/02/path-to-php-cli-in-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Location of SSL certs and keys for CPanel and users</title>
		<link>http://www.ezlinuxadmin.com/2010/02/ssl-cert-key-locations-cpanel/</link>
		<comments>http://www.ezlinuxadmin.com/2010/02/ssl-cert-key-locations-cpanel/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 18:13:36 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Cpanel and WHM]]></category>
		<category><![CDATA[Linux Security]]></category>
		<category><![CDATA[cpanel server]]></category>
		<category><![CDATA[cpanel ssl]]></category>
		<category><![CDATA[ssl key location]]></category>
		<category><![CDATA[ssl location]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=406</guid>
		<description><![CDATA[I was tracking down the location for each users SSL on a CPanel based server and wanted to post the locations here since they are a little off the beaten track. This is good to have around for when you want to clean out old certs and keys that are just jumbling your SSL trackers.
Here [...]]]></description>
			<content:encoded><![CDATA[<p>I was tracking down the location for each users SSL on a CPanel based server and wanted to post the locations here since they are a little off the beaten track. This is good to have around for when you want to clean out old certs and keys that are just jumbling your SSL trackers.</p>
<p>Here is the ssl key and certificate locations on a cpanel based server:</p>
<blockquote><p>/usr/share/ssl/private<br />
/usr/share/ssl/certs</p></blockquote>
<p>If you still need to buy a SSL cert please consider the non-profit <a href="http://www.sslca.com">SSLCA</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/02/ssl-cert-key-locations-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who command</title>
		<link>http://www.ezlinuxadmin.com/2010/02/who-command/</link>
		<comments>http://www.ezlinuxadmin.com/2010/02/who-command/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 00:00:25 +0000</pubDate>
		<dc:creator>EZ linux</dc:creator>
				<category><![CDATA[Linux Commands]]></category>
		<category><![CDATA[who command]]></category>

		<guid isPermaLink="false">http://www.ezlinuxadmin.com/?p=402</guid>
		<description><![CDATA[This command will show who is logged into your system.
who
]]></description>
			<content:encoded><![CDATA[<p>This command will show who is logged into your system.</p>
<blockquote><p>who</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ezlinuxadmin.com/2010/02/who-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
