[HOW TO] Install Oracle JDK 7 Manually in Ubuntu

The Java Development Kit (JDK) is mainly a set of tools for running, compiling and debugging Java applications. There are a few other JDK, but in this article we'll see how to manually install the Oracle's JDK in any distribution from the Ubuntu family. The process consists of downloading the binary package, extract it and update the system so that the new version is used. By the way, if you installed the JDK via PPA, as described in my previous article , both can work alongside. The command update-alternatives can be used to choose one between them. Download The first step is to download the latest binaries package from Oracle's website . On the downloads webpage choose the JDK download button. On the next page you'll see list of several files, but you should focus your attention on two: The file name ends with i586.tar.gz or x86_64.tar.gz . If your system is 32 bits you should select the first one and select the latter if it's 64 bit...