Не могу установить пакет sun-java6-bin в Ubuntu Hardy (8.04) - PullRequest
9 голосов
/ 16 февраля 2010

Я только что обновился до Hardy из Dapper и не могу установить 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 голосов
/ 16 февраля 2010

Пакет 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" , так что вы должны включить его до ...

Строка, которую вы должны добавить в список sources.list:

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

Затем вы можете сделать apt-get update и повторить попытку установки пакетов.

9 голосов
/ 13 января 2011

Быть полным новичком в себе.Позвольте мне записать это ОЧЕНЬ ПРОСТО, потому что я тоже с этим боролся.

Чтобы иметь возможность установить sun-java с помощью команды "apt-get", вам нужно добавить строку в файл с именем "sources".список".Эту строку можно найти в /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

0 голосов
/ 16 февраля 2010

Попробуйте только ..

sudo apt-get install sun-java6-jdk

Это должно установить jre и bin вещи как зависимости.

...