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.

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

Posted at

はじめに

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

サポート

Java Is Still Free (日本語版)では、”At least through to June 2020” という記載がある。
ただしOSのEOLが2019-04のため、本手法で導入した場合2019-04がEOLになると思われる。
それ以降に報告された脆弱性や不具合への対応は実施されない可能性がある。

またSecurityTeam/ESM/14.04 - Ubuntu WikiによるとExtended Security Maintenanceの対象外となる。

LOG

インストール

# cat /etc/os-release
NAME="Ubuntu"
VERSION="14.04.6 LTS, Trusty Tahr"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 14.04.6 LTS"
VERSION_ID="14.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"

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

各種確認

# which java
/usr/bin/java

# java -version
java version "1.7.0_201"
OpenJDK Runtime Environment (IcedTea 2.6.17) (7u211-2.6.17-0ubuntu0.1)
OpenJDK 64-Bit Server VM (build 24.201-b00, 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?