Created
June 5, 2019 14:25
-
-
Save lumenpink/dd889e91a661828dc0f1c6e9a7020b8b to your computer and use it in GitHub Desktop.
This file contains hidden or 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/bash | |
sudo yum update -y | |
sudo amazon-linux-extras install docker | |
sudo service docker start | |
sudo usermod -a -G docker ec2-user | |
sudo yum -y install autoconf automake gcc gcc-c++ make boost-devel zlib-devel ncurses-devel protobuf-devel openssl-devel | |
cd /usr/local/src | |
sudo wget http://mosh.mit.edu/mosh-1.2.4.tar.gz | |
sudo tar xvf mosh-1.2.4.tar.gz | |
cd mosh-1.2.4 | |
sudo ./autogen.sh | |
sudo ./configure | |
sudo make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment