Created
January 18, 2017 15:49
-
-
Save toantran-ea/b7cbd2a435d630d8e6070f4263b892a2 to your computer and use it in GitHub Desktop.
Install tmux on Ubuntu/Linux Mint
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
#!/bin/sh | |
sudo apt-get install build-essential curl git python-setuptools ruby; | |
sudo apt-get install build-essential libevent-dev libncurses-dev; | |
#tmux2.3 | |
wget -O tmux-2.3.tar.gz https://github.com/tmux/tmux/releases/download/2.3/tmux-2.3.tar.gz; | |
tar -zvxf tmux-2.3.tar.gz; | |
cd tmux-2.3/ | |
./configure; | |
make; | |
sudo make install; | |
tmux -V; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment