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 5 years have passed since last update.

Debian 8にOpenJDK 7(1.7)をインストール(OS標準)

Last updated at Posted at 2019-10-06

はじめに

Debian8にOpenJDKを標準インストール
親記事:OpenJDKの各種インストール方法とEOLまとめ

サポート

Java Is Still Free (日本語版)より、Red Hat主導でコミュニティが2020-06まで無償アップデートを行うという記載がある。
OSのEOLも2020-06-30なので、本手法で導入した場合、2020-06がEOLになると思われる。
それ以降に報告された脆弱性や不具合への対応は実施されない可能性がある。

Debian7の事例のようにOSがEOLを迎えるまではDebian Javaチームが保守する可能性が高いと思われる。

LOG

インストール

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

# apt update;apt install -y openjdk-7-jdk
... 略

各種確認

# which java
/usr/bin/java

# java -version
java version "1.7.0_231"
OpenJDK Runtime Environment (IcedTea 2.6.19) (7u231-2.6.19-1~deb8u2)
OpenJDK 64-Bit Server VM (build 24.231-b01, 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?