Last active
October 25, 2019 07:01
-
-
Save mansurali901/28b39ac899411715709b7e6e0c19d21b 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
# This script install OpenJDK 1.8 in Ubuntu 16.04 | |
# Author Mansur Ul Hasan | |
# [email protected] | |
# Adding PPA repository | |
add-apt-repository ppa:openjdk-r/ppa -y | |
# Updating System Repository | |
apt-get update -y | |
# Installing OpenJDK 1.8 | |
apt-get install openjdk-8-jdk -y | |
#Checking Version | |
java -version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment