Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save arijusg/a4a6ade66e986b7d25e9ef346cab3188 to your computer and use it in GitHub Desktop.
Save arijusg/a4a6ade66e986b7d25e9ef346cab3188 to your computer and use it in GitHub Desktop.

Revisions

  1. @MrHassanMurtaza MrHassanMurtaza created this gist Feb 11, 2020.
    17 changes: 17 additions & 0 deletions install_ncdu_amazon_linux.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    #!/bin/bash

    # install packages/dependencies for compilation
    sudo yum -y install gcc make ncurses-devel

    cd /tmp

    # the latest version of ncdu is published here: http://dev.yorhel.nl/ncdu
    # update the link below if necessary:
    wget -nv http://dev.yorhel.nl/download/ncdu-1.10.tar.gz

    tar xvzf ncdu-1.10.tar.gz

    cd ncdu-1.10
    ./configure --prefix=/usr
    make
    sudo make install