首页 > 代码库 > linux htop工具

linux htop工具

cd /usr/local/src/

  817  ls

  818  wget http://sourceforge.net/projects/htop/files/htop/0.9/htop-0.9.tar.gz

  819  wget http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.9.tar.gz

  820  ls

  821  tar zxvf ncurses-5.9.tar.gz 

  822  tar zxvf htop-0.9.tar.gz 

  823  ls

  824  cd ncurses-5.9

  825  ./configure 

  826  echo $?

  827  make

  828  echo $?

  829  make install

  830  cd ..

  831  cd htop-0.9

  832  ./configure 

  833  echo $?

  834  make

  835  make install

  836  htop


本文出自 “技术革命生活” 博客,请务必保留此出处http://6769120.blog.51cto.com/6759120/1591225

linux htop工具