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


你可能感兴趣的:(linux,local)