i needed although the 6.9.1 Edition (for ruby support) available here
and i needed therefor the older java edition. So i went to the oracle site and searched for the older version (warning you need an oracle account).
Execute the downloaded *.bin file
and move the files to the ubuntu jvm dir
sudo mv jdk1.6.0_32 /usr/lib/jvm/
and enable jvm
sudo update-alternatives --install /usr/bin/javac javac /usr/lib/jvm/jdk1.6.0_32/bin/javac 1
sudo update-alternatives --install /usr/bin/java java /usr/lib/jvm/jdk1.6.0_32/bin/java 1
sudo update-alternatives --install /usr/bin/javaws javaws /usr/lib/jvm/jdk1.6.0_32/bin/javaws 1
sudo update-alternatives --config javac
sudo update-alternatives --config java
sudo update-alternatives --config javaws
now check java version
ready ;)
i got the infos from here