Last active
June 22, 2017 15:45
-
-
Save sirkkalap/eaf5ba3279d9db4250b0053a8248f822 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## you may need sudo permission to execute some commands or swith to root | |
# if installed old version by yum, remove it first | |
yum -y remove tmux libevent libevent-devel libevent-headers | |
# install deps | |
yum -y install gcc kernel-devel make ncurses-devel wget | |
# create temp dir | |
mkdir /tmp/for-latest-tmux | |
# downloads libenvent and install | |
cd /tmp/for-latest-tmux/ && mkdir ./libenvent && cd ./libenvent | |
wget https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz | |
tar -zxvf libevent-2.0.22-stable.tar.gz | |
cd libevent-2.0.22-stable/ | |
./configure && make | |
make install | |
# downloads tmux and install | |
cd /tmp/for-latest-tmux/ && mkdir ./tmux && cd ./tmux | |
wget https://github.com/tmux/tmux/releases/download/2.2/tmux-2.2.tar.gz | |
tar -zxvf tmux-2.2.tar.gz | |
cd tmux-2.2/ | |
./configure && make | |
#sudo make install | |
# kill the running tmux | |
# close your terminal window (flushes cached tmux executable) | |
# open new shell and check tmux version | |
#pkill tmux | |
#tmux -V | |
# remove temp dir if needed | |
#rm -rf /tmp/for-latest-tmux |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment