$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

How to Install Oracle JDK 7 LXLE 16.04 Xenial Easy Guide

September 24, 2017 | By the+gnu+linux+evangelist.

Install Oracle JDK 7 LXLE 16.04

Hello LXLE User! This Guide shows you Step-by-step How to Download and Install Oracle JDK 7 LXLE 16.04 Xenial LTS Desktop.

To SetUp Oracle JDK on LXLE 16.04 you will need to Use the update-alternatives Tool to Update your System Java to 1.7 JDK.

Moreover, to Make the Process Easier to Visualize the Post Includes the Basic Screenshots of the Steps Involved.

The Contents and Details of How to Download and Install Oracle JDK 8+ on LXLE 16.04 are Expressly Essentials to Give Focus Only to the Essentials Instructions and Commands and Make the Tut Easier to Understand ;)

How to Download and Install Oracle JDK 7 LXLE 16.04 - Featured
  1. First, Open a Command Line Terminal Window
    Ctrl+Alt+t on Desktop
    (Press “Enter” to Execute Commands)

    How to Download and Install Oracle JDK 7 LXLE 16.04 - Open Terminal

    In case first see: Terminal QuickStart Guide.

  2. Download Oracle Java SE JDK 7 for Linux:

    Here Oracle JDK 7 i586/x8664 tar.gz
    Link to Download the Latest Oracle-Sun Java 1.7 SE JDK 32/64-bit Release
  3. Then Double-Click on the tar.gz Archive and Extract into /tmp

    How to Download and Install Oracle JDK 7 LXLE 16.04 - Extract tar.gz Extraction Path

  4. Next Relocate JDK 7.

    Copy
    sudo su

    If Got “User is Not in Sudoers file” then see: How to Enable sudo
    To Make a jvm Directory Only if Not already there
    (You can directly copy & paste the commands into the terminal)

    Copy
    if [ ! -d "/usr/lib/jvm" ]; then mkdir /usr/lib/jvm; fi
    Copy
    sudo chown -R root:root /tmp/jdk1.7*

    Then to shift the Oracle JDK 7 contents

    Copy
    mv /tmp/jdk1.7* /usr/lib/jvm/
    
  5. Finally, to Install Oracle Java JDK 7.

    Copy
    update-alternatives --install /usr/bin/java java /usr/lib/jvm/jdk1.7*/bin/java 1065
    
    Copy
    update-alternatives --install /usr/bin/javac javac /usr/lib/jvm/jdk1.7*/bin/javac 1065
    
    Copy
    update-alternatives --install /usr/bin/jar jar /usr/lib/jvm/jdk1.7*/bin/jar 1065
    
    Copy
    update-alternatives --install /usr/bin/javaws javaws /usr/lib/jvm/jdk1.7*/bin/javaws 1065
    

    Checking or Setting the System Java Version in Use with:

    Copy
    update-alternatives --config java
    

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

  6. How to Getting-Started with Java JDK 7.

    Here Java 7 Quick Start
    Quick Start with Java JDK Development
  7. Now Thanks to Oracle-Sun Corporation
    you are able to Successfully Start with Java JDK Use & Development.

    How to Install Eclipse for Java SE on LXLE

    Here Install Eclipse Java LXLE
    Links to Installation Guides of Latest Eclipse IDE for Java SE Development on Linux LXLE Distro