Question

Je viens de mettre à Hardy de Dapper et ne peut pas installer java pour la vie de moi:

$ 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

J'ai inspecté /etc/apt/sources.list et courir apt-get update plusieurs fois, mais pas de chance:

# 
# 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

Mise à jour: @ Tux21b vos résultats de suggestion dans ce qui suit:

$ 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
Était-ce utile?

La solution

Le paquet sun-java6-bin n'existe plus, parce que le contenu de celui-ci est maintenant dans le paquet -jre . Il suffit de lire le message d'erreur avec soin:

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

Essayez simplement sans -bin package:

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

Modifier Désolé, je viens de voir que le paquet est dans la section « multivers », vous devez l'activer avant que ...

La ligne que vous devez ajouter à votre sources.list est:

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

Ensuite, vous pouvez faire une nouvelle tentative apt-get update et installer les paquets.

Autres conseils

Être un noob total de mon auto. Permettez-moi de cette baisse très facile, parce que je aussi eu du mal avec cela.

Pour pouvoir installer Sun-java avec la commande « apt-get », vous devez ajouter une ligne dans un fichier appelé « sources.list ». Cette ligne se trouve dans /etc/apt/sources.list. Vous le modifier par écrit: nano ../ etc / apt / sources.list

qu'à la fin de (en bas) de ce fichier, vous copier / coller la ligne: deb http://us.archive.ubuntu.com/ubuntu/ robuste multivers

Appuyez sur Ctrl + X pour quitter, et "y" pour sauver.

Maintenant, tapez la commande suivante: apt-get update Et quand cela est fait, vous pouvez exécuter avec succès la commande: sudo apt-get install sun-java6-jdk

Essayez seulement ..

sudo apt-get install sun-java6-jdk

Cela devrait installer les trucs jre et bin comme dépendances.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top