Skip to content

Instantly share code, notes, and snippets.

@vitobotta
Forked from cloud8421/install.sh
Last active December 15, 2015 08:29
Show Gist options
  • Save vitobotta/5231372 to your computer and use it in GitHub Desktop.
Save vitobotta/5231372 to your computer and use it in GitHub Desktop.
Installing latest tmux on Ubuntu
# libevent
cd /usr/local/src
wget https://github.com/downloads/libevent/libevent/libevent-2.0.20-stable.tar.gz
tar xvfz libevent-2.0.*-stable.tar.gz
cd libevent-2.0.20-stable/
./configure
make
make install
# tmux
cd /usr/local/src
git clone https://github.com/ThomasAdam/tmux.git
cd tmux
./autogen.sh
./configure --prefix=/usr/local
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment