dpkg-deb:エラー:サブプロセスの貼り付けはシグナルによって中断されました(パイプの破損)nginx


21

ソフトウェアの最新オプションは、のアップグレードを自動的にダウンロードしますnginx。しかし、インストール中に次のエラーが表示されます:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following NEW packages will be installed:
  nginx
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/434 kB of archives.
After this operation, 977 kB of additional disk space will be used.
(Reading database ... 291344 files and directories currently installed.)
Unpacking nginx (from .../nginx_1.4.7-1~precise_amd64.deb) ...
----------------------------------------------------------------------

Thanks for using nginx!

Please find the official documentation for nginx here:
* http://nginx.org/en/docs/

Commercial subscriptions for nginx are available on:
* http://nginx.com/products/

----------------------------------------------------------------------
dpkg: error processing /var/cache/apt/archives/nginx_1.4.7-1~precise_amd64.deb (--unpack):
 trying to overwrite '/etc/logrotate.d/nginx', which is also in package nginx-common 1.4.6-1+precise0
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/nginx_1.4.7-1~precise_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

実際、そのファイル/etc/logrotate.d/nginxはこのフォルダーに存在しません。

回答:


38

ターミナルで以下のコマンドを実行し、

sudo dpkg -P nginx-common
sudo apt-get install -f

上記のnginx-commonパッケージをアンインストールするときに依存関係の問題が表示される場合は、パッケージとそのnginx-common依存関係を削除し ます。

sudo apt-get purge nginx*

上記のコマンドを実行する前に、nginxとともに削除される依存関係パッケージを確認することを忘れないでください。

sudo apt-get purge -s nginx*

sudo apt-get purge -s nginx*あなたの質問の出力を投稿してください。
アビナッシュラジ14年

私はnginx全体をパージし、再度インストールしました。実際にそれは私を助けます。
zay7sev 14年

はい、それは私が言いたいことです。
アビナッシュラジ14年

WSL(windows sub-system ubuntu)でこれを取得した場合は、管理者権限でbashを再起動すると修正されます。
ニック・sの
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.