DEB installation on Debian or Ubuntu
- Import the official AdoptOpenJDK GPG key by running the following command:
wget -qO - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | sudo apt-key add -
- Import the AdoptOpenJDK DEB repository by running the following command:
sudo add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/
If you get a command not found error, try running:
apt-get install -y software-properties-common
Then repeat the first command.
- Refresh your package list with
apt-get update
and then install your chosen AdoptOpenJDK package. For example, to install OpenJDK 8 with the HotSpot VM, run:
apt-get install adoptopenjdk-8-hotspot
网友评论