Install Java Jdk On Ubuntu Linux Iso

Posted on by
Give More Feedback

Java is a collection of software better known for it’s cross platform availability was developed by Sun Microsystems in 1995. Java platform is used by millions of applications and websites (specially used in banking sites) due to its fast, secure and reliable nature. Today, Java is everywhere, from desktops to data-centers, game consoles to scientific computers, mobile phones to the Internet, etc There are more than one version of Java can be installed and running on same computer and also it’s possible to have different version of JDK and JRE simultaneously on a machine, actually there are abundant of applications that requires Java-jre ( Java Runtime Environment) and those who are developer required Java-sdk ( Software Development Kit). Install Java 8 in Linux A lots of Linux distribution comes with other version of Java called OpenJDK (not the one developed by Sun Microsystems and acquired by Oracle Corporation). OpenJDK is an open source implementation of Java application.

Latest stable release of Java version is 1.8.0_45 i.e 8u45. Install Java 8 in Linux 1. Before installing Java, make sure to first verify the version of installed Java. # java -version java version '1.7.0_75' OpenJDK Runtime Environment (IcedTea 2.5.4) (7u75-2.5.4-2) OpenJDK 64-Bit Server VM (build 24.75-b04, mixed mode) It’s clear from the output above that the installed version of Java is OpenJDK 1.7.0_75. Make a directory where you want to install Java. For global access (for all users) install it preferably in the directory /opt/java. # mkdir /opt/java && cd /opt/java 3.

Now it’s time to download Java (JDK) 8u45 source tarball files for your system architecture by going to official page. Aquachem Software Crack Free Download. For reference, we have provided the source tarball file-names, please select and download these below mentioned files only. Jdk-8u45-linux-i586.tar.gz [For 32-bit Systems] jdk-8u45-linux-x64.tar.gz [For 64-bit Systems] Alternatively, you may use wget command to download files directly into the /opt/java directory as shown below. --------------- For 32-bit Systems --------------- # cd /opt/java # wget --no-cookies --no-check-certificate --header 'Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie' '--------------- For 64-bit Systems -------------- # cd /opt/java # wget --no-cookies --no-check-certificate --header 'Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie' '4. Once file has been downloaded, you may extract the tarball using as shown below.