I'm trying to install Oracle Java 8 on my Ubuntu Server (16.04 LTS, fully updated, x64), following this (very simple) guide.
After running apt-get update, I get the standard list of sites having been hit for the update, but I get the following error (which I imagine is the source of the issue):
Err:7 xenial/main amd64 Packages
404 not foundAll of the other URLs work, just not the amd64 endpoint.
Then, when running apt-get install oracle-java8-installer, I get the following error:
Package oracle-java8-installer is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package 'oracle-java8-installer' has no installation candidateIs that endpoint just not available anymore? Is there another source for Oracle Java 8? I see the webupd8 group mentioned on pretty much every guide, besides using dpkg to install the package manually (but then do I get updates from Oracle?)
3 Answers
NOTE: This answer no longer works, as the WebUpd8 PPA has been deprecated since Oracle has changed licensing and access restrictions to the Oracle Java codebase. Details at
The mistake is that you used instructions on how to install java on Debian. Not Ubuntu.
- As root, go to this folder:
/etc/apt/sources.list.d - Locate this file:
webupd8team-java.listand delete it. - Execute
sudo apt-get updatefor the system to remove any reference to that update server. - Execute
sudo add-apt-repository ppa:webupd8team/javato add the correct ppa to your system. - Execute
sudo apt-get updateagain and you should be able to install everything correctly.
I would recommend you installed oracle-java8-set-default too, in order to make this java package the default java on your system.
Note: WebUpd8 team's PPA has been discontinued with effective from April 16, 2019. Thus this PPA doesn't have any Java files. More information can be found on PPA's page on Launchpad. Hence this method no longer works and exists because of historical reasons. Installing via ppa repository is no supported by Ubuntu 20.04
Run the following commands:
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get updateThen , to install a specific jdk run these:
jdk6:
sudo apt-get install oracle-java6-installerjdk7:
sudo apt-get install oracle-java7-installerjdk8:
sudo apt-get install oracle-java8-installer 8 tl;dr:
You might want an older Java than 11, click through here to install Java 7 or 8.
Reason(s) to need that
My recent Ubuntu (as of July 28th, 2019)
uses the Java version 11 which is currently not supported by JabRef (Source)
and I needed to use JabRef - this might apply to other software as well.
Therefore I issued
sudo add-apt-repository ppa:webupd8team/java as found in the ops link and other answers, including the still accepted one, which for me led to:
[long explanation you get see below]
For this reason, THIS PPA IS DISCONTINUED (unless I find some way around this limitation).
Solution
The workaround that went well for my case was to
install a supported version of Java (7 or 8) via Oracle's website
(See here → Introduction/2. Oracle Java - thanks to pang for fixing the broken link)
To do so, click through to this site, download the respective fitting file and follow the given Instructions.
I unfortunately found no other way than calling it with the absolute path, but this works. In my case for example
cd /usr/java/jre1.8.0_221/bin/
./java -jar ~/bin/ #or where your .jar file liesIf Java 11 is not a problem for you, you probably want to use this tutorial. (Thanks to Saleh Enam Shohag for the comment)
The Oracle JDK License has changed for releases starting April 16, 2019.
The new Oracle Technology Network License Agreement for Oracle Java SE is substantially different from prior Oracle JDK licenses. The new license permits certain uses, such as personal use and development use, at no cost -- but other uses authorized under prior Oracle JDK licenses may no longer be available. Please review the terms carefully before downloading and using this product. An FAQ is available here:
Oracle Java downloads now require logging in to an Oracle account to download Java updates, like the latest Oracle Java 8u211 / Java SE 8u212. Because of this I cannot update the PPA with the latest Java (and the old links were broken by Oracle).
For this reason, THIS PPA IS DISCONTINUED (unless I find some way around this limitation).
Oracle Java (JDK) Installer (automatically downloads and installs Oracle JDK8). There are no actual Java files in this PPA.
Important -> Why Oracle Java 7 And 6 Installers No Longer Work:
Update: Oracle Java 9 has reached end of life:
The PPA supports Ubuntu 18.10, 18.04, 16.04, 14.04 and 12.04.
More info (and Ubuntu installation instructions):
Debian installation instructions:
- Oracle Java 8:
For Oracle Java 11, see a different PPA -> More info: