How to install CSF Firewall on cPanel Server

In this tutorial, we will explain how to install CSF Firewall on your cPanel Server. Requirement: cPanel Dedicated Server root access First log your cPanel Server by SSH ssh root@your_cpanel_server_ip Download and extract CSF on your server cd /usr/local/src/ wget https://download.configserver.com/csf.tgz tar -xzf csf.tgz Start the installation of CSF cd csf sh install.sh When done,…

How to install Let’s Encrypt on CentOS 7 with Apache

In this tutorial, we will explain how to install Let’s Encrypt SSL on CentOS 7 running Apache webserver. Requirement: CentOS 7 Server Apache webserver with a working virtual host Installation of the required packages yum install epel-release -y yum install mod-ssl -y Install the Let’s Encrypt client yum install python-certbot-apache -y Installation of the SSL…

How to delete large amount of files in Linux

In this tutorials, we will show you how to delete a large amount of files in Linux if you receive this error when using rm -rf command : “Argument list is too long”. You can use the command “find” to delete the files. How to delete large amount of files with the command find Go…