Skip to content

Instantly share code, notes, and snippets.

@outro56
Last active August 29, 2015 14:21
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 outro56/59b9a71cd88445567aee to your computer and use it in GitHub Desktop.
Save outro56/59b9a71cd88445567aee to your computer and use it in GitHub Desktop.
Provision development image
#!/usr/bin/env bash
echo "Provisioning virtual machine..."
sudo apt-get update
sudo apt-get install -y python-software properties
sudo apt-get install -y software-properties-common
sudo add-apt-repository -y ppa:webupd8team/java
sudo apt-get update
sudo apt-get install -y build-essentials
sudo apt-get install -y git
sudo apt-get install -y bash-completion
sudo apt-get install -y llvm
sudo apt-get install -y cmake
sudo apt-get install -y gdb
sudo apt-get install -y clang-3-5
sudo apt-get install -y go
sudo apt-get install -y python
sudo apt-get install -y pip
sudo apt-get install -y node
sudo apt-get install -y npm
sudo apt-get install -y oracle-java8-installer
sudo apt-get install -y maven
export JAVA_1_8_HOME=/usr/lib/jvm/java-8-oracle
(cd /tmp ; wget http://apt.biicode.com/install && chmod +x install.sh && ./install.sh)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment