Skip to content

Instantly share code, notes, and snippets.

@jnoss
jnoss / build-tmux-debian.sh
Last active August 29, 2015 14:27 — forked from niun/build-tmux-debian.sh
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