Created
August 17, 2020 22:46
-
-
Save jmatt/0fc23eb90edc94f314a7eb5c907c8215 to your computer and use it in GitHub Desktop.
Install mosh on Amazon Linux release 2 (Karoo)
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
!/bin/env bash | |
sudo amazon-linux-extras install -y epel | |
sudo yum groupinstall 'Development Tools' | |
sudo yum install -y protobuf-devel protobuf-compiler ncurses-devel openssl-devel | |
git clone https://github.com/mobile-shell/mosh | |
cd mosh | |
./autogen.sh | |
./configure | |
make | |
sudo make install | |
cd .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment