Install
Prepare for compilation:
By default, htop will be installed under
build and install
Voila! You're done. just run it using:
#linux #centos #htop #compile #source #install
htop
on CentOS
from source:htop
is a real-time process viewer for Linux. First, install prerequisites and download the source:yum groupinstall "Development Tools"
yum install ncurses-devel
wget http://hisham.hm/htop/releases/2.0.2/htop-2.0.2.tar.gz
tar xvfvz htop-2.0.2.tar.gz
cd htop-2.0.2/
Prepare for compilation:
./configure
By default, htop will be installed under
/usr/local/bin
. If you want to change installation location to something else (e.g., /usr/ bin`), run configure script with `--prefix
option instead. For example:./configure --prefix=/usr
build and install
htop
as follows:make
make install
Voila! You're done. just run it using:
htop
#linux #centos #htop #compile #source #install
In order to hide threads, to see real proccess in
#linux #htop #threads #threading
htop
, press H
to toggle between showing/hiding filter.#linux #htop #threads #threading
If you have worked with
When you run it in linux you would see IO, CPU, RAM, Network bandwidth, latest system errors, etc in one glance! When you run it it displays the heaviest process on top by default. Read about its UI, installation, etc here:
- https://www.tecmint.com/glances-an-advanced-real-time-system-monitoring-tool-for-linux/
#linux #htop #glance
htop
you would definitely love Glance
, an advanced real time system monitoring tool for Linux
.When you run it in linux you would see IO, CPU, RAM, Network bandwidth, latest system errors, etc in one glance! When you run it it displays the heaviest process on top by default. Read about its UI, installation, etc here:
- https://www.tecmint.com/glances-an-advanced-real-time-system-monitoring-tool-for-linux/
#linux #htop #glance
Glances – An Advanced Real Time System Monitoring Tool for Linux
Glances: A Powerful Tool for Monitoring Linux Systems
Glances is a cross-platform curses-based system monitoring tool written in Python language which uses the psutil library to grab information from the system.