How to File Manipulation in Linux
How to File Manipulation in Linux This guide is only going to show an overview of the commands. To find out more about each command you can run the following command: man [command] The following is the test directory structure we’ll be using throughout the upcoming examples: [root@c7 test]# ll total 4 drwxr-xr-x 2 […]
How to Read and Edit Files in Linux
How to Read and Edit Files in Linux This guide is only going to show an overview of the commands. To find out more about each command you can run the following: man [command] There are several ways to output a file in Linux. Here are two test files and their content, we’ll be using […]
How to get Domain Information in Linux
How to get Domain Information in Linux This guide is only going to show an overview of the commands. To find out more about each command you can run the following: man [command] dig dig is used to query DNS servers. N.B. dig will query the nameservers defined in the /etc/resolv.conf file. If you are running a DNS server on […]
How to Setting up cron jobs
How to Setting up cron jobs cron is a time-based job scheduler found in most Linux based operating systems, it is used to execute jobs at regular intervals. The easiest way to add cron jobs to your server is to use the crontab utility. The manual page for the tool can tell you all you need to know […]
How to Connect to your server via SSH
How to Connect to your server via SSH If you’ve ordered a control panel with your Linux solution, then this will be the main way you interact with your server. Both Plesk and cPanel allow you to easily add domains and mailboxes, as well as other various things. The minute you find yourself wanting to […]
How to Monitor performance with atop
How to Monitor performance with atop A handy utility to monitor performance on a server is atop. Generally speaking this is a more detailed and interactive alternative to the top utility. Installation You will need to install atop through the yum utility. You can use the below command to install atop. yum install atop You may receive an error if […]
How to Add an IP Address in Linux
How to Add an IP Address in Linux You should speak with your account manager to have an IP address assigned to you before adding IPs to your server. The quickest way to add an IP on either CentOS or Ubuntu would be to use the ip command as follows: ip addr add 10.10.10.10/28 brd + dev […]
How to Create cPanel Account in WHM
How to Create cPanel Account in WHM If you’re a VPS service provider, a Reseller host, or a own a Dedicated hosting plan, you will likely have to create a cPanel amount in WHM. With WHM you can manage and host separate cPanel accounts independent from one another, and the cPanel users are completely unaware of […]