Skip to content

Instantly share code, notes, and snippets.

@xxxxlr
Forked from mirskiy/tmux_install.sh
Created April 4, 2017 22:32
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 xxxxlr/6b528d4db0f5dfd23dbf3e1ec149f733 to your computer and use it in GitHub Desktop.
Save xxxxlr/6b528d4db0f5dfd23dbf3e1ec149f733 to your computer and use it in GitHub Desktop.
Install tmux 2.2 on Ubuntu 14.04 from source
sudo apt-get update
sudo apt-get install -y libevent-dev libncurses-dev make
wget https://github.com/tmux/tmux/releases/download/2.2/tmux-2.2.tar.gz
tar xvzf tmux-2.2.tar.gz
cd tmux-2.2/
./configure && make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment