How do I update Oracle Java (JDK and JRE)

162,496

Now, you can use the Linux Uprising Java PPA, so you get updates automatically through the package manager. If you need the latest Oracle Java 12, you install it:

sudo add-apt-repository ppa:linuxuprising/java
sudo apt-get update
sudo apt-get install oracle-java12-installer
sudo update-alternatives --config java

Old solution - DISCONTINUED- does not work anymore

You can use the WebUpd8 Java PPA, so you get updates automatically through the package manager. If you need the latest Oracle Java 8, you install it:

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

If you need the latest Oracle Java 6 (Outdated version), you install it too:

sudo apt-get install oracle-java6-installer

If you need the latest Oracle Java 7 (Outdated version), you install it too:

sudo apt-get install oracle-java7-installer

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

sudo apt-get install oracle-java9-installer

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

sudo update-alternatives --config java

Source:

Share:
162,496

Related videos on Youtube

pilat
Author by

pilat

Updated on September 18, 2022

Comments

  • pilat
    pilat over 1 year

    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.

  • avgvstvs
    avgvstvs over 10 years
    Reread the OP, user01: "Recently, I've installed JDK 7 from the Oracle site," The question is therefore: "How can I keep my JDK installations up to date automatically?"
  • pilat
    pilat about 10 years
    This is very good answer, indeed. If there were another one, explaining how to do it without repositories, I'd probably upvoted it too.
  • Admin
    Admin about 10 years
    Is there a way to run update-alternatives when you don't have interactive access? Like during ansible provisioning?
  • IgorGanapolsky
    IgorGanapolsky over 7 years
    I get an error: sudo: add-apt-repository: command not found