0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

tmux on Ubuntu

Posted at

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
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?