1

I am running Ubuntu Server 18.04 and want to install opendjdk-8-jdk. I have tried doing these steps (referring to this).

sudo add-apt-repository ppa:openjdk-r/ppa
sudo apt-get update
sudo apt-get install openjdk-8-jdk

But I am still getting this:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package openjdk-8-jdk

I specifically want openJDK rather than Oracle-Java-Kit that some repositories offer.

Thank you.

Zanna
  • 70,465
Jay Patel
  • 13
  • 1
  • 1
  • 3

1 Answers1

2

I suggest you remove the ppa and enable the universe repo instead.

apt policy openjdk-8-jdk
openjdk-8-jdk:
  Installed: (none)
  Candidate: 8u181-b13-1ubuntu0.18.04.1
  Version table:
     8u181-b13-1ubuntu0.18.04.1 500
        500 [my local mirror]/mirror/us.archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages
        500 [my local mirror]/mirror/us.archive.ubuntu.com/ubuntu bionic-security/universe amd64 Packages
     8u162-b12-1 500
        500 [my local mirror]/mirror/us.archive.ubuntu.com/ubuntu bionic/universe amd64 Packages
Organic Marble
  • 23,641
  • 15
  • 70
  • 122
  • 3
    Thanks. It worked. Found how to enable the universe repo here: https://askubuntu.com/questions/78613/how-do-i-enable-the-universe-repository-from-the-command-line – Jay Patel Nov 12 '18 at 01:51