Forked from sturadnidge/tmux-1.8-on-CentOS-6.x.txt
Last active
August 29, 2015 14:00
-
-
Save wiseleyb/11301888 to your computer and use it in GitHub Desktop.
Revisions
-
wiseleyb revised this gist
Apr 25, 2014 . 1 changed file with 12 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,20 +2,26 @@ # (thx bluejedi for tip on latest tmux URL) # # at the time of writing: cd ~ wget https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz wget http://sourceforge.net/projects/tmux/files/latest/download?source=files tar -zxvf libevent-2.0.21-stable.tar.gz tar -zxvf tmux-1.9a.tar.gz # install deps sudo yum install gcc kernel-devel make ncurses-devel # cd to libevent2 src cd ~/libevent-2.0.21-stable ./configure --prefix=/usr/local sudo make sudo make install # cd to tmux src cd ~/tmux-1.9a LDFLAGS="-L/usr/local/lib -Wl,-rpath=/usr/local/lib" ./configure --prefix=/usr/local sudo make sudo make install # you're good to go, for a sample ~/.tmux.conf check out # https://github.com/sturadnidge/misc/blob/master/.tmux.conf -
sturadnidge renamed this gist
Sep 15, 2013 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,9 @@ # 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 @@ -16,4 +17,5 @@ make && make install 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 -
Stuart Radnidge revised this gist
Dec 4, 2012 . 1 changed file with 1 addition and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,11 +12,8 @@ yum install gcc kernel-devel make ncurses-devel ./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... -
Stuart Radnidge created this gist
Dec 1, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,22 @@ # download latest libevent2 and tmux sources, and extract them somewhere # # at the time of writing: # https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz # http://downloads.sourceforge.net/tmux/tmux-1.7.tar.gz # # install deps yum install gcc kernel-devel make ncurses-devel # cd to libevent2 src ./configure --prefix=/usr/local make && make install # symlink into /usr/lib64 ln -s /usr/local/lib/libevent-2.0.so.5 /usr/lib64/libevent-2.0.so.5 # cd to tmux src ./configure --prefix=/usr/local make && make install # you're good to go...