How to install Oracle JDK on Linux Mint

dudko
  10 years ago
  32

Unlinke JRE, Java Development Kit includes various development tools like the Java source compilers, bundling and deployment tools, debuggers, development libraries, etc.

Tutorial about How to install JRE for Linux Mint is almost identical for JDK.

Mint comes with a OpenJDK version of java libraries, which shouldn't be used for example Android development. [1]


1. Open up the Terminal (Alt + F2 > Terminal).

2. Remove OpenJDK installation.

sudo apt-get update && apt-get remove openjdk*

3. Download Oracle JDK from here. You are looking for a linux version with tar.gz extension. Also choose the right version from 32-bit (x86)  and 64bit (x64) one.

4. Change directory into one with downloaded tarball. In my case $HOME/Downloads.

cd ~/Downloads

5. Extract tarball. Replace with a name of dowloaded file. (just press Tab and it will be autocompleted.)

tar -zxvf jdk-

6. As a root create a folder in /opt where jdk will be stored.

sudo mkdir -p /opt/java

7. Move extracted folder to /opt/java. In my case, version number was 1.7.0_25.

sudo mv jdk1.7.0_25 /opt/java

8. Make JDK system default.

sudo update-alternatives --install "/usr/bin/java" "java" "/opt/java/jdk1.7.0_25/bin/java" 1
sudo update-alternatives --set java /opt/java/jdk1.7.0_25/bin/java


9. Test installed java version.

$ java -version
java version "1.7.0_25" Java(TM) SE Runtime Environment (build 1.7.0_25-b15) Java HotSpot(TM) 64-Bit Server VM (build 23.25-b01, mixed mode)

Optinaly install firefox plugin by linking libnpjp2.so file to ~/.mozzila/plugins folder.

mkdir -p ~/.mozzila/plugins
ln -s /opt/java/jdk1.7.0_25/jre/lib/amd64/libnpjp2.so ~/.mozzila/plugins/

Comments
mrDBUG 1 year ago

Just wanted to inform, this STILL works !! jdk19 ! :-) Thank you !


drjwsimmons 6 years ago

In step 8, I found I didn't need the update-alternatives --set call. The --install call did everything I needed.

The JDK installation has several other programs besides java, such as javac, javadoc, and javap. I made a shell script of update-alternatives --install calls for each of them and ran that as root to finish the installation.


drjwsimmons 6 years ago

To the previous user: I suspect that the problem is that you literally copied and pasted jdk1.7.0_25 when you were actually installing a different version. Try using the actual directory name created when you unpacked the tarball.


SamuelHimself 6 years ago

I get the following error;
update-alternatives: error: alternative path /opt/java/jdk1.7.0_25/bin/java doesn't exist

Please help


rtiwari95 7 years ago

@matpil
Thanks for your help


matpil 7 years ago

@rtiwari95
Hi, you need to use sudo also on the second part of the command:
sudo apt-get update && sudo apt-get remove openjdk*

Another "issue":
For mozilla plugin the commands are:
mkdir -p ~/.mozila/plugins
ln -s /opt/java/jdk1.7.0_25/jre/lib/amd64/libnpjp2.so ~/.mozila/plugins/

regards


rtiwari95 7 years ago

i have a problem
showing this after entering first command please help!
E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?


yonito 7 years ago

Good job dudko and wolfred.It worked for me.
Linux Mint 18-1 "Serena" Mate 64 bit
java version 1.8.0_112
Java(TM) SE Runtime Environment (build 1.8.0_112-b15)
Java HotSpot(TM) 64-Bit Server VM (build 25.112-b15, mixed mode)
Appreciate it guys!!


xWolf 7 years ago

Thanks a lot for this great tutorial.
Easy to understand and it worked for me.
Mint 17.3 KDE now
java version "1.8.0_111"
Java(TM) SE Runtime Environment (build 1.8.0_111-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.111-b14, mixed mode)

Thanks


L30n1d45 7 years ago

Nicely written, works like charm. Thank you!!


eliaskas 7 years ago

Very nice info... Thank's!


wolfred 7 years ago

I have a problem when i run "Javac":

$ javac
The program 'javac' can be found in the following packages:
* default-jdk
* ecj
* gcj-4.6-jdk
* gcj-4.7-jdk
* openjdk-7-jdk
* openjdk-6-jdk
Try: sudo apt-get install

So i installed default-jdk from the software manager and problem SOLVED.

In this tutorial it explain another way to solve this problem.

http://www.tecmint.com/install-java-jdk-jre-in-linux/

$ update-alternatives --install /usr/bin/javac javac /opt/java/jdk1.8.0_101/bin/javac 100
$ update-alternatives --config javac


srbiotik 7 years ago

Very nice tutorial, thank you sir :)


RVA_Dom 7 years ago

thank you!


iammag 7 years ago

Very usefull !


Kail3913 7 years ago

thank you!


Dineshkm 7 years ago

Nice tutorial
thank you


smokin-moe 7 years ago

Kernel: 3.19.0-32-generic x86_64 (64 bit)
Desktop: Cinnamon 2.8.8
Distro: Linux Mint 17.3 Rosa

jdk-8u91-linux-x64.tar.gz

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


Worked for me. Thankyou :)


dgbutterworth 8 years ago

I followed the Tutorial that describes how to install using the ppa created by webupd8.org. (Search for the that article.)


thevaliantx 8 years ago

There are simpler ways to get Java onto the machine than this convoluted article shows.


Hack06 8 years ago

Thank you!


flurbius 8 years ago

The instructions are a bit terse, there is plenty of room for stuff to go wrong,
for instance:
I have a non standard location for my downloads even though I fixed it so that it still looks like it is under my home directory so when i did your step 5 I got a mass of errors that quickly zipped off the screen and if I hadnt noticed them would have left my Java folder short of a couple of hundred of the most important files, I looked in the folder and it had lots of stuff there so thought maybe they had been warnings went and had a look it was a permission thing I went back to step 5 and added sudo to the beginning of your first line and it went thru.

Also in your final Optinal(sic) step you have mispelled mozilla - not sure if thats an issue actually but makes me a bit suspicious that you didnt actually run those commands - just typed them here. And there is simply not enough information there to know how the .mozilla/plugins folder will be used and by who, I had a look around and firefox has a couple of plugins directories but not there, and will this work for multiple users or just me?

This is all intended as constructive criticism, I appreciate the effort you put into it, I just dont want anyone to come to grief because of it.

cheers


Gameranand 8 years ago

Thanks a lot. Worked perfectly :)


callagg2 8 years ago

Excellent tutorial...worked perfectly on LMDE
thank you


jahid_0903014 8 years ago

@aroneasadas 
Check out this method: http://neurobin.github.io/OracleJDKInstaller/


aroneasadas 8 years ago

your instructions are not that good. Any one cant understand what you said thus can not completely install jdk with out any problems . just copy paste wont work so its not a good one


kewi 8 years ago

Second the comment from sbrbot.
This guide works good but the other is easier to maintain.


sbrbot 8 years ago

Here is another (I must say better) article about how to install Oracle JDK because it suggest creating "current-java" folder which allows easier upgrade of JDK version.

http://community.linuxmint.com/tutorial/view/1839


aovchinn 8 years ago

You need another sudo in first command

sudo apt-get update && sudo apt-get remove openjdk*


jahid_0903014 9 years ago

you can automate this task with this script


fuzzyanalysis 9 years ago

Fantastic, thanks. I also re-used your step 8 to set javac, the java compiler, for use in IDEs when programming in Java (IntelliJ and JBoss). Cheers.


Indunil 9 years ago

This is complete tutorial and works fine!
I recoment this to all of you!


scriptx 9 years ago

Here is a more complete version:
http://community.linuxmint.com/tutorial/view/1839

This version:
* Allows for easy updating
* Updates more of the various jdk executables (ie: jar, keytool, servertool, etc)
* Has a fancy helper tool to help with the 'update-alternatives' commands!
* Does not allow for multi-versioning by default but you can modify the guide to make it so


DrTubbyGooberman 10 years ago

Great! Concise and to the point. Thank you!

Note that I think you need a 2nd sudo in the JDK removal command set.

Big help for a noob like me! Thanks again!


Bee1 10 years ago

Needed the assist for correct commands.


zantaz 10 years ago

You are C*azy ...