Skip to content

Instantly share code, notes, and snippets.

@Rahix
Created March 9, 2015 17:01
Show Gist options
  • Save Rahix/57d26e93230446dc41ed to your computer and use it in GitHub Desktop.
Save Rahix/57d26e93230446dc41ed to your computer and use it in GitHub Desktop.
bootstrap.sh
#!/usr/bin/env bash
# Initial apt-get update
echo "Updating apt-get..."
sudo apt-get update > /dev/null
echo "Updating done."
echo "Installing apache2, g++, curl, libssl-dev, apache2-utils, git-core..."
sudo apt-get install apache2
sudo apt-get install g++ curl libssl-dev apache2-utils
sudo apt-get install git-core
echo "Installing node..."
git clone git://github.com/ry/node.git node_install
cd node && ./configure && make && sudo make install
echo "Done."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment