Por que a instalação 'parted' tenta e instala o nginx?

1

Meu parted install parece falhar com uma dependência em nginx .

$ sudo apt-get install parted
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following package was automatically installed and is no longer required:
  libmpdec2
Use 'apt-get autoremove' to remove it.
Suggested packages:
  parted-doc
The following NEW packages will be installed:
  parted
0 upgraded, 1 newly installed, 0 to remove and 32 not upgraded.
2 not fully installed or removed.
Need to get 44.2 kB of archives.
After this operation, 188 kB of additional disk space will be used.
Get:1 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main parted amd64 2.3-19ubuntu1.14.04.1 [44.2 kB]
Fetched 44.2 kB in 0s (1,151 kB/s)
Selecting previously unselected package parted.
(Reading database ... 32465 files and directories currently installed.)
Preparing to unpack .../parted_2.3-19ubuntu1.14.04.1_amd64.deb ...
Unpacking parted (2.3-19ubuntu1.14.04.1) ...
Processing triggers for man-db (2.6.7.1-1ubuntu1) ...
Setting up nginx-core (1.4.6-1ubuntu3.5) ...
Starting nginx: invoke-rc.d: initscript nginx, action "start" failed.
dpkg: error processing package nginx-core (--configure):
 subprocess installed post-installation script returned error exit status 1
E: Sub-process /usr/bin/dpkg returned an error code (1)

Não vejo porque nginx deve ser um requisito para parted . Alguém pode explicar?

    
por Snowcrash 13.11.2016 / 10:03

2 respostas

2

Não é separado, mas uma instalação incompleta.

    
por nephilim 13.11.2016 / 10:17
2

Como o nephilim disse, ele não está sendo instalado por causa do parted, está terminando uma instalação anteriormente incompleta porque você chamou o apt.

Se você quiser corrigir isso, sugiro remover o NGINX se você não precisar dele ( apt remove nginx-core --purge , observe que remover, também removerá seus arquivos de configuração para ele, portanto, faça isso apenas se desejar ) ou corrigi-lo manualmente (tente dpkg --configure nginx-core para talvez obter mais informações, mas parece que o serviço falha ao iniciar).

    
por Ginnungagap 14.11.2016 / 00:17