Skip to content

Instantly share code, notes, and snippets.

@kevin-kientopp
Forked from rothgar/install-tmux
Last active August 20, 2021 02:10
Show Gist options
  • Save kevin-kientopp/78c5e14801cdbcc4ba67497d5621282b to your computer and use it in GitHub Desktop.
Save kevin-kientopp/78c5e14801cdbcc4ba67497d5621282b to your computer and use it in GitHub Desktop.
Install tmux 2.2 on rhel/centos 6
# Install tmux on Centos release 6.5 or 7.2
# install deps
yum install gcc kernel-devel make ncurses-devel
# DOWNLOAD SOURCES FOR LIBEVENT AND MAKE AND INSTALL
curl -OL https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz
tar -xvzf libevent-2.0.22-stable.tar.gz
cd libevent-2.0.22-stable
./configure --prefix=/usr/local
make
sudo make install
# DOWNLOAD SOURCES FOR TMUX AND MAKE AND INSTALL
curl -OL https://github.com/tmux/tmux/releases/download/2.2/tmux-2.2.tar.gz
tar -xvzf tmux-2.2.tar.gz
cd tmux-2.2
LDFLAGS="-L/usr/local/lib -Wl,-rpath=/usr/local/lib" ./configure --prefix=/usr/local
make
sudo make install
tmux -V
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment