Day: October 27, 2021
Install JDK 8 from tar.gz Ubuntu
#Login as root sudo su #create jdk directory mkdir /opt/jdk #uncompress, change to your file name tar -zxf jdk-8u5-linux-x64.tar.gz -C /opt/jdk #check if files are there #ls /opt/jdk #update alternatives so the command java point to the new jdk update-alternatives --install /usr/bin/java java /opt/jdk/jdk1.8.0_05/bin/java 100 #update alternatives so the command…
Execute / Open JNLP files on Linux – Ubuntu / Debian / Fedora / Arch
The Java Network Launch Protocol (JNLP) is a protocol which enables an application to be launched on a client desktop by using resources that are hosted on a remote web server. Java Plug-in software and Java Web Start software are considered JNLP clients because they can launch remotely hosted applets…