Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any linux command I could use to find out JAVA_HOME directory? I've tried print out the environment variables ("env") but i cant find the directory.

share|improve this question

5 Answers

up vote 5 down vote accepted

'echo $JAVA_HOME' will print the value if its set. However, if you didn't set it manually in your startup scripts, it probably isn't set.

if you try 'which java' and it doesn't find anything, java may not be installed on your machine, or at least isn't in your path. Depending on which distro you have and whether or not you have root access, you can go to http://www.java.com to download the version you need. Then, you can set JAVA_HOME to point to this directory. Remember, that this is just a convention and shouldn't be used to determine if java is installed or not.

share|improve this answer

I know this is late, but this command searches the /usr/ directory to find java for you

sudo find /usr/ -name *jdk

Results to

/usr/lib/jvm/java-6-openjdk
/usr/lib/jvm/java-1.6.0-openjdk
share|improve this answer
Had to use sudo find / -name *javac to find the oracle VM I had installed – bulltorious Sep 4 '12 at 19:25

Perhaps it's not set....try setting the value. It used to be done in the .cshrc on Unix, if I recall correctly. Is that still true of Linux?

share|improve this answer
C shell(?sp) is unlikely to be run on Linux. bash is the usual one. – Tom Hawtin - tackline Jul 13 '09 at 1:33

On the Terminal, type:

echo "$JAVA_HOME"

If you are not getting anything, then your environment variable JAVA_HOME has not been set. You can try using "locate java" to try and discover where your installation of Java is located.

share|improve this answer

Did you set your JAVA_HOME

  • Korn and bash shells:export JAVA_HOME=jdk-install-dir
  • Bourne shell:JAVA_HOME=jdk-install-dir;export JAVA_HOME
  • C shell:setenv JAVA_HOME jdk-install-dir
share|improve this answer
Are you missing a semicolon there? – Tom Hawtin - tackline Jul 13 '09 at 1:34
Fixed, thanks Tom – Nizar Grira Jul 13 '09 at 1:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.