fThere are no of commands to check hardware information about your Linux systems, Some commands report only specific hardware components like CPU or memory while the rest show multiple hardware info. In this article we have a quick look at some of the commands which are used to check configuration details about different hardware devices. […]
Category: Linux
Change document root for primary domain in cPanel/WHM
This article will explain how to get change root document for your primary domain. You need to have root access to change the main/primary domain document root in cPanel, Use following steps to change document root of your primary domain in cPanel/whm. […]
How to install LNMP on CentOS 7
LNMP stands for Linux, Nginx, MySQL and PHP. In this this article we will show you how to set up working Nginx server to host your websites on your VPS with CentOS 7 version. […]
How to find out top processes by memory usage in Linux
As a Linux administrator,You might be curious about how much memory your running processes are using.In this article we’ll show you some commands that can sort out top processes by memory usage on your Linux system. […]
How to install FAIL2BAN on CentOS
This article will guide you how to install Fail2Ban on CentOS so that you can protect your server from Brute force attacks, previously we have discuss about some basic configs for CentOS. But sometimes that is not enough as brute force attacks may occur occasionally. Fail2ban scan log files for selected entries then bans IPs […]
Clear or Remove Last Login information in Linux
If you are Linux user and you want to know how to clear all login information in Linux, so in this article we will learn how to clear or remove the last login information on a Linux server from the command line. […]
How to Disable root Login in phpMyAdmin ?
In this guide we will show you how to restrict root login through phpMyAdmin.For this you have to edit phpMyAdmin configuration file config.inc.php and update following parameters: cd /usr/share/phpmyadmin # nano config.inc.php $cfg[‘Servers’][$i][‘auth_type’] = ‘cookie’; $cfg[‘Servers’][$i][‘AllowRoot’] = FALSE; If there is no config.inc.php file available, You can create it by copying config.sample.inc.php file at same location. # […]
How to use a SED in Linux
SED provides an effective and a flexible way of removing one or more lines from a specific file to suit the needs of the user. This Linux command is used for command line handling. […]
Disable ping response in Linux system
Usually ping is a small packet sent to a machine to check if machine is up. The ping response from an IP indicates the machine is up. You may want to disable ping replies for many reasons, may be for a security reason, or to avoid network congestion. […]
How to Upload Large Images in WordPress
Recently, one of our users getting error when uploading large images in WordPress. Many users face this error when trying to upload larger images in WordPress. It happens due to the file size limit. In this article, we will guide you how to fix this and upload large images in WordPress. […]