Last active
July 24, 2018 05:49
-
-
Save anupkrbid/7707864e7838a4db0df37dd55b8df9df to your computer and use it in GitHub Desktop.
Installing jdk in ubuntu 16.04
This file contains 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 | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java8-installer | |
#sudo apt-get install oracle-java9-installer | |
# For more config related info | |
# https://www.digitalocean.com/community/tutorials/how-to-install-java-with-apt-get-on-ubuntu-16-04 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment