0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Debian 11にOpenJDK 11をインストール(Azul Zulu Builds of OpenJDK)

Posted at

はじめに

Azul Zulu Builds of OpenJDKを利用してDebian11にOpenJDK11をインストール
親記事:OpenJDKの各種インストール方法とEOLまとめ
参考:Azul Platform Core

サポート

有償版のみサポート期間が明記されている。Azul Support Roadmap - Azul | Better Java Performance, Superior Java Support
Zulu Community時代より、無償版のサポート期間は不明。

LOG

レポジトリ登録

# apt-get -q update
# apt-get -yq install gnupg curl
# apt-key adv \
  --keyserver hkp://keyserver.ubuntu.com:80 \
  --recv-keys 0xB1998361219BD9C9
# curl -O https://cdn.azul.com/zulu/bin/zulu-repo_1.0.0-3_all.deb
# apt-get install ./zulu-repo_1.0.0-3_all.deb
# apt-get update

インストール

# cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

# apt-get install zulu11-jdk
... 略

各種確認

# which java
/usr/bin/java

# java -version
openjdk version "11.0.13" 2021-10-19 LTS
OpenJDK Runtime Environment Zulu11.52+13-CA (build 11.0.13+8-LTS)
OpenJDK 64-Bit Server VM Zulu11.52+13-CA (build 11.0.13+8-LTS, mixed mode)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?