Skip to content

Instantly share code, notes, and snippets.

@jnoss
Forked from niun/build-tmux-debian.sh
Last active August 29, 2015 14:27
Show Gist options
  • Save jnoss/0419e13baff6edfce627 to your computer and use it in GitHub Desktop.
Save jnoss/0419e13baff6edfce627 to your computer and use it in GitHub Desktop.
build tmux 2.0 on debian (tested with raspbian wheezy on a raspberry pi)
#!/bin/bash
sudo apt-get install libevent-dev
sudo apt-get install libncurses-dev
wget "https://github.com/tmux/tmux/releases/download/2.0/tmux-2.0.tar.gz"
tar xvfz tmux-2.0.tar.gz
cd tmux-2.0/
./configure && make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment