Tmux
- Install libevent
# DOWNLOAD SOURCES FOR LIBEVENT AND MAKE AND INSTALL
curl -OL https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz
tar -xvzf libevent-2.0.21-stable.tar.gz
cd libevent-2.0.21-stable
./configure --prefix=/usr/local
make
sudo make install
- Install Tmux
git clone https://github.com/tmux/tmux.git tmux
cd tmux
sh autogen.sh
./configure && make
sudo make install
- Error handling
Error: libevent-2.0.so.5: cannot open shared object file: No such file or directory
ln -s /usr/local/lib/libevent-2.0.so.5 /usr/lib64/libevent-2.0.so.5