web-dev-qa-db-ja.com

`parted`をインストールしてnginxをインストールしようとするのはなぜですか?

partedのインストールは、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)

nginxpartedの要件である理由がわかりません。誰かが説明できますか?

1
Snowcrash

それは別れていませんが、以前は不完全なインストールでした。

2
nephilim

ネフィリムが言ったように、それは別れのためにインストールされていません、あなたがaptを呼んだのでそれは以前に不完全なインストールを終えています。

これを修正したい場合は、必要がない場合はNGINXを削除することをお勧めします(apt remove nginx-core --purge、パージすると、構成ファイルも削除されるため、必要な場合にのみ削除してください)または手動で修正します(dpkg --configure nginx-coreを試して詳細情報を取得しますが、サービスの開始に失敗しているようです)。

2
Ginnungagap