htop —— linux 下可视化进程管理器

htop 是一个 Linux 下的交互式的进程浏览器,可以用来替换Linux下的top命令。

官方首页:http://hisham.hm/htop/

htop 安装

在这个地址找到最新版,http://hisham.hm/htop/releases/

# 安装脚本
cd /tmp
wget http://hisham.hm/htop/releases/2.2.0/htop-2.2.0.tar.gz
tar zxvf htop-2.2.0.tar.gz
cd htop-2.2.0
./configure && make && make install

若在安装过程中,提示错误:

configure: error: You may want to use –disable-unicode or install libncursesw.

则需先安装 ncurses-devel

# yum install ncurses-devel

相关文章: