I'm currently using jdk 6 on a ubuntu 10.04 LTS server.

Since Oracle will not allow jdk 6 in Ubuntu repos now, it looks like openjdk 7 is the best alternative https://lists.ubuntu.com/archives/ubuntu-security-announce/2012-January/001554.html

I noticed openjdk 7 available on 11.10 as a package, but is there a backport package to lucid 10.04 LTS?

I found this one https://launchpad.net/~openjdk but it is one year out of date.

link|improve this question

Alternatively, to install oracle jdk 7, this ppa repo works: webupd8.org/2012/01/… – tommy chheng Jan 18 at 18:41
feedback

3 Answers

up vote 1 down vote accepted

You can get Sun Java 6 from http://blog.flexion.org/2012/01/16/install-sun-java-6-jre-jdk-from-deb-packages/ but make sure to read the comments as there may be updates from the developer himself.

This may be the best option for a few reasons:
1. Ortang's suggestion of using the OpenJDK PPA has old versions of OpenJDK and is not recommended. I couldn't even get OpenJDK 7 to install on my Lucid box even though it said it was supported.
2. The Canonical Parters repository will be not be updated in the future due to the change in Oracle's policies so do not pull the Java from it. Simply changing your sources.list to Oneiric will not help for older releases.

Of course if you need Sun Java 7, try http://www.webupd8.org/2012/01/install-oracle-java-jdk-7-in-ubuntu-via.html as previously suggested. I have not tested it, but the WebUpd8 guys are pretty reliable.

link|improve this answer
The webupd8 script did not work for me on Lucid and caused some weird issues when I tried to uninstall it. This guide to installing Oracle Java got me there though: askubuntu.com/questions/56104/… – Nick Long Mar 29 at 11:59
@nick-long: the webupd8 team had to do an update recently, I wonder if you used the old version or the new one (I have not tried either, so I cannot advise) : ppa.webupd8.org/post/20061796964/… – Damien Apr 2 at 12:20
I tried it on 29th March 2012 on a Lucid server – Nick Long Apr 2 at 14:43
feedback

Go to /etc/apt/sources.list find

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
deb http://archive.canonical.com/ubuntu oneiric partner
deb-src http://archive.canonical.com/ubuntu oneiric partner

and uncomment the last 2 lines (as shown). Execute sudo apt-get update

than type sudo apt-get install sun and hit 'tab' button...see if that helps.

link|improve this answer
feedback

That should do the trick:

sudo add-apt-repository ppa:openjdk/ppa
apt-get update
apt-get install openjdk-7
link|improve this answer
Is that this one? launchpad.net/~openjdk/+archive/ppa If so, this is a year out of date. (the page has it last updated in 2010) – tommy chheng Jan 18 at 19:01
You are right that's the same ppa. The last release is obviously out of date. Sorry i was not looking at the release date. You could try to install one of these packages by hand anyway but that is of course no clean way and only good for testing. – ortang Jan 19 at 8:24
feedback

Your Answer

 
or
required, but never shown

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