Skip to content

Instantly share code, notes, and snippets.

@joshfinley
Last active December 28, 2015 07:08
Show Gist options
  • Save joshfinley/42b74bc58391983ed5f6 to your computer and use it in GitHub Desktop.
Save joshfinley/42b74bc58391983ed5f6 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Script to generate a standard development environment on Ubuntu 15.04
# virtualmachine with all necessary programs installed for development
# of gamerm8
# USAGE
# immediatley after installation of Ubuntu 15.04 and git
# go to download dir, type "sudo chmod +x ./dev-env.sh" then "./dev-env
# .sh
echo "Updating software"
sleep 1
sudo apt-get update
sudo apt-get upgrade
echo "Get applications"
sleep 1
sudo apt-get install virtualbox-guest-utils
sudo apt-get install vim
sudo apt-get install ruby
sudo apt-get install sqlite3
sudo gem update --system 2.0.3
sudo apt-get install ruby-dev
sudo apt-get install zlib1g-dev
sudo apt-get install libsqlite3-dev
sudo gem install sqlite3 -v'1.3.11'
sudo apt-get install nodejs
bundle install
echo "Done :)"
sleep 1
echo "Restarting"
sleep 1
sudo reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment