Skip to content

Instantly share code, notes, and snippets.

@brandonparsons
Created April 6, 2014 06:02
Show Gist options
  • Save brandonparsons/10002075 to your computer and use it in GitHub Desktop.
Save brandonparsons/10002075 to your computer and use it in GitHub Desktop.
#!/bin/bash
export DEBIAN_FRONTEND=noninteractive
##########
echo Installing base packages....
sudo sed 's/main$/main universe/' -i /etc/apt/sources.list
sudo apt-get -qq update && sudo apt-get -y upgrade
sudo apt-get -y install nano vim htop iftop curl wget dnsutils git build-essential make gcc tar unzip python-software-properties
###########
echo Setting up locales....
sudo locale-gen en_US.UTF-8 && sudo dpkg-reconfigure locales
echo '
export LANGUAGE="en_US.UTF-8"
export LANG="en_US.UTF-8"
export LC_ALL="en_US.UTF-8"
' > /tmp/locale
sudo mv /tmp/locale /etc/default/locale
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment