-
-
Save mercutiodesign/182d6adc07ba85938a4c578f3ab52da3 to your computer and use it in GitHub Desktop.
mosh install to AWS EC2 (Amazon AMI)
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/sh | |
sudo yum -y install autoconf automake gcc gcc-c++ make boost-devel zlib-devel ncurses-devel protobuf-devel openssl-devel | |
cd /usr/local/src | |
VERSION=1.3.2 | |
PKGNAME=mosh-$VERSION | |
FNAME=$PKGNAME.tar.gz | |
sudo wget https://mosh.org/$FNAME | |
sudo tar xvf $FNAME | |
cd $PKGNAME | |
sudo ./autogen.sh | |
sudo ./configure --prefix=/usr/local | |
sudo make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment