Skip to content

Instantly share code, notes, and snippets.

@jacobben85
Created September 8, 2016 04:34
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 jacobben85/62e34eac19a845ba6dd824ffa738bcee to your computer and use it in GitHub Desktop.
Save jacobben85/62e34eac19a845ba6dd824ffa738bcee to your computer and use it in GitHub Desktop.
Ubuntu bootstrapping
#!/usr/bin/env bash
echo "Installing Java 8"
sudo apt-get --assume-yes update
sudo apt-get install -y python-software-properties debconf-utils
sudo add-apt-repository ppa:webupd8team/java -y
sudo apt-get --assume-yes update
echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | sudo debconf-set-selections
sudo apt-get install -y oracle-java8-installer
sudo apt-get install -y oracle-java8-set-default
echo "Java 8 installation complete"
sudo apt-get --assume-yes update
sudo apt-get install -y htop
sudo apt-get install -y maven
sudo apt-get install -y nmap
sudo apt-get install -y git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment