Skip to content

Instantly share code, notes, and snippets.

@dinhtungdu
Last active January 6, 2017 15:32
Show Gist options
  • Save dinhtungdu/30f49e38145fd2914496528a4d06e7ea to your computer and use it in GitHub Desktop.
Save dinhtungdu/30f49e38145fd2914496528a4d06e7ea to your computer and use it in GitHub Desktop.
Lates tmux install on centos
# if installed old version by yum, remove it first
sudo yum remove tmux libevent libevent-devel libevent-headers
# install deps
sudo 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.3/tmux-2.3.tar.gz
tar -xvzf tmux-2.3.tar.gz
cd tmux-2.3
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