Get Started with Azul Platform Prime on Debian
- Installing a Stream Build via Linux Package
- Installing a Downloaded Stable Build
- Running Azul Platform Prime
Looking for Zing? The Azul Zing Virtual Machine is now Azul Zulu Prime Builds of OpenJDK and part of Azul Platform Prime. Learn more.
Need a different Linux distro? Go back to Azul Platform Prime Downloads.
These instructions will guide you through the easy process to try Azul Platform Prime on Debian Jessie (8.2 and higher).
Installing a Stream Build via Linux Package
Stream Builds are produced once a month, do not receive any security backports, and are free for development, testing, and evaluation. By downloading Stream Builds, you agree to the Azul Platform Prime Evaluation Agreement. For more information, see the Azul Platform Prime Roadmap.
-
Import Azul’s public key:
sudo wget https://assets.azul.com/files/0xB1998361219BD9C9.txt sudo apt-key add 0xB1998361219BD9C9.txt -
Attach the APT repository:
sudo wget -O /etc/apt/sources.list.d/zing.list http://repos.azul.com/zing/debian/zing.list -
Update the information about available packages:
sudo apt-get update -
Run the following command to install Azul Platform Prime:
sudo apt-get install linux-headers-$(uname -r) zing-<jdk-version>
Use the following strings to specify the JDK version:
JDK Version | String |
---|---|
JDK 8 |
zing-jdk1.8.0 |
JDK 11 |
zing-jdk11.0.0 |
JDK 13 |
zing-jdk13.0.0 |
JDK 15 |
zing-jdk15.0.0 |
Installing a Downloaded Stable Build
Stable Builds contain only critical fix backports, are produced on an ongoing basis, and require a license for use.
-
Download the build from https://www.azul.com/products/prime/customer-downloads/
-
Run the following command:
sudo apt install ./zing<zulu_prime_version>-jdk<version>.deb
Running Azul Platform Prime
Once you performed all installation steps, you can start running your Java applications with Azul Platform Prime as follows:
-
Verify the Java version:
/opt/zing/zing-<jdk-version>/bin/java -versionSample output for Java 8:
java version "1.8.0-zing_19.07.0.0" Zing Runtime Environment for Java Applications (build 1.8.0-zing_19.07.0.0-b3) Zing 64-Bit Tiered VM (build 1.8.0-zing_19.07.0.0-b4-product-linux-X86_64, mixed mode)You may want to set the
JAVA_HOME
environment variable to point to the Azul Platform Prime installation directory, e.g.$ export JAVA_HOME=/opt/zing/zing-<jdk-version>
.