Where can I get a vanilla tar.gz binary build download of openjdk7 for linux, similar to the oracle/sun vanilla jdk download?

link|improve this question

80% accept rate
The only alternatives I can find are Oracle JDK or IcedTea. – Eli Acherkan Dec 5 '11 at 19:19
feedback

2 Answers

up vote 0 down vote accepted

Unfortunately, such files do not exist. You can follow these instructions to install OpenJDK for Linux distributions that use DEB and RPM packages.

You could extract the files from the DEB (using dpkg-deb or ar) or RPM (using rpm2cpio [1] [2] [3]) packages and create your own tarball.

Or, if you're up for the challenge, you can compile your own build using the build instructions. The nice thing about building your own is that you can create a debug build (Google does not return much information on debug builds, but you can look at the Makefile for some information), which avails useful debugging options.

link|improve this answer
Built my own...not too bad – S-C Dec 6 '11 at 20:04
feedback

You can download/install OpenJDK 6 & 7 here http://openjdk.java.net/install/

You can download the latest source bundle here http://download.java.net/openjdk/jdk7/

If you have mercurial you can even download the source for the pre-release Java 8. (however it may not be that different yet, except for more bugs perhaps ;)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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