Installing tmux on EC2
# Installing tmux on Amazon-EC2
# If you don't have libevent install use wget to install the libevent and install
wget https://github.com/downloads/libevent/libevent/libevent-2.0.18-stable.tar.gz
tar zxf libevent-2.0.18-stable.tar.gz
sudo ./configure & sudo make install
# If you don't have curses install use yum to install the curses
sudo yum install ncurses-devel
# Finally Downlload tmux and Install
wget http://downloads.sourceforge.net/tmux/tmux-1.8.tar.gz
tar zxf tmux-1.8
sudo ./configure & sudo make install
# If you see issue like the following, add symbolic link to 64bit user library to fix the issue.
# tmux: error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory
sudo ln -s /usr/local/lib/libevent-2.0.so.5 /usr/lib64/libevent-2.0.so.5