Last active
August 29, 2015 14:15
-
-
Save tfogo/d254884a7d837df92341 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 | |
| # Get your AWS EC2 instance set up quicky! | |
| # Simple setup.sh for configuring Ubuntu 14.04 LTS EC2 instance. | |
| # Set up locale | |
| sudo apt-get install --reinstall language-pack-en | |
| # Install git | |
| sudo apt-get install -y git | |
| # Install zsh | |
| sudo apt-get install -y zsh | |
| curl -L https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sudo sh | |
| sudo chsh -s /bin/zsh ubuntu | |
| echo "hi" | |
| # Switch to zsh | |
| zsh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment