用工具上傳到需要安裝的伺服器上,本人使用的是winscp
在伺服器上解壓原始碼包:tar -zxvf htop-2.0.2.tar.gz
跳轉到原始碼包目錄:cd htop-2.0.2
生成makefile檔案並指定後續安裝時的安裝路徑:./configure –prefix=/usr/local/htop-2.0.2/
編譯源**:make
安裝:make install
跳轉到安裝的目錄的bin目錄:cd /usr/local/htop-2.0.2/bin
試執行htop:./htop
按esc退出編輯模式,輸入:wq儲存並退出編輯器
使修改後的profile檔案生效:source /etc/profile
檢視系統當前path變數的值:echo $path
執行htop:htop
使用configure生成makefile檔案失敗,報錯資訊如下(只擷取錯誤部分):
checking for addnwstr in -lncursesw6... no
checking for addnwstr in -lncursesw... no
checking for addnwstr in -lncurses... no
configure: error: you may want to use --disable-unicode or install libncursesw.
顯示嘗試configure增加–disable-unicode引數:./configure –prefix=/usr/local/htop-2.0.2/ –disable-unicode
如果出現以下報錯資訊,需要安裝libncurses:
configure: error: missing libraries: libncurses
configure: error: you may want to use --disable-unicode or install libncursesw.
可以嘗試步驟1增加–disable-unicode引數
雖然是一次在redhat上離線安裝htop的原始碼包,但是其實並未使用redhat上特有的指令,也適用於其他linux/unix系統上離線安裝原始碼包。
離線安裝htop工具
htop眾所周知是是一款強大的是linux系統中的乙個互動的程序檢視器 作為top的替代品 乙個文字模式的應用程式 在控制台或者x終端中 一般情況下一句yum install htop就能輕鬆安裝,但是很多時候我們會遇到無法連線外網的情況。htop官網 但是htop安裝的前提還需要乙個依賴 ncur...
redhat離線安裝gcc rzlz wget
參考 通過securecrt上傳到linux中 securecrt 登入到虛擬機器,按alt p開啟sftp傳輸介面,輸入put指令加檔案路徑 put e gcc rpm.tar.gz 解壓tar zxvf gcc rpm.tar.gz進入資料夾 cd gcc rpm進入資料夾後挨個執行以下命令 r...
centos 使用EPEL源和htop安裝
root i 0vjkl1ko yum install htop y centos7.5安裝htop的時候提示error nothing to do 因為沒有找到可用的源,所以我們要更新yum源,執行 使用看下htop命令,至於htop命令的作用大家可以搜尋下資源,後續我也可能寫一篇,個人感覺比to...