Quando tento atualizar minha versão nginx (instalada do repositório debian) para a versão mais recente do repositório nginx, ela falhará porque não pode sobrescrever um arquivo que também está em um dos pacotes nginx antigos (esse pacote está prestes a ser obtido removido automaticamente). Esta é a saída do bash ao executar o apt install nginx -V
comando:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
geoip-database (20190724-1~bpo10+1)
libgd3 (2.2.5-5.2)
libgeoip1 (1.6.12-3~bpo10+1)
Use 'apt autoremove' to remove them.
The following packages will be REMOVED:
libnginx-mod-http-auth-pam (1.14.2-2)
libnginx-mod-http-dav-ext (1.14.2-2)
libnginx-mod-http-echo (1.14.2-2)
libnginx-mod-http-geoip (1.14.2-2)
libnginx-mod-http-image-filter (1.14.2-2)
libnginx-mod-http-subs-filter (1.14.2-2)
libnginx-mod-http-upstream-fair (1.14.2-2)
libnginx-mod-http-xslt-filter (1.14.2-2)
libnginx-mod-mail (1.14.2-2)
libnginx-mod-stream (1.14.2-2)
nginx-common (1.14.2-2)
nginx-full (1.14.2-2)
The following packages will be upgraded:
nginx (1.14.2-2 => 1.16.1-1~buster)
1 upgraded, 0 newly installed, 12 to remove and 0 not upgraded.
Need to get 0 B/850 kB of archives.
After this operation, 291 kB disk space will be freed.
Do you want to continue? [Y/n]
dpkg: libnginx-mod-http-auth-pam: dependency problems, but removing anyway as you requested:
nginx-full depends on libnginx-mod-http-auth-pam (= 1.14.2-2).
(Reading database ... 152770 files and directories currently installed.)
Removing libnginx-mod-http-auth-pam (1.14.2-2) ...
dpkg: nginx-common: dependency problems, but removing anyway as you requested:
nginx-full depends on nginx-common (= 1.14.2-2); however:
Package nginx-common is to be removed.
libnginx-mod-stream depends on nginx-common (= 1.14.2-2).
libnginx-mod-mail depends on nginx-common (= 1.14.2-2).
libnginx-mod-http-xslt-filter depends on nginx-common (= 1.14.2-2).
libnginx-mod-http-upstream-fair depends on nginx-common (= 1.14.2-2).
libnginx-mod-http-subs-filter depends on nginx-common (= 1.14.2-2).
libnginx-mod-http-image-filter depends on nginx-common (= 1.14.2-2).
libnginx-mod-http-geoip depends on nginx-common (= 1.14.2-2).
libnginx-mod-http-echo depends on nginx-common (= 1.14.2-2).
libnginx-mod-http-dav-ext depends on nginx-common (= 1.14.2-2).
Removing nginx-common (1.14.2-2) ...
(Reading database ... 152743 files and directories currently installed.)
Preparing to unpack .../nginx_1.16.1-1~buster_amd64.deb ...
Unpacking nginx (1.16.1-1~buster) over (1.14.2-2) ...
dpkg: error processing archive /var/cache/apt/archives/nginx_1.16.1-1~buster_amd64.deb (--unpack):
trying to overwrite '/usr/sbin/nginx', which is also in package nginx-full 1.14.2-2
dpkg-deb: error: paste subprocess was killed by signal (Broken pipe)
Errors were encountered while processing:
/var/cache/apt/archives/nginx_1.16.1-1~buster_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
Parece que não é desinstalar primeiro os pacotes antigos e depois instalar os novos. Em vez disso, ele está desinstalando dois pacotes e tentando instalar o atualizado. Porque depois de tentar esta atualização preciso reinstalar nginx-common
e libnginx-mod-http-auth-pam
.
Minha dúvida é: Alguém sabe uma forma de forçar a nova instalação ( dist-upgrade
e --with-new-pkgs
não funcionou) ou preciso desinstalar esses pacotes manualmente? Ou estou apenas faltando uma etapa antes de atualizar?
Responder1
Não sei se isso ainda é relevante, mas tive um problema semelhante. O que funcionou para mim foi desinstalar o antigo nginx:apt remove nginx nginx-common
Em seguida instalei a nova versão:apt install nginx
Se a sua versão atual estiver quebrada, você pode corrigi-la comapt --fix-broken install
Responder2
Use este comando. Isso funcionou para mim.
sudo dpkg --purge --force-depends apache2