CentOS6.9安装htop,也适用于CentOS7。htop官方网站:http://hisham.hm/htop/ 。
首先安装首先启用 epel repository。
[root@localhost ~]# yum -y install epel-release
[root@localhost ~]# yum -y update
#安装htop
[root@localhost ~]# yum install htop
yum安装htop完成。
也可以配置阿里云、清华大学等安装源。清华大学链接。
https://mirrors.tuna.tsinghua.edu.cn/help/epel/
源码安装htop,首先安装git。ncurses-devel编译安装htop时需要。
[root@localhost ~]# yum -y install git ncurses-devel
htop GIT源码下载地址。https://github.com/hishamhm/htop
git clone htop代码。
[root@localhost ~]# git clone https://github.com/hishamhm/htop.git
切换到htop代码目录执行./configure; make; sudo make install 即可。
下图是centOS6.9安装完成软件运行截图。
来源:oschina
链接:https://my.oschina.net/u/1011130/blog/1574926