Glances is a command line based system monitoring tool written in Python that uses the psutil library to fetch statistics about your system. Glances has the ability to monitor load averages, CPU usage, network interfaces, memory usage, disk usage, processes, and space utilization.
## Requirements:
Ubuntu 14.04 - 64 bits
root ssh access to your server
## Install Commands - All together
apt-get update && apt-get install tar curl -y && curl -L
http://bit.ly/glances | /bin/bash && pip install bottle batinfo
https://bitbucket.org/gleb_zhulik/py3sensors/get/tip.tar.gz zeroconf netifaces pymdstat influxdb statsd pystache pika && pip install --upgrade glances && apt-get clean && apt-get autoremove
## Install Commands - One by one
apt-get update
apt-get install tar curl -y
curl -L
http://bit.ly/glances | /bin/bash
pip install bottle batinfo
https://bitbucket.org/gleb_zhulik/py3sensors/get/tip.tar.gz zeroconf netifaces pymdstat influxdb statsd pystache pika
pip install --upgrade glances
apt-get clean
apt-get autoremove
# Run glances tool
glances
Comments