Last active
January 5, 2020 20:20
-
-
Save kolosek/e53d7ca9af4ccf16a672fc265178dd02 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 | |
| echo "Installing Java JRE and Java JDK" | |
| sudo add-apt-repository ppa:openjdk-r/ppa | |
| sudo add-apt-repository ppa:webupd8team/java | |
| sudo apt-get update | |
| sudo apt-get install python-software-common software-properties-common | |
| sudo apt-get update | |
| sudo apt install default-jre default-jdk gdebi -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment