How to Install Oracle Java 8 on Ubuntu 12.04 LTS

Posted on by J. Mays
Reading Time: < 1 minute
Pre-Flight Check
  • These instructions are intended specifically for installing Oracle Java 8 on Ubuntu 12.04 LTS.
  • I’ll be working from a Liquid Web Core Managed Ubuntu 12.04 LTS server with Apache and PHP installed, and I’ll be logged in as non-root user. If you need more information then visit our tutorial on How to Add a User and Grant Root Privileges on Ubuntu 12.04 LTS.

Step #1: Install Capability to Manage Repositories

python-software-properties allows for easy management of your distribution and independent repositories:

sudo apt-get install python-software-properties

Step #2: Add the WebUpd8 Team Personal Package Archive (PPA)

Add the PPA:

sudo apt-add-repository ppa:webupd8team/java

Note: Personal Package Archives include unsupported packages and are untrusted by the primary Ubuntu branch. At the time of publication, the WebUpd8 Oracle Java PPA is just an installer (meaning it does not include any Oracle Java binaries, but will download and install them). Use this PPA at your own risk.

Step #3: The Installation

As a matter of best practice we’ll update our packages:

sudo apt-get update

Then let’s install Oracle Java 8 with the PPA installer:

sudo apt-get install oracle-java8-installer

Be sure to accept the Oracle license!

Step #4: Verify Installation

Now verify that Java is installed and is of version 1.8.x:

java -version

Your result should be similar to:

java version "1.8.0_45"
Java(TM) SE Runtime Environment (build 1.8.0_45-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.45-b02, mixed mode)

Avatar for J. Mays

About the Author: J. Mays

As a previous contributor, JMays shares his insight with our Knowledge Base center. In our Knowledge Base, you'll be able to find how-to articles on Ubuntu, CentOS, Fedora and much more!

Latest Articles

In-place CentOS 7 upgrades

Read Article

How to use kill commands in Linux

Read Article

Change cPanel password from WebHost Manager (WHM)

Read Article

Change cPanel password from WebHost Manager (WHM)

Read Article

Change the root password in WebHost Manager (WHM)

Read Article