30
25

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.

CentOS7 に最新の tmux を導入

Last updated at Posted at 2016-10-25

CentOS7から tmux が CentOSの標準レポジトリの仲間入りして、
yum で簡単にインストール出来るようになりましたが、1.8系と古く、
最新機能が使えないので、2.x を CentOS7の最小環境に導入す
るための必要最低限のコンパイルメモです。

前提(実行環境)

  • 以下の環境で実施しました。
[centos@ip-172-31-17-XXX ~]$ cat /etc/redhat-release
CentOS Linux release 7.2.1511 (Core)
[centos@ip-172-31-17-XXX ~]$ uname -a
Linux ip-172-31-17-111 3.10.0-327.10.1.el7.x86_64 #1 SMP Tue Feb 16 17:03:50 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

手順

最新のソースコードを入手

公式ページ(https://tmux.github.io/) から最新のソースコードを入手します。

curl -kLO https://github.com/tmux/tmux/releases/download/2.9/tmux-2.9.tar.gz

コンパイルに必要な依存のモジュールインストール

sudo yum -y install gcc libevent-devel ncurses-devel

解凍とコンパイル

tar -zxvf tmux-2.9.tar.gz
cd tmux-2.9
./configure
make
sudo make install

完了

インストールできました!

[centos@ip-172-31-17-XXX tmux-2.9]$ tmux -V
tmux 2.9
30
25
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
30
25

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?