How to Verify the Hard Disk Usage with iostat in Linux

In this tutorial, we will show you how to verify the hard disk usage of your server with iostat. Install iostat package Centos yum install sysstat -y Debian/Ubuntu apt-get install sysstat -y Run iostat to get the hard disk usage iostat -x -m 5 avg-cpu: %user %nice %system %iowait %steal %idle 1.60 0.00 0.46 0.31…

How to install sar (sysstat) on Ubuntu and Debian

In this tutorial we will explain how to install “sar” sysstat on Ubuntu and Debian Server Installation of sysstat apt-get install sysstat -y Run sysstat sar -q If you get this error : Cannot open /var/log/sysstat/sa15: No such file or directory· You need to enable sysstat in the config file nano /etc/default/sysstat … # Should…

How to block an IP Address with iptables

In this tutorial, we will explain you how to block and unblock an IPv4 and IPv6 Address on your Linux Dedicated Server with iptables. Block an IPv4 Address iptables -A INPUT -s IP_ADDRESS -j DROP Block an IPv6 Address ip6tables -A INPUT -s IP_ADDRESS -j DROP Block an IPv4 Address on a specific port iptables…

How to install VestaCP on Linux

In this tutorial, we will expllain you how to install VestaCP control Panel on your Linux Dedicated Server. VestaCP can be installed on CentOS, Ubuntu and Debian. Curl is required for the installation Centos yum install curl -y Debian/Ubuntu apt-get install curl -y Download the installation script curl -O http://vestacp.com/pub/vst-install.sh Start the installation of VestaCP…