Skip to content

Instantly share code, notes, and snippets.

@ontheklaud
Created November 6, 2018 14:53
Show Gist options
  • Save ontheklaud/8ae8e6b50186edf4251cb62f4ea6b96b to your computer and use it in GitHub Desktop.
Save ontheklaud/8ae8e6b50186edf4251cb62f4ea6b96b to your computer and use it in GitHub Desktop.
Non-root guide for installing unix accessories for CentOS 7
# Screen (screen-4.6.2)
wget https://ftp.gnu.org/gnu/screen/screen-4.6.2.tar.gz
tar -xf <>
./autogen.sh
./configure --prefix=${HOME}/opt/screen-4.6.2
make && make install
# Ncurses (ncurses-6.1) / for Htop
wget https://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.1.tar.gz
tar -xf <>
./configure --prefix=$HOME/opt/ncurses-6.1 --enable-widec --with-shared --with-termlib --with-ticlib
make && make install
# Htop (htop-2.2.0)
wget -O htop-2.2.0.tar.gz https://github.com/hishamhm/htop/archive/2.2.0.tar.gz
tar -xf <>
./autogen.sh
./configure --prefix=${HOME}/opt/htop-2.2.0
make && make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment