Próbując zaktualizować system Ubuntu 12.04 vps, pojawia się następujący błąd:
henrik@neung:~$ sudo apt-get upgrade
[sudo] password for henrik:
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
nginx-full : Depends: nginx-common (= 1.2.4-1ubuntu0ppa2~precise) but 1.2.4-2ubuntu0ppa1~precise is installed
E: Unmet dependencies. Try using -f.
Więc próbuję uruchomić to:
henrik@neung:~$ sudo apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
nginx-full
The following packages will be upgraded:
nginx-full
1 upgraded, 0 newly installed, 0 to remove and 42 not upgraded.
2 not fully installed or removed.
Need to get 0 B/441 kB of archives.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? y
dpkg: dependency problems prevent configuration of nginx-full:
nginx-full depends on nginx-common (= 1.2.4-1ubuntu0ppa2~precise); however:
Version of nginx-common on system is 1.2.4-2ubuntu0ppa1~precise.
dpkg: error processing nginx-full (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of nginx:
nginx depends on nginx-full | nginx-light; however:
Package nginx-full is not configured yet.
Package nginx-light is not installed.
dpkg: error processing nginx (--configure):
dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup error from a previous failure.
No apport report written because the error message indicates its a followup error from a previous failure.
Errors were encountered while processing:
nginx-full
nginx
E: Sub-process /usr/bin/dpkg returned an error code (1)
Czy ktoś może pomóc to naprawić?
nginx
pakiet:sudo apt-get remove nginx* && sudo apt-get install nginx-full
Odpowiedzi:
Problem polega na tym
nginx-full
zależynginx-common
, to oznacza, że nie można zainstalować pakietnginx-full
bez posiadają wersję konkretnego onginx-common
.Oto pytanie poświęcone temu problemowi, ale jego rozdzielczość jest bardzo obszerna i dotyczy nie tylko jednego, ale różnych przypadków. Pokażę więc krótką, ale skuteczną metodę.
Właściwie nie wiem, jak zainstalować tę wersję
nginx-common
, ale wiem, że rozwiążesz problem, instalując ponownie cały pakiet . Aby to zrobić, musisz wprowadzić następujące polecenie w terminalu.źródło
Miałem ten sam problem. NIE mam Apache i nic innego nie blokowało mojego portu 80. NIE mogłem zainstalować nginx
ani z
Po tygodniu natknąłem się na tego małego bloga: https://etc.banana.fish/?p=75
Na tym blogu rozwiązaniem jest:
sudo apt-get install nginx-common
listen [::]:80 default_server;
z / etc / nginx / sites-enabled / default (zrobiłem to przy użyciu użytkownika root)sudo apt-get update
i wtedysudo apt-get upgrade
.sudo apt-get install nginx-full
i zadziałało!Afterwords mogłem zobaczyć ekran tytułowy nginx, kiedy wpisałem adres IP mojego zdalnego serwera!
źródło
Mam silne przeczucie, że zapomniałeś uruchomić
sudo apt-get update
przed uruchomieniemsudo apt-get upgrade
- menedżer pakietów używa starych informacji onginx-common
wersji pakietu, podczas gdynginx-full
wymaga nowszej wersji.źródło