Skip to content

Instantly share code, notes, and snippets.

@hisplan
Last active February 20, 2020 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hisplan/1f7746a63ccea6067ee92152b8e74f0f to your computer and use it in GitHub Desktop.
Save hisplan/1f7746a63ccea6067ee92152b8e74f0f to your computer and use it in GitHub Desktop.
Install htop
#!/bin/bash -e
# http://hisham.hm/htop/
yum groupinstall "Development Tools"
yum install ncurses ncurses-devel
wget http://hisham.hm/htop/releases/2.0.2/htop-2.0.2.tar.gz
tar xvfvz htop-2.0.2.tar.gz
cd htop-2.0.2
./configure
make
make install
make install prefix=$HOME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment