Skip to content

Instantly share code, notes, and snippets.

@WesleyCh3n
Created July 8, 2023 03:41
Show Gist options
  • Save WesleyCh3n/f52ba39954522ae0d9938ee8fcd1b9c4 to your computer and use it in GitHub Desktop.
Save WesleyCh3n/f52ba39954522ae0d9938ee8fcd1b9c4 to your computer and use it in GitHub Desktop.
compile and install tmux v3.2a on ubuntu
#!/usr/bin/env bash
sudo apt install libevent-dev ncurses-dev build-essential bison pkg-config
wget https://github.com/tmux/tmux/releases/download/3.2a/tmux-3.2a.tar.gz
tar -zxf tmux-3.2a.tar.gz
cd tmux-3.2a
./configure
make && sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment