Liberica JDK
Release Information

Liberica JDK 9.0.4 Install Guide


Installing Liberica JRE on Raspbian and other DEB-based OSes

wget https://download.bell-sw.com/java/11/bellsoft-jre9.0.4-linux-arm32-vfp-hflt.deb
sudo apt install ./bellsoft-jre9.0.4-linux-arm32-vfp-hflt.deb

This will install bellsoft-java9-runtime JRE 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 JRE.

To uninstall Liberica JRE, run the following command:

sudo apt remove bellsoft-java9-runtime

Installing Liberica JDK on Raspbian and other DEB-based OSes

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

wget https://download.bell-sw.com/java/11/bellsoft-jdk9.0.4-linux-arm32-vfp-hflt.deb
sudo apt install ./bellsoft-jdk9.0.4-linux-arm32-vfp-hflt.deb

This will install bellsoft-java9 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-java9

Installing standalone Liberica JDK/JRE package

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

wget https://download.bell-sw.com/java/11/bellsoft-jdk9.0.4-linux-arm32-vfp-hflt.tar.gz
tar -zxvf bellsoft-jdk9.0.4-linux-arm32-vfp-hflt.tar.gz

This will unpack Liberica JDK, including LibericaFX and DeviceIO to the current directory. Either add this directory to $PATH, or remember it 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