-
-
Save jnoss/0419e13baff6edfce627 to your computer and use it in GitHub Desktop.
build tmux 2.0 on debian (tested with raspbian wheezy on a raspberry pi)
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
#!/bin/bash | |
sudo apt-get install libevent-dev | |
sudo apt-get install libncurses-dev | |
wget "https://github.com/tmux/tmux/releases/download/2.0/tmux-2.0.tar.gz" | |
tar xvfz tmux-2.0.tar.gz | |
cd tmux-2.0/ | |
./configure && make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment