Pacotes não são instalados no Ubuntu 12.04

0

Eu tentei instalar o imagemagick usando o seguinte comando

sudo apt-get install imagemagick --fix-missing

Mas durante a instalação, recebo o seguinte erro

nginx-full : Depends: nginx-common (= 1.4.7-1+precise0) but 1.6.0-1+precise0 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

Eu tentei remover o nginx usando o comando sudo apt-get remove nginx , mas recebendo o mesmo erro, como posso resolver esse problema.

Editar Ao se referir a este link saída de dpkg -l | grep nginx

iU  nginx                                  1.4.7-1+precise0                                    small, powerful, scalable web/proxy server
ii  nginx-common                           1.6.0-1+precise0                                    small, powerful, scalable web/proxy server - common files
iF  nginx-full                             1.4.7-1+precise0                                    nginx web/proxy server (standard version)

saída de dpkg -S $(which nginx)

dpkg-query: error: --search needs at least one file name pattern argument
Use --help for help about querying packages.

Obrigado antecipadamente.

    
por user2622247 26.06.2014 / 09:22

1 resposta

1

Executar:

sudo dpkg -r nginx-common

Se for bem-sucedido ou não, execute:

gksudo gedit /var/lib/dpkg/status

No gedit resultante, remover toda a seção começa com:

Package : nginx-common

execute a instalação

    
por user308564 26.06.2014 / 10:25