Kodi Community Forum
Where is java interpreter - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: Linux (https://forum.kodi.tv/forumdisplay.php?fid=52)
+---- Thread: Where is java interpreter (/showthread.php?tid=177674)



Where is java interpreter - SmittyBoy - 2013-11-10

I've got a small java utility which I'd like to run, but attempts to run it are frustrated by the fact that I can't seem to find the java interpretor (aka JRE, I think).

interrogating the environment, I discover no java env. variables. OK, my java knowledge is limited, but I am fairly certain there should be something pointing to the java installation ?


-xbmc:~$ set | grep -i java
xbmc:~$


I'm using an unmodified (standard installation) of XBMCBuntu 12.2

Any help appreciated.


RE: Where is java interpreter - pumkinut - 2013-11-10

You need to google how to install java on Ubunutu, as this is a Linux question, not an XBMC question.


RE: Where is java interpreter - SmittyBoy - 2013-11-10

I was under the impression that OpenJDK was a default part of XBMCBuntu, which then means - I presume - that this is a XBMC question. If not, please explain.


RE: Where is java interpreter - crackers - 2013-11-10

Java is never installed by default on any *buntu version that I'm aware of. You will need to specifically install the package, then it'll run just fine (no ENV settings required).


RE: Where is java interpreter - un1versal - 2013-11-11

Java is required in XBMC at compiling level (Linux at least) but after that no, not used and not required.


Re: Where is java interpreter - nickr - 2013-11-15

Easily installable.


RE: Where is java interpreter - negge - 2013-11-15

sudo apt-get install openjdk-6-jre-headless. Remove the "-headless" part if you need to run graphical Java applications.