Liberica JDK
Release Information

Liberica JDK 8u192 Install Guide


Installing Liberica JDK on Debian and other DEB-based OSes

To install Liberica JDK download the .deb package and run apt tool:

wget https://download.bell-sw.com/java/8u192/bellsoft-jdk1.8.0-linux-amd64.deb
sudo apt install bellsoft-jdk1.8.0-linux-amd64.deb

This will install bellsoft-java8 JDK package, including LibericaFX and DeviceIO.

To use Liberica JRE, simply run

java -jar $your_app

This will automatically pick LibericaFX or DeviceIO dependencies which are compiled into the JDK.

To uninstall Liberica JDK, run the following command:

sudo apt remove bellsoft-java8

Installing standalone Liberica JDK package on GNU/Linux

To install Liberica JDK download the .tag.gz package and unpack it.

wget https://download.bell-sw.com/java/8u192/bellsoft-jdk1.8.0-linux-amd64.tar.gz
tar -zxvf bellsoft-jdk1.8.0-linux-amd64.tar.gz

This will unpack Liberica JDK, including LibericaFX and DeviceIO to the current directory. Either add bin subdirectory to $PATH, or remember this directory as $LIBERICA_DIR environment variable and run Liberica JDK as

$LIBERICA_DIR/bin/java -jar $your_app

To uninstall Liberica JDK, simply remove this directory and unset related environmental variables.

ON THIS PAGE