tmuxをソースからビルドしてインストール

tmuxをソースからビルドしてインストールしたときのコマンドめも。

参考: https://qiita.com/trisland/items/29f81b14fc350287bfd1

centosのバージョンに注意しながら、参考サイトのとおりにコマンドを実行する。 バージョンを確認するときは、

cat /etc/centos-release
または
cat /etc/redhat-release

依存するモジュールのインストール(libevent, ncurses)

yum install libevent-devel ncurses-devel

tmuxインストール

いつもどおり、configureとかmakeとかmake installとか打つ。
以上!

ncursesについて

The curses library routines are a terminal-independent method of updating character screens with reasonable optimization.
(yum info より)