Installing Liberica JRE on Raspbian and other DEB-based OSes
wget https://download.bell-sw.com/java/10.0.2/bellsoft-jre10.0.2-linux-arm32-vfp-hflt.deb
sudo apt install ./bellsoft-jre10.0.2-linux-arm32-vfp-hflt.deb
This will install bellsoft-java10-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-java10-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/10.0.2/bellsoft-jdk10.0.2-linux-arm32-vfp-hflt.deb
sudo apt install ./bellsoft-jdk10.0.2-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-java10
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/10.0.2/bellsoft-jdk10.0.2-linux-arm32-vfp-hflt.tar.gz
tar -zxvf bellsoft-jdk10.0.2-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.