bookmark_borderHow to view the processes and resource usage on my VPS

Glances:

Glances is a cross-platform curses-based monitoring tool which is used to see the process and resources usage. It provides the monitoring details of following:

  • CPU
  • Memory
  • Load
  • Process list
  • Network interface
  • Disk I/O
  • Raid
  • Sensors
  • Filesystem
  • Docker
  • Monitor
  • Alert
  • System info
  • Uptime

To install the Glances on your VPS, please user the following command.

On Ubuntu/Debian

sudo apt-get update -y

 sudo apt-get install glances -y

On CentOS/Fedora

sudo yum update -y

 sudo yum install glances -y

To check … Read More