Skip to content

Instantly share code, notes, and snippets.

@kungenw4301
Forked from sturadnidge/tmux-1.8-on-CentOS-6.x.txt
Last active August 29, 2015 14:12
Show Gist options
  • Select an option

  • Save kungenw4301/3989223594e3d8a232c8 to your computer and use it in GitHub Desktop.

Select an option

Save kungenw4301/3989223594e3d8a232c8 to your computer and use it in GitHub Desktop.
# download latest libevent2 and tmux sources, and extract them somewhere
# (thx bluejedi for tip on latest tmux URL)
#
# at the time of writing:
# https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz
# http://sourceforge.net/projects/tmux/files/latest/download?source=files
#
# install deps
yum install gcc kernel-devel make ncurses-devel
# cd to libevent2 src
./configure --prefix=/usr/local
make && make install
# cd to tmux src
LDFLAGS="-L/usr/local/lib -Wl,-rpath=/usr/local/lib" ./configure --prefix=/usr/local
make && make install
# you're good to go, for a sample ~/.tmux.conf check out
# https://github.com/sturadnidge/misc/blob/master/.tmux.conf
@kungenw4301
Copy link
Author

Thanks!RHEL 6!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment