How to install cPanel & WHM
To install cPanel you will need a compatible operating system, we highly recommend using CentOS 7 for cPanel installations. On a fresh install of CentOS 7, run the following commands. yum update -y yum -y install perl hostname set-your-hostname systemctl...
How to check internet speed test with linux command lines
Use the terminal command below to perform a speed test on any Linux distribution (CentOS, Ubuntu, Debian etc) curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python - The results should look similar to the below.
How to install nload on Ubuntu and Centos
nload is a console/terminal application that allows you to view your current network bandwidth activity for both incoming and outgoing connections in real-time, in addition, displays your maximum peak and minimum network traffic. To install nload on Ubuntu use the following...
How to Tune PHP-FPM Guide
Have you ever spent hours tuning PHP-FPM, stress tested it until everything runs smoothly? You deploy your changes into production and within a few hours or days, it suddenly crashes? requiring a manual restart, whilst in the meantime taking your...
SCP Command Line Examples – Transferring files from one Linux host to another
Copy file from a remote host to local host SCP example: scp [email protected]_host:file.txt /local/directory/ Copy file from localhost to a remote host SCP example: scp file.txt [email protected]_host:/remote/directory/ Copy all files and folders from a directory on a local host...