方式一:使用yum
yum install -y htop
方式二:使用安装包
当yum源中没有htop包的时候就无法执行方法一,那么尝试如下方法。
1. 安装linux依赖
yum install ncurses-devel
2. 下载htop安装包
curl -O http://hisham.hm/htop/releases/2.0.2/htop-2.0.2.tar.gz
3. 解压
tar -xvf htop-2.0.2.tar.gz
4. 编译
cd htop-2.0.2 && ./configure && make
5. 启动htop
cd ~ && htop
注意:至于为什么要切换目录我也不知道,反正在htop-2.0.2目录下无法启动htop。
网友评论