Skip to content

Instantly share code, notes, and snippets.

@achmiral
Forked from mirskiy/tmux_install.sh
Created December 3, 2016 03:11
Show Gist options
  • Save achmiral/1be6f88b6963b29c0e2ae869a528cfc9 to your computer and use it in GitHub Desktop.
Save achmiral/1be6f88b6963b29c0e2ae869a528cfc9 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