安裝htop的坑:
一、上官網http://hisham.hm/htop/releases/下載最新的包
二、解壓縮:tar -zxvf htop-2.0.2.tar.gz;
三、進入目標文件夾: cd htop-2.0.2
四、./configure
五、系統若出現如下提示,則須要安裝c編譯環境
configure: error: no acceptable C compiler found in $PATH
安裝c編譯環境:yum -y install gcc
六、裝完c編譯環境後再進行./configure,若出現以下提示,則須要安裝依賴包
configure: error: You may want to use --disable-unicode or install libncursesw.
yum install -y ncurses-devel
七、接下來就是最後的安裝環節:./configure&&make&&make installcode