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

How to Install Oracle-Sun Java JDK 7 X86 on Linux Slackware 14 32bit KDE4 Desktop Easy Visual-Guide

December 20, 2012 | By Duchateaux.

The Guide shows you Step-by-Step How to Install Oracle-Sun Java JDK 7 on Linux Slackware 14 32-bit KDE4 Desktop.

After Installing you will need to Update your System Env Variables and PATH to make Slackware Aware of the Java JDK Installation.

To the Article Bottom there is a Link for Quick Start with Java JDK 7 Development on Slackware 14.

And this Visual Guide includes the Basic Screenshots of All GUI Steps involved.

To the Post Bottom there are also Links to Get Installed Apache Tomcat7 for Linux Slackware.

Java Balloon
  1. Here Download Java JDK 7:

    Java JDK 7 i586 tar.gz
    Link to Download the Latest JDK Release
  2. Right-Click on Archive > Open with Ark then Extract Into /tmp
    Java JDK 7 tar.gz Extraction 1

  3. Open Terminal Window
    (Press “Enter” to Execute Commands)

    Linux Kde4 Open Terminal

    In case first see: Terminal QuickStart Guide.

  4. Relocate JDK 7

    Copy
    su 

    If Got “User is Not in Sudoers file” then see: How to Enable sudo

    Copy
    if [ ! -d "/usr/lib/jvm" ]; then mkdir /usr/lib/jvm; fi

    The above command is used to create a jvm directory if not already there.

    Copy
    sudo chown -R root:root /tmp/jdk1.7*

    Reiterate the Execution Permission over the Java binaries

    Copy
    chmod -R +x /tmp/jdk1.7*/bin

    Finally, Shift the Java contents with

    Copy
    mv /tmp/jdk1.7* /usr/lib/jvm/

  5. Updating System Env Variables and Path

    Copy
    nano /etc/profile

    Append:

    Copy
    export JAVA_HOME=/usr/lib/jvm/jdk1.7.0_[xy]/nexport PATH="$JAVA_HOME/bin:$PATH"
    

    Just Substitute the Java JDK Update Version to [xy].

    Ctrl+x to Save and Exit from nano.

    To Load New Env. Settings:

    Copy
    source /etc/profile

    Check if your New Java is Working :)

    Copy
    java -version
  6. How to Install Oracle Java Browser Plug-In:

    Here Install Oracle Java Firefox PlugIn
    How to Install Oracle Java JDK Firefox Plugin

  7. How to Install Apache Tomcat 7 Server on Linux Slackware.

    Here How Install Tomcat7 for Slackware
    How to Install Tomcat 7 Java Server on Linux Slackware