LoginSignup
22
23

More than 5 years have passed since last update.

最新のtmuxをUbuntuにインストール

Posted at

aptでインストールできるtmuxのバージョンが少し古いので、最新のものをソースからインストールするための手順。

例として、/usr/loca/bin以下にインストール

ビルドに必要なパッケージをインストール

apt-get build-dep tmux
apt-get install autoconf libtool pkg-config

gitで最新のソースをダウンロード

cd /usr/local/src
git clone git://tmux.git.sourceforge.net/gitroot/tmux/tmux

ビルドしてインストール

cd /usr/local/src/tmux
./autogen.sh
./configure --prefix=/usr/local 
make
make install
22
23
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
22
23