Skip to content

Instantly share code, notes, and snippets.

@divadrei
Created April 27, 2012 18:22
Show Gist options
  • Save divadrei/2511533 to your computer and use it in GitHub Desktop.
Save divadrei/2511533 to your computer and use it in GitHub Desktop.
setup iterm2 compatible tmux on debian6
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