Skip to content

Instantly share code, notes, and snippets.

@niclin
Created December 12, 2016 09:57
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save niclin/b8e880852faaf2e3cb2d543613bb89dd to your computer and use it in GitHub Desktop.
Save niclin/b8e880852faaf2e3cb2d543613bb89dd to your computer and use it in GitHub Desktop.
Install tmux 2.3 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.3/tmux-2.3.tar.gz
tar xvzf tmux-2.3.tar.gz
cd tmux-2.3/
./configure && make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment