Skip to content

Instantly share code, notes, and snippets.

@meddulla
Created June 10, 2012 19:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meddulla/2907099 to your computer and use it in GitHub Desktop.
Save meddulla/2907099 to your computer and use it in GitHub Desktop.
install tmux mac os lion
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