There was a time when Oracle’s releases would come years apart. But the company is changing this with its second big release this year. It recently unveil
seen from China
seen from Georgia
seen from Germany
seen from United Kingdom
seen from Vietnam
seen from United States
seen from United States
seen from South Korea
seen from United States

seen from United States
seen from Kazakhstan
seen from United States

seen from United States

seen from Malaysia
seen from United States
seen from United States

seen from United States
seen from United Kingdom
seen from Germany
seen from United States
There was a time when Oracle’s releases would come years apart. But the company is changing this with its second big release this year. It recently unveil
Download Java SE 6 JDK for Linux x86 self-extracting binary At the time of writing, the file I'm using is jdk-6u32-linux-i586.bin
From the download folder, make the file executable chmod a+x jdk-6u32-linux-i586.bin
Apparently there isn't a jvm folder anymore, so create one. sudo mkdir /usr/lib/jvm
Move the file to the jvm folder sudo mv jdk-6u32-linux-i586.bin /usr/lib/jvm/
Change to the jvm folder and run the self-extracting binary cd /usr/lib/jvm sudo ./jdk-6u32-linux-i586.bin Everything will be extracted to a new jdk1.6.0_32 folder and you can delete the .bin file now.
Make symbolic links to the new java binary. sudo ln -s -b /usr/lib/jvm/jdk1.6.0_32/jre/bin/java /etc/alternatives/java sudo ln -s -b /usr/lib/jvm/jdk1.6.0_32/jre/bin/java /usr/bin/java
Double-check the version java -version
http://www.printandweb.ca/2012/04/manually-install-oracle-jdk-6-for.html