Skip to content

Instantly share code, notes, and snippets.

@mansurali901
Last active October 25, 2019 07:01
Show Gist options
  • Save mansurali901/28b39ac899411715709b7e6e0c19d21b to your computer and use it in GitHub Desktop.
Save mansurali901/28b39ac899411715709b7e6e0c19d21b to your computer and use it in GitHub Desktop.
# 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