Skip to content

Instantly share code, notes, and snippets.

@bekbulatov
Created March 22, 2018 08:18
Show Gist options
  • Save bekbulatov/1aafb1fa7deeb4f9cd94f92b64eb4497 to your computer and use it in GitHub Desktop.
Save bekbulatov/1aafb1fa7deeb4f9cd94f92b64eb4497 to your computer and use it in GitHub Desktop.
Ubuntu 14.04 tmux 2.6
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