Skip to content

Instantly share code, notes, and snippets.

@jmatt
Created August 17, 2020 22:46
Show Gist options
  • Save jmatt/0fc23eb90edc94f314a7eb5c907c8215 to your computer and use it in GitHub Desktop.
Save jmatt/0fc23eb90edc94f314a7eb5c907c8215 to your computer and use it in GitHub Desktop.
Install mosh on Amazon Linux release 2 (Karoo)
!/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