Created
April 27, 2012 18:22
-
-
Save divadrei/2511533 to your computer and use it in GitHub Desktop.
setup iterm2 compatible tmux on debian6
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
echo "deb http://backports.debian.org/debian-backports squeeze-backports main contrib" >> /etc/apt/sources.list | |
echo "deb http://ftp.de.debian.org/debian sid main" >> /etc/apt/sources.list | |
apt-get update | |
apt-get upgrade | |
apt-get install libevent-dev autoconf pkg-config gcc g++ libncurses5-dev make | |
mkdir tmux | |
cd tmux | |
wget "http://iterm2.googlecode.com/files/tmux-for-iTerm2-20120203.tar.gz" | |
tar -zxf tmux-for-iTerm2-20120203.tar.gz | |
cd tmux-for-iTerm2-20120203/ | |
./configure | |
make | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment