48

I am a new user of Linux, it has been recommended to me by my friend.

He told me to install software called IntelliJ Idea IDE.

Well I have been following the tutorial. But now when I try to open "idea.sh", an error message pops-up:

'tools.jar' is not in IDEA classpath.
Please ensure JAVA_HOME points to JDK rather than JRE.

Please remember that I'm new to Ubuntu and I'm planning for a nice long stay once I get myself into it :)

Also I do not know if I am running a correct Java6 JDK. When I do java -version, this is what I get:

java version "1.6.0_23"
OpenJDK Runtime Environment (IcedTea6 1.11pre) (6b23~pre10-0ubuntu5)
OpenJDK 64-Bit Server VM (build 20.0-b11, mixed mode)

Thank You for reading this and I hope I will get a nice response.

Radu Rădeanu
  • 169,590
Patrick
  • 481
  • 1
  • 4
  • 4

9 Answers9

62

Be sure you have a JDK installed on your system.

sudo apt-get install openjdk-7-jdk

If that does not solve your problem, you must tell your system to use that JDK instead of the current JRE. To do so, you choose which JDK/JRE you use by default on your system by executing the following command in terminal.

sudo update-alternatives --config java

This command will give you a list of alternative java options, which you will then be able select a JDK instead of JRE.

Dennis
  • 403
allejo
  • 754
  • 5
  • 11
15

On my Linux Mint environment I've encountered the same problem. I tried to install Oracle JDK8 using

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

but the problem remained because installer didn't change environment variables. Then I tried the following

sudo apt-get install oracle-java8-set-default

and it solved the problem

renadeen
  • 251
5

Try this command

export JAVA_HOME=/usr/lib/jvm/default-java

and run idea.sh again.

Mind you, this only works inside the terminal where you run the command. You will have to set the variable inside .bashrc file. This will enable it on every terminal you open.

StackOverFlow

5

Try this:

sudo apt-get install openjdk-6-jdk

You need JDK.

Eric Carvalho
  • 54,385
js11
  • 51
  • 1
  • 2
5

The answers above are correct but I have one thing to add. Actually the environment variables for Shell Session and Desktop GUI Session are different (check this). If the error happens when you launch IntelliJ with Desktop Entry(the Launcher), you might don't have JAVA_HOME in your GUI Environment.

So the easiest solution is to add JAVA_HOME in the Exec line of the desktop entry like this:

[Desktop Entry]
Version=1.0
Type=Application
Name=IntelliJ IDEA Community Edition
Icon=/home/zhu/Applications/IntelliJ/bin/idea.png
Exec=env JDK_HOME=/usr/lib/jvm/java-7-openjdk-amd64 "/path/to/idea.sh" %f
Comment=Develop with pleasure!
Categories=Development;IDE;
Terminal=false
StartupWMClass=jetbrains-idea-ce
hajimuz
  • 151
2

I've solved this problem with these commands

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
sudo apt-get install oracle-java8-set-default

and

export JAVA_HOME=/usr/lib/jvm/default-java
MadMike
  • 4,244
  • 8
  • 28
  • 50
1

The solution of exporting the JAVA_HOME variable doesn't work for me in Ubuntu. I solved it adding the bin directory to the PATH variable.

I downloaded the JDK from the Oracle website, and I placed it in this directory: /home/alejandro/software/JAVA-descarga/jdk1.8.0_25

Then you have to add that route to the PATH variable:

export PATH=/home/alejandro/software/JAVA-descarga/jdk1.8.0_25/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games  

Then run the idea.sh file in the same terminal and it will start well.

karel
  • 114,770
0

Even though on UI popup message it says

'tools.jar' is not in IDEA classpath.
Please ensure JAVA_HOME points to JDK rather than JRE.

on command line it shows

ERROR: cannot start IntelliJ IDEA.
No JDK found to run IDEA. Please validate either IDEA_JDK or JDK_HOME points to valid JDK installation

and this was exactly the issue for me. Setting JAVA_HOME did not work but had to set JDK_HOME to make it work.

Aniket Thakur
  • 4,237
  • 3
  • 25
  • 24
0

edit the file android-studio/bin/studio.sh

like the mark content(JAVA_HOME line)

#!/bin/sh
#
# ---------------------------------------------------------------------
# Android Studio startup script.
# ---------------------------------------------------------------------

    JAVA_HOME=your_path/jdk1.8.0_31

message()
muru
  • 197,895
  • 55
  • 485
  • 740