-
-
Save ii0/a39142b7ffc9852cff0847ffbdb6c0b9 to your computer and use it in GitHub Desktop.
Installing tmux on EC2
This file contains 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 characters
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment