Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save armenr/e2f9321b56aa873210b506a8bd17115a to your computer and use it in GitHub Desktop.
Save armenr/e2f9321b56aa873210b506a8bd17115a to your computer and use it in GitHub Desktop.
Install ncdu on amazon linux 2
#!/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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment