Created
June 10, 2012 19:45
-
-
Save meddulla/2907099 to your computer and use it in GitHub Desktop.
install tmux mac os lion
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
sudo -s | |
mkdir /usr/local/src | |
cd /usr/local/src | |
# If you have never eared about libevent, you probably need to compile it | |
curl -L -o libevent-2.0.16-stable.tar.gz http://cloud.github.com/downloads/libevent/libevent/libevent-2.0.16-stable.tar.gz | |
tar -xvf libevent-2.0.16-stable.tar.gz | |
cd libevent-2.0.16-stable | |
./configure | |
make && make install | |
cd .. | |
# tmux | |
curl -L -o tmux-1.6.tar.gz http://downloads.sourceforge.net/tmux/tmux-1.6.tar.gz | |
tar -xvf tmux-1.6.tar.gz | |
cd tmux-1.6 | |
./configure | |
make && make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment