Skip to content

Instantly share code, notes, and snippets.

@hisplan
Last active February 20, 2020 14:33
Show Gist options
  • Select an option

  • Save hisplan/1f7746a63ccea6067ee92152b8e74f0f to your computer and use it in GitHub Desktop.

Select an option

Save hisplan/1f7746a63ccea6067ee92152b8e74f0f to your computer and use it in GitHub Desktop.

Revisions

  1. hisplan revised this gist Feb 20, 2020. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions install-htop.sh
    Original file line number Diff line number Diff line change
    @@ -11,3 +11,5 @@ cd htop-2.0.2
    ./configure
    make
    make install
    make install prefix=$HOME

  2. hisplan created this gist Feb 20, 2020.
    13 changes: 13 additions & 0 deletions install-htop.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,13 @@
    #!/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