$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true);
if(!empty($schemamarkup)) {
echo $schemamarkup;
}
December 12, 2013 | By Stalker.
Oracle JDK 7 Quick Start for openSUSE 13.X Linux
The Guide shows you How to Install the Latest Oracle-Sun Java JDK 7 SE Release on openSUSE Linux 13.X GNOME3/KDE4 i686/x8664 Desktop.
Especially relevant: At the Same Time I’m also illustrating here the Easiest Way of Installing the New Downloaded .rpm Packages with Dependencies on openSUSE Linux Desktops :)
To the Article Bottom Link to Installing the Firefox Java Plugin and Eclipse for Java Development on openSUSE Linux.
Take the Time of Carefully Reading and Executing the Instructions Contained Here and All should Work Like a Breeze :)
-
Download Oracle-Sun Java SE JDK 7 for Linux:
Oracle JDK Linux x86/x64 .rpm
Open Terminal Window
(Press “Enter” to Execute Commands)
In case first see: Terminal QuickStart Guide.
Installing Oracle Java JDK
cd </path/2>
sudo su -c "zypper in jdk1.7*.rpm"
Managing Multiples Java Versions with update-alternatives
sudo zypper in update-alternatives
update-alternatives --install /usr/bin/java java /usr/java/jdk1.7*/bin/java 1065
update-alternatives --install /usr/bin/javac javac /usr/java/jdk1.7*/bin/javac 1065
update-alternatives --install /usr/bin/jar jar /usr/java/jdk1.7*/bin/jar 1065
update-alternatives --install /usr/bin/javaws javaws /usr/java/jdk1.7*/bin/javaws 1065
Checking or Setting the System Java Version in Use
with
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. :)
Last Achieve the SuperUser session:
exit
Optionally Set Java Environment Variable.
su <myUser>
nano $HOME/.bashrc
Append:
export JAVA_HOME=/usr/java/jdk1.<X.Y_uZ>
Ctrl+x to Save & Exit from nano :)
source $HOME/.bashrc
How to Install Oracle Java Browser Plug-In.
Install Oracle Java Firefox PlugIn
Java 7 IDEs Installation on openSUSE
How to Install Eclipse for Java 7 Development on openSUSE: Installing Eclipse IDE for Java 7 on openSUSE.
How to Install Netbeans 7 IDE for Java 7 on openSUSE: Installing NetBeans IDE for Java 7 on openSUSE.
How to Install IntelliJ IDEA 2024 for Java 7 on openSUSE: Installing IntelliJ IDEA for Java 7 on openSUSE.