LoginSignup
0

More than 5 years have passed since last update.

tmuxを自力ビルドしてインストールする

Posted at

先人が既に書いていますが、足りなかったので自分のメモがてら。

まず最初に、以下のソースコードをwgetとかでダウンロード&解凍しておく

# 先にlibeventをビルド&インストール
cd libevent
mkdir build
../configure
make
sudo make install

# 次にncursesをビルド&インストール
cd ncurses
mkdir build
../configure
make
sudo make install

# 最後にtmuxをビルド&インストール
cd tmux
mkdir build
../configure
make
sudo make install

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