2010-02-16 7 views
9

właśnie uaktualniony do Hardy z Dapper i nie można zainstalować oprogramowanie Java dla życia mnie:Nie można zainstalować pakiet sun-java6-bin na 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

Mam inspekcji /etc/apt/sources.list i uruchomić apt-get update kilka razy, ale bez powodzenia:

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

Aktualizacja: @ tux21b wyników sugerowanych w następujących przypadkach:

$ 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

Ach, przepraszam. Pakiet znajduje się w "multiwersie". Edytowałem swoją odpowiedź. – tux21b

Odpowiedz

17

Pakiet słońcem java6-bin już nie istnieje, ponieważ treść jest teraz w pakiecie -jre. Wystarczy przeczytać komunikat o błędzie dokładnie:

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

Wystarczy spróbować bez pakietu -bin:

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

Edit: Niestety, właśnie widziałem że the package is in the "multiverse" section, więc należy włączyć wcześniej. ..

linia trzeba dodać do sources.list jest:

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

Następnie można wykonać numer apt-get update i ponowić próbę instalacji pakietów.

+1

Dodanie linii wieloświatowej zadziałało. Dzięki! – Lightbeard

0

Spróbuj tylko ..

sudo apt-get install sun-java6-jdk 

To powinno zainstalować JRE i bin rzeczy jako zależności.

+1

takie same wyniki: 'E: Pakiet sun-java6-jdk nie ma żadnego kandydata na instalację' – Lightbeard

9

Będąc totalnym noobem siebie. Pozwolę sobie odłożyć to BARDZO ŁATWO, bo też się z tym zmagałem.

Aby móc zainstalować sun-java za pomocą polecenia "apt-get", musisz dodać linię do pliku o nazwie "sources.list". Ten wiersz można znaleźć w /etc/apt/sources.list. go zmienić, pisząc: nano ../etc/apt/sources.list

niż na samym końcu (na dole) tego pliku, kopiuj/wklej wiersz: deb http://us.archive.ubuntu.com/ubuntu/ hardy wieloświat

Teraz naciśnij Ctrl + X, aby wyjść i "y", aby zapisać.

Teraz wpisz polecenie: apt-get update A kiedy to się stanie, można z powodzeniem uruchomić polecenie: sudo apt-get install sun-jdk-java6

+0

bardzo niesamowite! Musiałem uderzyć 'sudo nano ....' – gideon

Powiązane problemy