Scan FTP uploaded files on cpanel servers

Scan FTP uploaded files on cPanel servers First lets install clamAV , it has been now been included in Cpanel/WHM you can do so from your WHM interface as root by clicking on : Cpanel —> Manage Plugins —> on clamavconnector Check the “Install and Keep Updated” and then click at the bottom of the […]

Important cpanel/whm files

Important cPanel/whm files /etc/httpd/conf/httpd.conf – apache configuration file /etc/exim.conf – mail server configuration file /etc/named.conf – name server (named) configuration file /etc/proftpd.conf – proftpd server configuration file /etc/pure-ftpd.conf – pure-ftpd server configuration file /etc/valiases/domainname – catchall and forwarders are set here /etc/vfilters/domainname – email filters are set here /etc/userdomains – all domains are listed here […]

How to Zip and Unzip files in UNIX

Here is how to Zip and Unzip files in UNIX unzip myFile.zip – This command will uncompress compressed files with the .zip extension. tar xvf myFile.tar – This command will uncompress compressed files with the .tar extension. gunzip myFile.gz  – This command will uncompress compressed files with the .gz extension.