2010-02-16 9 views
9

Ho appena aggiornato a Hardy da Dapper e non riesco ad installare java per la vita di me:Non può installare il pacchetto sun-java6-bin su 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

ho ispezionato /etc/apt/sources.list ed eseguire apt-get update più volte, ma senza fortuna:

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

Aggiornamento: @ tux21b i risultati suggerimento seguente:

$ 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, mi dispiace. Il pacchetto è in "multiverse". Ho modificato la mia risposta. – tux21b

risposta

17

Il pacchetto sun-java6-bin non esiste più, perché il contenuto di esso è ora nel pacchetto -jre. Basta leggere il messaggio di errore con attenzione:

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

Basta provare senza il pacchetto -bin:

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

Edit: dispiace, ho appena visto che the package is in the "multiverse" section, quindi è necessario attivare prima. ..

La riga che devi aggiungere al tuo sources.list è:

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

Poi si può fare un apt-get update e riprovare per installare i pacchetti.

+1

Aggiunta della linea multiverso lavorata. Grazie! – Lightbeard

0

solo provare ..

sudo apt-get install sun-java6-jdk 

Questo dovrebbe installare JRE e cose bin come dipendenze.

+1

stesso risultato: 'E: pacchetto sun-java6-jdk non ha candidati all'installazione' – Lightbeard

9

Essendo un niubbo totale la mia auto. Lasciatemi mettere questo MOLTO FACILE, perché ho anche faticato con questo.

Per poter installare sun-java con il comando "apt-get", è necessario aggiungere una riga in un file chiamato "sources.list". Questa linea può essere trovata in /etc/apt/sources.list. Si modificarlo scrivendo: nano ../etc/apt/sources.list

Rispetto alla fine del (sotto) di quel file, si copia/incolla la riga: deb http://us.archive.ubuntu.com/ubuntu/ hardy multiverso

Ora premere Ctrl + X per uscire e "y" per salvare.

Ora digitare il comando: apt-get update E quando questo è fatto, è possibile eseguire correttamente il comando: sudo apt-get install sun-java6-jdk

+0

molto impressionante! Ho dovuto premere 'sudo nano ....' – gideon