Como consertar o pacote nginx?

2

Eu instalei o nginx.

dpkg -l nginx
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend 
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name           Version      Architecture Description
+++-==============-============-============-=================================
ii  nginx          1.6.2-5      all          small, powerful, scalable web/pro

Toda vez que vou instalar outro pacote, as informações de erro são exibidas.

dpkg: warning: files list file for package 'nginx-full' missing; assuming package has no files currently installed
dpkg: warning: files list file for package 'nginx-common' missing; assuming package has no files currently installed

Como consertar isso, não deixar as informações exibidas novamente quando instalar outro pacote?

    
por it_is_a_literature 05.09.2015 / 10:04

1 resposta

2

Isso não é nada sério. Reinstale os pacotes:

sudo apt-get install --reinstall nginx-full nginx-common

Exemplo

Após excluir /var/lib/dpkg/info/mc.list via

sudo rm sudo rm /var/lib/dpkg/info/mc.list

Eu obtenho o seguinte

% sudo apt-get dist-upgrade
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Calculating upgrade... Done
The following packages will be upgraded:
  gimp-gmic numix-icon-theme
2 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 5.130 kB of archives.
After this operation, 106 kB of additional disk space will be used.
Do you want to continue? [Y/n] 
Get:1 http://ppa.launchpad.net/otto-kesselgulasch/gimp-edge/ubuntu/ vivid/main gimp-gmic amd64 1:1.6.5.2-0v0~ppa~edge [1.828 kB]
Get:2 http://ppa.launchpad.net/numix/ppa/ubuntu/ vivid/main numix-icon-theme all 0.3+524~201509050731~ubuntu15.04.1 [3.302 kB]
Fetched 5.130 kB in 4s (1.172 kB/s)           
dpkg: warning: files list file for package 'mc' missing; assuming package has no files currently installed

Corrigido com

sudo apt-get install --reinstall mc
    
por A.B. 05.09.2015 / 12:17