Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

Recently, I've installed JDK 7 from the Oracle site, using these instructions.

Now, I'm wondering what is the correct method to update it (or, better, to keep up-to-date automatically)? For instance, there were some security issues fixed few days ago.

share|improve this question

1 Answer

You can use the webupd8 java ppa, so you get updates automatically through the package manager.

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer
sudo update-java-alternatives -s java-7-oracle

If you need the latest Oracle Java 6, you install it too:

sudo apt-get install oracle-java6-installer

If you want test Oracle Java 8 early access builds, you can install it too:

sudo apt-get install oracle-java8-installer

To switch between different Java versions, you could use the following terminal command:

sudo update-alternatives --config java

Source:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.