Last active
December 19, 2015 15:19
-
-
Save fsodogandji/5975840 to your computer and use it in GitHub Desktop.
Install Oracle JDK with ubuntu
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/sh | |
# remove openJDK | |
sudo apt-get purge openjdk-\* | |
# Install Oracle JDK | |
sudo apt-get install python-software-properties | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java6-installer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment