Last active
March 7, 2017 22:47
-
-
Save cstipkovic/80d820a904f5039646b1f3ffe3ee3436 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Baseado no artigo: https://dzone.com/articles/vagrant | |
# Instala o Oracle JDK via WebUpd8 PPa | |
echo "Instalando Java 8..." | |
sudo apt-get install -y software-properties-common python-software-properties | |
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | sudo /usr/bin/debconf-set-selections | |
sudo add-apt-repository -y ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install -y oracle-java8-installer | |
echo "Aplicando as variaveis de ambiente do Java 8..." | |
sudo apt-get install -y oracle-java8-set-default | |
echo "Versao do Java Instalada: " | |
java -version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment