Skip to content

Instantly share code, notes, and snippets.

@benjiao
Last active January 19, 2017 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benjiao/d4c01a72fbe1a9c2095d2a85bba1a923 to your computer and use it in GitHub Desktop.
Save benjiao/d4c01a72fbe1a9c2095d2a85bba1a923 to your computer and use it in GitHub Desktop.
# Basic Stuff
apt-get update
apt-get dist-upgrade -y
apt-get upgrade -y
locale-gen en_PH.UTF-8
apt-get install ntp -y
apt-get install htop -y
apt-get install git -y
# Python
apt-get install -y python-pip
apt-get install -y python-virtualenv
# Node and Bower
apt-get install -y nodejs
apt-get install -y npm
if [ ! -f "/usr/bin/node" ]; then
ln -s /usr/bin/nodejs /usr/bin/node
fi
npm install -g bower
# Nginx
apt-get install -y nginx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment