-2

May I know what are the system monitor applications available in Ubuntu (GUI/CLI)?

Avinash Raj
  • 78,556
Raja G
  • 102,391
  • 106
  • 255
  • 328

3 Answers3

6

ndicator-SysMonitor Indicator-SysMonitor does a little, but does it well. Once installed and run, it displays CPU and RAM usage on your top panel. Simple.

enter image description here

Download from here

Conky

One of my personal favourites

enter image description here

Screenlet you’ll find a bunch of differently styled CPU and RAM monitors included in the screenlets-all package available in the Ubuntu Software Center.

enter image description here

Glances

To install:

sudo apt-get install python-pip build-essential python-dev
sudo pip install Glances
sudo pip install PySensors

enter image description here

VMSTAT

Displays information about CPU, memory, processes, etc.

IOSTAT

This command line tool will display statistics about your CPU, I/O information for your hard disk partitions, Network File System (NFS), etc. To install iostat, run this command:

sudo apt-get install sysstat

To start the report, run this command:

iostat

To check only CPU statistics, use this command:

iostat -c

For more parameters, use this command:

iostat --help

MPSTAT

The mpstat command line utility will display average CPU usage per processor. To run it, use simply this command:

mpstat

For CPU usage per processor, use this command:

mpstat -P ALL

Saidar

Saidar also allows to monitor system device activities via the command line.

enter image description here

You can install is with this command:

sudo apt-get install saidar

To start monitoring, run this command:

saidar -c -d 1

Stats will be refreshed every second.

GKrellM

GKrellM is a customizable widget with various themes that displays on your desktop system device information (CPU, temperature, memory, network, etc.).

enter image description here

To install GKrellM, run this command:

sudo apt-get install gkrellm

Monitorix

Monitorix is another application with a web-based user interface for monitoring system devices.

enter image description here

Install it with these commands:

sudo add-apt-repository ppa:upubuntu-com/ppa
sudo apt-get update
sudo apt-get install monitorix

Start Monitorix via this URL:

http://localhost/monitorix/
Maythux
  • 84,289
3

You also have iotop to monitor I/O

Run it as,

sudo iotop

enter image description here

Presbitero
  • 1,155
  • 3
  • 11
  • 22
1

AFAIK

  1. Gnome System monitor

This is default in every Ubuntu installation. Just type as monitor in Unity dash and it will list you.

enter image description here

2 . top

This is a CLI tool , Open your terminal and and type top and you can view it.

enter image description here 3 . htop

This is not default one . you have to install it by using

sudo apt-get install htop

enter image description here

4 . nmon

This is also not default one. You have to install it manually with

sudo apt-get install nmon

enter image description here

hope that helps.

Raja G
  • 102,391
  • 106
  • 255
  • 328