Quantcast
Channel: Computing For Geeks
Viewing all articles
Browse latest Browse all 78

How to install latest Java JDK on debian 8, kali linux 2.0 and ubuntu 15.04

$
0
0
Many applications require Java installed on your computer for them to run smoothly. This tutorial will guide you through a complete process of installing latest java on Kali Linux 2.0, debian jessie  8 and any ubuntu derivative.

Most articles you read online will give you hard to follow procedure but this is straightforward guide and you will always get latest version of java on your distro.
If you are on Kali Linux 2.0, make sure you have correct repositories in your sources.list file.You can find correct way of doing that from my previous article How to upgrade to Kali Linux 2.0 (Kali Sana) from Kali Linux 1.x 
 Then after that
1) Switch to root account or use sudo, with first one you'll enter root password and with the second one you'll enter your normal user account password.
su -
or
sudo su -
2) Add webupd8team repositories to your system. Just copy paste following commands on your terminal.

cat >/etc/apt/sources.list.d/webupd8team-java.list<< EOF
deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main
deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main
EOF
3) Then add the key to use the repos

apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886 
4) Next thing to do is system update
apt-get update
5) Finally install oracle java 8 installer which will download and install java for you.

apt-get install oracle-java8-installer

After java downloading and installing successfully, check your Java version
java -version
You should see output similar to one below with java 8 latest.



On Kali Linux 2.0, make sure you have kernel headers installed to avoid any problem on your working env. here is the link to How to install Linux Kernel Headers on Kali Linux 2.0 (Kali Sana)

Thanks for reading. feel free to drop a comment in case you encounter any error or problem.
Search Tags:
How to install java on kali linux
Getting latest java on debian,ubuntu and Kali Linux
Kali Linux java latest installation
Updating java on  debian,ubuntu and kali linux to latest version.



Viewing all articles
Browse latest Browse all 78

Trending Articles