Skip to content

Instantly share code, notes, and snippets.

@bse666
Last active May 19, 2016 07:54
Show Gist options
  • Save bse666/4e1ff570cfcb8974d0b7 to your computer and use it in GitHub Desktop.
Save bse666/4e1ff570cfcb8974d0b7 to your computer and use it in GitHub Desktop.
install tmux from git in ubuntu (tested in 15.04)
#!/bin/sh
tdir=`mktemp -d`
cd $tdir
sudo apt-get install -y --force-yes libevent-dev libncurses-dev pkg-config autoconf
git clone https://github.com/tmux/tmux
cd tmux
autoreconf -fis
./configure
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment