Skip to content

Instantly share code, notes, and snippets.

@tfogo
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save tfogo/d254884a7d837df92341 to your computer and use it in GitHub Desktop.

Select an option

Save tfogo/d254884a7d837df92341 to your computer and use it in GitHub Desktop.
#!/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