Created
March 28, 2018 19:51
-
-
Save ggada/6f5794536f2613c3d38ac7f26108480b to your computer and use it in GitHub Desktop.
Compile tmux on ubuntu
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
# install tmux from source because the ubuntu repo version is outdated | |
sudo apt install checkinstall automake libevent libevent-dev libncurses5-dev | |
git clone https://github.com/tmux/tmux.git | |
cd tmux | |
sh autogen.sh | |
./configure && make | |
sudo checkinstall # this might give you a version number format error and few other warnings, you can enter it as "2.7-rc1" or whatever the version is when you clone |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment