LoginSignup
36
32

More than 5 years have passed since last update.

CentOSにtarからtmuxを導入する

Last updated at Posted at 2014-04-07

環境

  • root権限(rootでない場合は未検証)
  • CentOS
  • 導入済み
    • gcc
    • wget

libevent導入

CentOS 6系

古いlibeventを削除

yum remove libevent libevent-devel libevent-headers

最新版をインストール

yum install libevent2-devel

CentOS 7系

yum install libevent-devel

ncurses導入

yum install ncurses-devel

tmuxをインストールする

今回は、tmux 2.7をインストール(2018/05/26最新)

cd /usr/local/src
wget https://github.com/tmux/tmux/releases/download/2.7/tmux-2.7.tar.gz
tar -xvf tmux-2.7.tar.gz
cd tmux-2.7

./configure && make
make install

参考

  1. ターミナル多重化ソフト tmux を使う : まだプログラマーですが何か?
  2. Releases · tmux/tmux · GitHub
36
32
9

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
36
32