更新 Debian8 JRE 1.7 => 1.8

更新 Debian8 JRE 1.7 => 1.8

OpenJDK 网站报告安装是一个简单的一行操作。说明中特别提到了 Debian/Ubunutu。 http://openjdk.java.net/install/

sudo apt-get install openjdk-8-jre

但是,在 Debian8 x64 上,我收到此错误:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package openjdk-9-jre

Debian 软件包搜索报告不可用: https://packages.debian.org/search?searchon=names&keywords=openjdk-8-jre

该链接仅提供无头、Zero/Shark、JamVM 版本,我认为对于基本的 Java 开发来说我不需要这些版本。

还搜索了以下解决方案: https://askubuntu.com/questions/504276/how-do-i-use-apt-to-install-32-bit-openjdk-7-jre-on-azure-amd64-ubuntu-server-14

答案1

事实证明 openjdk-8-jre 处于测试版 Debian 中,尚不稳定。openJDK 网站做得很好 :)

在 /etc/apt/sources.list 中添加 deb 行

deb http://ftp.debian.org/debian testing main

现在 apt-get install 可以工作了

sudo apt-get install openjdk-8-jre

相关内容