Last updated on November 5, 2020 by Dan Nanni
htop
as an alternative to top
command. When I tried to install htop
with yum
package manager on CentOS, I got "No package htop available" error. How can I install htop
on CentOS/RHEL?htop
vs. top
htop
is an ncurses
-based real-time process viewer for Linux. While its interface is inspired by venerable top
command, htop
has several user-friendly features, not available in top
. For example, htop
allows you scroll a process list horizontally or vertically to see full command lines. Also, with htop
, you can kill or re-nice one or more processes at once, without entering their PIDs. Compared to top
, htop
launches faster because htop
does not wait to collect data upon launch.
htop
on CentOS with yum
The pre-built htop
package is available from EPEL repository. So you need to enable the repository first. Then use yum
command to install it.
$ sudo yum install htop
htop
from the Source on CentOSAnother option is to compile and install htop
from the source. This option is useful when you want to install the latest version of htop
.
Here is how to build and install htop
from the source.
First, install prerequisites and download the source.
$ sudo yum groupinstall "Development Tools" $ sudo yum install ncurses-devel $ wget http://hisham.hm/htop/releases/1.0.3/htop-1.0.3.tar.gz $ tar xvfvz htop-1.0.3.tar.gz $ cd htop-1.0.3
Run the configure
script to 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
Finally, build and install htop
as follows.
$ make $ sudo make install
htop
After installation, launch htop
by entering:
$ htop
This website is made possible by minimal ads and your gracious donation via PayPal or credit card
Please note that this article is published by Xmodulo.com under a Creative Commons Attribution-ShareAlike 3.0 Unported License. If you would like to use the whole or any part of this article, you need to cite this web page at Xmodulo.com as the original source.
Xmodulo © 2021 ‒ About ‒ Write for Us ‒ Feed ‒ Powered by DigitalOcean