Last active
August 7, 2024 03:25
-
-
Save mirskiy/19c712ab8f24fbf221b13f9699cd6f6c to your computer and use it in GitHub Desktop.
Install tmux 2.2 on Ubuntu 14.04 from source
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
+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