2010-02-16 7 views
9

Acabo de actualizar a Hardy desde Dapper y no puedo instalar java para la vida de mí:No se puede instalar el paquete sun-java6-bin en Ubuntu Hardy (8.04)

$ 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

He inspeccionado /etc/apt/sources.list y ejecutar apt-get update varias veces, pero no hubo suerte:

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

actualización: @ tux21b los resultados de sugerencia en lo siguiente:

$ 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
+0

Ah, lo siento. El paquete está en "multiverso". He editado mi respuesta. – tux21b

Respuesta

17

El paquete sol-java6-bin ya no existe, debido a que el contenido de la misma se encuentra ahora en el paquete -jre. Basta con leer detenidamente el mensaje de error:

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

simplemente tratar sin el paquete -bin:

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

Editar: Lo sentimos, acabo de ver que the package is in the "multiverse" section, por lo que debe permitir que antes. ..

La línea que debe agregar a sus sources.list es:

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

Luego puede hacer un apt-get update y vuelva a intentar instalar los paquetes.

+1

Añadiendo la línea multiverso trabajada. ¡Gracias! – Lightbeard

0

juzgar sólo a ..

sudo apt-get install sun-java6-jdk 

Eso se debe instalar el JRE y esas cosas bin como dependencias.

+1

mismos resultados: 'E: El paquete sun-java6-jdk no tiene candidato de instalación' – Lightbeard

9

Siendo un novato total mi yo. Déjame poner esto MUY FÁCIL porque también tuve problemas con esto.

Para poder instalar Sun-Java con el comando "apt-get", debe agregar una línea a un archivo llamado "sources.list". Esta línea se puede encontrar en /etc/apt/sources.list. de modificarlo por escrito: nano ../etc/apt/sources.list

que al final de (parte inferior) de ese archivo, copiar/pegar la línea: deb http://us.archive.ubuntu.com/ubuntu/ Hardy multiverso

Ahora presiona Ctrl + X para salir, y "y" para guardar.

Ahora escriba el comando: apt-get update Y una vez hecho esto, se puede ejecutar correctamente el comando: sudo apt-get install sun-java6-jdk

+0

¡increíble! Tuve que presionar 'sudo nano ....' – gideon

Cuestiones relacionadas