Hello all,
Today I make a new blog post about javac problem. If you didn't follow my blog page please follow.
So let's get start!
javac is the primary Java compiler included in the Java Development Kit from Oracle Corporation. Martin Odersky implemented the GJ compiler, and his implementation became the basis for javac.
If you get javac not found command output following this steps you will be able to solve this problem.
First download the latest version of java JDK from
oracle.com Java JDK latest version is 15.
Opensuse tumbleweed suitable version is java JDK 15 .rpm based package without aarch64.
Before you do this please remove your old java JDK version.
Once you downloaded java JDK then type this command in your terminal:
cd /usr/
sudo mkdir java
cd
cd Downloads
sudo mv package_name /usr/java
sudo rpm -i package_name
check latest version
java -version
javac - version
Finally the latest java JDK version installed in your system
This tutorial post only suitable for opensuse linux operating system!