无法在 Ubuntu Hardy (8.04) 上安装 sun-java6-bin 软件包

发布于 2024-08-21 05:13:58 字数 3066 浏览 3 评论 0原文

我刚刚从 Dapper 升级到 Hardy,并且无法安装 java:

$ sudo apt-get install sun-java6-bin sun-java6-jre sun-java6-jdk
[sudo] password for bobpete:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package sun-java6-bin is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  sun-java6-jre
E: Package sun-java6-bin has no installation candidate

我已经检查了 /etc/apt/sources.list 并运行 apt-get update 几次,但没有运气:

# 
# deb cdrom:[Ubuntu-Server 6.06 _Dapper Drake_ - Release amd64 (20060531)]/ dapper main restricted


# deb cdrom:[Ubuntu-Server 6.06 _Dapper Drake_ - Release amd64 (20060531)]/ dapper main restricted

deb http://us.archive.ubuntu.com/ubuntu/ hardy main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ hardy main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://us.archive.ubuntu.com/ubuntu/ hardy-updates main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ hardy-updates main restricted

## Uncomment the following two lines to add software from the 'universe'
## repository.
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://us.archive.ubuntu.com/ubuntu/ hardy universe
deb-src http://us.archive.ubuntu.com/ubuntu/ hardy universe

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ hardy-backports main restricted universe multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ dapper-backports main restricted universe multiverse


deb http://security.ubuntu.com/ubuntu hardy-security main restricted
deb-src http://security.ubuntu.com/ubuntu hardy-security main restricted
# deb http://security.ubuntu.com/ubuntu dapper-security universe
# deb-src http://security.ubuntu.com/ubuntu dapper-security universe

更新: @tux21b 你的建议结果如下:

$ sudo apt-get install sun-java6-jre sun-java6-jdk
[sudo] password for bobpete:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package sun-java6-jre is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package sun-java6-jre has no installation candidate

I just upgraded to Hardy from Dapper and can't install java for the life of me:

$ sudo apt-get install sun-java6-bin sun-java6-jre sun-java6-jdk
[sudo] password for bobpete:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package sun-java6-bin is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  sun-java6-jre
E: Package sun-java6-bin has no installation candidate

I've inspected /etc/apt/sources.list and run apt-get update several times, but no luck:

# 
# deb cdrom:[Ubuntu-Server 6.06 _Dapper Drake_ - Release amd64 (20060531)]/ dapper main restricted


# deb cdrom:[Ubuntu-Server 6.06 _Dapper Drake_ - Release amd64 (20060531)]/ dapper main restricted

deb http://us.archive.ubuntu.com/ubuntu/ hardy main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ hardy main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://us.archive.ubuntu.com/ubuntu/ hardy-updates main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ hardy-updates main restricted

## Uncomment the following two lines to add software from the 'universe'
## repository.
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://us.archive.ubuntu.com/ubuntu/ hardy universe
deb-src http://us.archive.ubuntu.com/ubuntu/ hardy universe

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ hardy-backports main restricted universe multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ dapper-backports main restricted universe multiverse


deb http://security.ubuntu.com/ubuntu hardy-security main restricted
deb-src http://security.ubuntu.com/ubuntu hardy-security main restricted
# deb http://security.ubuntu.com/ubuntu dapper-security universe
# deb-src http://security.ubuntu.com/ubuntu dapper-security universe

Update:
@tux21b your suggestion results in the following:

$ sudo apt-get install sun-java6-jre sun-java6-jdk
[sudo] password for bobpete:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package sun-java6-jre is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package sun-java6-jre has no installation candidate

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一影成城 2024-08-28 05:13:58

sun-java6-bin 包不再存在,因为它的内容现在位于 -jre 包中。只需仔细阅读错误消息:

However the following packages replace it:
  sun-java6-jre
E: Package sun-java6-bin has no installation candidate

只需尝试不使用 -bin 包:

sudo apt-get install sun-java6-jre sun-java6-jdk

编辑: 抱歉,我刚刚看到 该包位于“multiverse”部分,因此您必须在...之前启用它...

您必须添加到源中的行。列表是:

deb http://us.archive.ubuntu.com/ubuntu/ hardy multiverse

然后您可以执行 apt-get update 并重试安装软件包。

The package sun-java6-bin doesn't exist anymore, because the content of it is now in the -jre package. Just read the error message carefully:

However the following packages replace it:
  sun-java6-jre
E: Package sun-java6-bin has no installation candidate

Simply try without the -bin package:

sudo apt-get install sun-java6-jre sun-java6-jdk

Edit: Sorry, I just saw that the package is in the "multiverse" section, so you must enable that before...

The line you have to add to your sources.list is:

deb http://us.archive.ubuntu.com/ubuntu/ hardy multiverse

Then you can do a apt-get update and retry to install the packages.

誰認得朕 2024-08-28 05:13:58

我自己就是一个十足的菜鸟。让我很容易地把这件事写下来,因为我也为此苦苦挣扎。

为了能够使用“apt-get”命令安装 sun-java,您需要在名为“sources.list”的文件中添加一行。该行可以在 /etc/apt/sources.list 中找到。
您可以通过编写以下内容来编辑它: nano ../etc/apt/sources.list

在该文件的最后(底部),您复制/粘贴以下行:
deb http://us.archive.ubuntu.com/ubuntu/ Hardy multiverse

现在按 Ctrl + X 退出,“y”保存。

现在输入命令:apt-get update
完成后,您可以成功运行命令:
sudo apt-get 安装 sun-java6-jdk

Being a total noob my self. Let me put this down VERY EASY, because i also struggled with this.

To be able to install sun-java with the "apt-get" command, you need to add a line to a file called "sources.list". This line can be found in /etc/apt/sources.list.
You edit it by writing: nano ../etc/apt/sources.list

Than at the very end of (bottom) of that file, you copy/paste the line:
deb http://us.archive.ubuntu.com/ubuntu/ hardy multiverse

Now press Ctrl + X to exit, and "y" for saving.

Now type the command: apt-get update
And when that is done, you can successfully run the command:
sudo apt-get install sun-java6-jdk

泪是无色的血 2024-08-28 05:13:58

仅尝试..

sudo apt-get install sun-java6-jdk

这应该安装 jre 和 bin 的东西作为依赖项。

Try only..

sudo apt-get install sun-java6-jdk

That should install the jre and bin stuff as dependencies.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文