Skip to content

Instantly share code, notes, and snippets.

@NickCrew
Created December 10, 2021 03:22
Show Gist options
  • Save NickCrew/9b539c7c23ee81966588ef8943e2d4e6 to your computer and use it in GitHub Desktop.
Save NickCrew/9b539c7c23ee81966588ef8943e2d4e6 to your computer and use it in GitHub Desktop.
Install Tmux
#!/usr/bin/env bash
set -e
sudo apt-get update
sudo apt-get install -y bison gcc make pkg-config automake autoconf libncurses5-dev libevent-dev
mkdir -p ~/src
git clone https://github.com/tmux/tmux ~/src/tmux
cd ~/src/tmux
sh autogen.sh
./configure && make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment