Skip to content

Instantly share code, notes, and snippets.

@kirikiriyamama
Last active January 1, 2016 00:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kirikiriyamama/8067804 to your computer and use it in GitHub Desktop.
Save kirikiriyamama/8067804 to your computer and use it in GitHub Desktop.
install tmux 1.8 on CentOS 6.4

install deps

$ wget https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz
$ tar zxf libevent-2.0.21-stable.tar.gz
$ cd libevent-2.0.21-stable
$ ./configure
$ make
$ sudo make install
$ su -
# echo /usr/local/lib > /etc/ld.so.conf.d/libevent.conf
# ldconfig
# exit

install tmux

$ wget http://downloads.sourceforge.net/tmux/tmux-1.8.tar.gz
$ tar zxf tmux-1.8.tar.gz
$ cd tmux-1.8
$ ./configure
$ make
$ sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment