Page 1 of 1

FULL LINUX MONITORING APP

Posted: Wed Dec 02, 2020 6:29 am
by chriscambridge
GLANCES:

Full Monitoring of:
  • CPU
  • GPU
  • HDD
  • NETWORK
  • MEMORY
  • SWAP SPACE
  • UPTIME
  • ETC
Glances is fully open source

Full installation guide here:

https://github.com/nicolargo/glances/bl ... README.rst

(At the end of the post is the steps I used to setup Glances on Mint and Ubuntu)

Image

This is with full lm-sensors and Nvidia information:

Image

This is without lm-sensors and Nvidia (full) information

Image

STEPS I USED TO INSTALL ON LINUX MINT AND UBUNTU

- INSTALL LM-SENSORS

Code: Select all

sudo apt install lm-sensors
- DETECT SENSORS

Code: Select all

sudo sensors-detect
- GET REQUIRED HEADERS

Code: Select all

sudo apt-get install python-dev
- INSTALL PYTHON SETUPTOOLS

Code: Select all

sudo apt-get install python-setuptools
- INSTALL PIP

Code: Select all

sudo apt update

Code: Select all

sudo apt install python-pip
- INSTALL PIP WHEEL

Code: Select all

pip install wheel
- INSTALL GLANCES

Code: Select all

curl -L https://bit.ly/glances | /bin/bash
MENU:

PRESS F FOR SENSORS VIEW
PRESS 2 FOR SIDE BAR

Re: FULL LINUX MONITORING APP

Posted: Wed Dec 02, 2020 7:39 am
by damienh
Awesome, thanks Chris. I’ll check this out. I’m using the built in monitor plus nmon and psensor currently. I think you had mentioned nmon previously. It was the only way I could see CPU clock speeds.

Re: FULL LINUX MONITORING APP

Posted: Wed Dec 02, 2020 7:39 am
by damienh
I’m always interested in better monitoring apps!

Re: FULL LINUX MONITORING APP

Posted: Wed Dec 02, 2020 8:11 am
by chriscambridge
Yeah no problem, if people say they find stuff useful then I'll keep posting, if not I'll just keep all these goodies to myself.

I have been using nmon (for cpu freq), nvidia-smi (for gpu info), and psensor (for cpu/gpu/hd utilisation and temps).

But I'm now moving all my systems back into a server rack (36U) so I want to keep a close eye on cpu/gpu temps and any possible throttling, and obviously doing that via a single application is much easier/better.

Also the option that glances offers of being able to monitor everything via a webpage or app looks excellent; not that I have actually tested any of these just yet.