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 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…

How to Add IPv6 Address on Ubuntu

In this tutorial, we will explain how to add IPv6 Address on your Ubuntu Server. Interface: eth0 IPv6 Address: 2001:19c0:000e:0013:8000:0000:0000:0602/120 IPv6 Gateway: 2001:19c0:000e:0013:8000:0000:0000:0601 Log your Ubuntu server by SSH and open the network config file nano /etc/network/interfaces Add the following block in your config iface eth0 inet6 static pre-up modprobe ipv6 address 2001:19c0:000e:0013:8000:0000:0000:0602 netmask 120…

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…