TechExhibeo

htop source install CentOS

Jan 22nd, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.22 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. yum groupinstall "Development Tools" -y
  4. yum install ncurses ncurses-devel -y
  5. wget http://hisham.hm/htop/releases/2.0.2/htop-2.0.2.tar.gz
  6. tar xvfvz htop-2.0.2.tar.gz
  7. cd htop-2.0.2
  8. ./configure
  9. make
  10. make install
Add Comment
Please, Sign In to add comment