Skip to content

Instantly share code, notes, and snippets.

@ii0
Forked from arttuladhar/install_ec2.sh
Created May 6, 2023 03:04
Show Gist options
  • Save ii0/a39142b7ffc9852cff0847ffbdb6c0b9 to your computer and use it in GitHub Desktop.
Save ii0/a39142b7ffc9852cff0847ffbdb6c0b9 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment