aptを使った方法でも良いが,最新版が入らない可能性がある.
aptでインストール
apt install tmux
ソースコードからビルドしてインストールする方法
ソースコードからインストール
sudo apt update
sudo apt install git automake bison build-essential pkg-config libevent-dev libncurses5-dev
cd /usr/local/src/
git clone https://github.com/tmux/tmux
cd ./tmux/
./autogen.sh
./configure --prefix=/usr/local
make
sudo make install
bash