Created
March 22, 2018 08:18
-
-
Save bekbulatov/1aafb1fa7deeb4f9cd94f92b64eb4497 to your computer and use it in GitHub Desktop.
Ubuntu 14.04 tmux 2.6
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
sudo apt-get -y remove tmux | |
sudo apt-get install wget tar libevent-dev libncurses-dev | |
VERSION=2.6 && mkdir ~/tmux-src && wget -qO- https://github.com/tmux/tmux/releases/download/${VERSION}/tmux-${VERSION}.tar.gz | tar xvz -C ~/tmux-src && cd ~/tmux-src/tmux* | |
./configure && make -j"$(nproc)" && sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment