-
-
Save vitobotta/5231372 to your computer and use it in GitHub Desktop.
Installing latest tmux on Ubuntu
This file contains hidden or 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
# libevent | |
cd /usr/local/src | |
wget https://github.com/downloads/libevent/libevent/libevent-2.0.20-stable.tar.gz | |
tar xvfz libevent-2.0.*-stable.tar.gz | |
cd libevent-2.0.20-stable/ | |
./configure | |
make | |
make install |
This file contains hidden or 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
# tmux | |
cd /usr/local/src | |
git clone https://github.com/ThomasAdam/tmux.git | |
cd tmux | |
./autogen.sh | |
./configure --prefix=/usr/local | |
make | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment