首页 文章

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

提问于
浏览
9

我刚刚从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

3 回答

  • 17

    只试试..

    sudo apt-get install sun-java6-jdk
    

    那应该安装jre和bin的东西作为依赖 .

  • 0

    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
    

    Edit: 对不起,我刚看到the package is in the "multiverse" section,所以你必须先启用它...

    您必须添加到sources.list的行是:

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

    然后你可以做 apt-get update 并重试安装软件包 .

  • 9

    作为一个完全的菜鸟我的自我 . 让我非常容易,因为我也在努力解决这个问题 .

    为了能够使用“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 install sun-java6-jdk

相关问题