Skip to content

Instantly share code, notes, and snippets.

@burinov
Forked from japrescott/tmux_install.sh
Created November 12, 2018 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save burinov/ade259a09fbf04b523579c5e1e842a55 to your computer and use it in GitHub Desktop.
Save burinov/ade259a09fbf04b523579c5e1e842a55 to your computer and use it in GitHub Desktop.
Install tmux 2.7 on Ubuntu 16.04 from source
sudo apt-get update
sudo apt-get install -y libevent-dev libncurses-dev make
cd /tmp
wget https://github.com/tmux/tmux/releases/download/2.7/tmux-2.7.tar.gz
tar xvzf tmux-2.7.tar.gz
cd tmux-2.7/
./configure && make
sudo make install
cd ..
rm -rf ./tmux-2.7*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment