Skip to content

Instantly share code, notes, and snippets.

@mirskiy
Last active December 26, 2018 06:37
Show Gist options
  • Save mirskiy/19c712ab8f24fbf221b13f9699cd6f6c to your computer and use it in GitHub Desktop.
Save mirskiy/19c712ab8f24fbf221b13f9699cd6f6c 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
@51freeman
Copy link

+sudo apt-get update
+sudo apt-get install 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