我正在尝试更改安装在老板Linux中的java,因为我正在尝试安装需要java8的eclipse氧气。首先我找不到安装jdk的位置。目前已安装1.7.0_73。我刚刚下载了jdk8的tar.gz。在一个位置提取。设置java家和路径指向bin。但是在eclipse安装期间仍然会遇到错误,需要1.8版本。
答案 0 :(得分:0)
正如Wikipedia所述
BOSS Linux is an "LSB certified" Linux distribution :
the software has been certified by the Linux Foundation
for compliance with the Linux Standard Base standard.
BOSS Linux is derived from Debian Linux.
请注意,它源自 Debian Linux
,并使用apt
来处理更新或升级的软件包。在这方面,您只需使用apt
命令升级到您想要的版本。
1.8
OpenJDK v8
要安装java版本1.8(OpenJDK v8),请在终端上键入以下内容:
sudo add-apt-repository ppa:openjdk-r/ppa
sudo apt-get update
sudo apt-get install openjdk-8-jdk
如果您只想安装Java Runtime Environment:
sudo apt-get install openjdk-8-jre
随意添加更多细节到答案。