Step-by-step – Oracle JDK 13 Kali 2020 Installation

March 3, 2020 | By the+gnu+linux+evangelist.

Installing

  1. 2. Downloading Oracle JDK 13

    Download Oracle JDK 13 GNU/Linux Package

  2. 3. Installing Oracle JDK 13

    Then to Setup Oracle JDK 13 on Kali Linux 2020 Linux
    First, Access the Target, usually in the Downloads folder:
    (But if downloaded with Firefox it can be instead into /tmp/mozilla*)

    cd && cd Downloads

    Now to Confirm the Package is there do:

    ls .

    Finally, to Install JDK 13 simply:

    sudo dpkg -i jdk-13*.deb
  3. 4. Setting Up Java

    Next to Set Up Oracle Java JDK 13
    You can directly Copy & Paste the Commands into Terminal.

    sudo update-alternatives --install /usr/bin/java java /usr/lib/jvm/jdk-13*/bin/java65
    sudo update-alternatives --install /usr/bin/javac javac /usr/lib/jvm/jdk-13*/bin/javac65
    sudo update-alternatives --install /usr/bin/jar jar /usr/lib/jvm/jdk-13*/bin/jar65
    sudo update-alternatives --install /usr/bin/javaws javaws /usr/lib/jvm/jdk-13*/bin/javaws65

    Checking or Setting the System Java Version in Use with

    sudo update-alternatives --config java

    And for the Java Compiler instead:

    sudo update-alternatives --config javac

    To Switch of Java Version Just Enter the Selection Number on First, Column. :)

    How to Download and Install Oracle JDK 13 on Kali Linux 2020 - JDK Configuration

  4. 5. Setting Up Env

    (Optional) Setting JAVA_HOME User Environment Variable
    And Edit the Bash environment Configuration file

    nano $HOME/.bashrc

    Append:

    export JAVA_HOME=/usr/lib/jvm/jdk-13[Release]

    Replace [Release] with the actual one on the above Command.
    Possibly to Check the JDK 13 exact PATH use in another window:

    ls /usr/lib/jvm/

    Ctr+x to Save & Exit from nano Editor :)
    Next to Load the New Bash Environment:

    bash
  5. Finally, Test New Java JDK 13 Installation.

    java -version

Contents


QuickChic Theme • Powered by WordPress