Looking for Java binary for Mac OS X - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T06:36:02Zhttp://stackoverflow.com/feeds/question/1057361http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1057361/looking-for-java-binary-for-mac-os-x0Looking for Java binary for Mac OS XNeoryder2009-06-29T09:20:01Z2009-07-07T03:36:40Z
<p>Hi,</p>
<p>I'm trying to build zimbra from source on a mac mini running on mac os x 10.4.10.</p>
<p>It seems that I need a file like this "jdk-1_5_0_16-linux-i586.bin" but I can't seem to find a jdk binary that is made for mac osx.</p>
<p>Can anybody point me to this binary? </p>
<p>Here is what zimbra does with the binary:</p>
<pre><code>sh jdk-1_5_0_15-linux-amd64.bin
tar czf jdk1.5.0_15.tgz jdk1.5.0_15
mv jdk1.5.0_15.tgz /opt/build.zimbra/source/FRANKLIN/ThirdPartyBuilds/x86_64/java/
</code></pre>
<p>If I cannot download this, Is there a way to create the tgz from an installation of java?</p>
http://stackoverflow.com/questions/1057361/looking-for-java-binary-for-mac-os-x/1057383#10573832Answer by Thilo for Looking for Java binary for Mac OS XThilo2009-06-29T09:24:36Z2009-06-29T09:24:36Z<p>Java is part of the Max OS X install. The JDK for Mac is maintained by Apple, and you cannot download it anywhere else.</p>
<p>You should have JDK 1.5 already. Open a terminal and try "java --version" and "which java". </p>
<p>As for Zimbra, their download page has Mac binaries. They should work "out of the box". Are you sure you need to build from source?</p>
http://stackoverflow.com/questions/1057361/looking-for-java-binary-for-mac-os-x/1057503#10575030Answer by hhafez for Looking for Java binary for Mac OS Xhhafez2009-06-29T09:58:21Z2009-06-29T09:58:21Z<ul>
<li>The version of the jdk isntalled on Mac OS X 10.5 is 1.6. I am not sure what is the latest version 10.4 but check on the Apple website because they are the ones that supply the JVM for Mac OS X</li>
<li>The line <code>sh jdk-1_5_0_15-linux-amd64.bin</code> is running a shell script. What is in that shell script? Can you read the shell script and tell us what it is supposed to do. We can only guess from the name. My guess is that it installs the 1.5 jdk which you don't need to do. But that is only a guess</li>
<li>Regarding your last question. Can you make an tgz of an installation? Why do you want to do that? I ask because if you are trying to do what the three lines you quoted are doing then all it looks like it is doing is installing the jkd which you can already do by getting the Apple JDK installer.</li>
</ul>
http://stackoverflow.com/questions/1057361/looking-for-java-binary-for-mac-os-x/1060976#10609762Answer by Neoryder for Looking for Java binary for Mac OS XNeoryder2009-06-29T22:53:50Z2009-06-29T22:53:50Z<p>After a lot of searching I was able to find that the JDK is stored in "/System/Library/Frameworks/JavaVM.framework/Versions" just tarred this and I got what I needed! Thanks for the help. this is for 10.4, I don't know with previous or the most current version.</p>