htop 是乙個 linux 下的互動式的程序瀏覽器,可以用來替換linux下的top命令,比top命令功能更強大,看起來介面也舒服,下面就講一下如何編譯安裝htop
wget
tar -zxf download
cd htop-1.0.2
./configure && make && make install
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/root/htop-1.0.2':
configure: error: no acceptable c compiler found in $path
see `config.log' for more details.
3、安裝gcc編輯器即可
yum install -y gcc
configure: error: you may want to use --disable-unicode or install libncursesw.
安裝ncurses即可(yum install -y ncurses-devel)
編譯htop命令
輸入上面的內容開始自動配置makefile。但是出錯了,找不到libncurses庫。這時候需要編譯libncurses庫了。如上圖編譯ncurses 5.7庫的步驟,由於這裡只需要庫和標頭檔案。所以就選擇性編譯。最終編譯成功。即可在目標版上執行htop命令。但是執行出錯了。如下圖 這是因為ncur...
centos 使用EPEL源和htop安裝
root i 0vjkl1ko yum install htop y centos7.5安裝htop的時候提示error nothing to do 因為沒有找到可用的源,所以我們要更新yum源,執行 使用看下htop命令,至於htop命令的作用大家可以搜尋下資源,後續我也可能寫一篇,個人感覺比to...
3531交叉編譯htop
工作需要,開始折騰海思晶元,從頭開始,折騰。終端顯示的內容如下 checking if compiler supports wextra.yes checking for refresh in lncurses.no checking for refresh in lncurses6.no chec...