Skip to content

Instantly share code, notes, and snippets.

@matAlmeida
Created April 1, 2018 05:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matAlmeida/f2cdd982e2be3caf8640997c43d44f68 to your computer and use it in GitHub Desktop.
Save matAlmeida/f2cdd982e2be3caf8640997c43d44f68 to your computer and use it in GitHub Desktop.
installing tmux
#!/usr/bin/env bash
sudo apt update
sudo apt install -y git
sudo apt install -y automake
sudo apt install -y build-essential
sudo apt install -y pkg-config
sudo apt install -y libevent-dev
sudo apt install -y libncurses5-dev
rm -fr /tmp/tmux
git clone https://github.com/tmux/tmux.git /tmp/tmux
cd /tmp/tmux
sh autogen.sh
./configure && make
sudo make install
cd -
rm -fr /tmp/tmux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment