Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# Script for installing tmux on systems where you don't have root access.
# tmux will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
TMUX_VERSION=1.9a
#!/bin/bash
#worked on raspian on 2015-01-12
# exit on error
set -e
mkdir $HOME/tmux_tmp
cd $HOME/tmux_tmp
wget "https://cloud.github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz"