dpkg-deb: ข้อผิดพลาด: การวาง subprocess ถูกฆ่าโดยสัญญาณ (ไปป์ที่ขาด) nginx


21

ตัวเลือกซอฟท์แว nginxup-to-วันโดยอัตโนมัติดาวน์โหลดอัพเกรดสำหรับ แต่ในขณะที่ติดตั้งมันทำให้ฉันมีข้อผิดพลาดต่อไปนี้:

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*ในคำถามของคุณ
Avinash Raj

ฉันลบล้าง nginx ทั้งหมดและติดตั้งอีกครั้ง ที่จริงมันช่วยฉันได้
zay7sev

ใช่นั่นคือสิ่งที่ฉันพยายามจะพูด
Avinash Raj

หากคุณได้รับสิ่งนี้ใน WSL (ระบบย่อยของ windows ubuntu) ให้ทำการรีสตาร์ท bash ด้วยสิทธิ์ Admin และควรแก้ไข
nick-s
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.