Как заставить удалить пакет, если скрипт удаления dpkg не работает?


16

Я пытаюсь удалить пакет, в котором я удалил /etc/init.d/disco-masterфайл (в попытке удалить пакет вручную). Я хочу удалить disco-masterпакет. Как мне сделать это сейчас?

Вот что происходит, когда я делаю sudo apt-get remove disco-master:

removing disco-master ...
invoke-rc.d: unknown initscript, /etc/init.d/disco-master not found.
dpkg: error processing disco-master (--remove):
 subprocess installed pre-removal script returned error exit status 100
Errors were encountered while processing:
 disco-master
E: Sub-process /usr/bin/dpkg returned an error code (1)

Когда я sudo apt-get install --reinstall disco-masterполучаю следующее:

You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 disco-master : Depends: disco-node (= 0.4.2+nmu1) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

Когда я sudo apt-get -f installполучаю это:

Unpacking disco-node (from .../disco-node_0.4.2+nmu1_amd64.deb) ...
dpkg: error processing /var/cache/apt/archives/disco-node_0.4.2+nmu1_amd64.deb (--unpack):
 trying to overwrite '/usr/lib/disco/master/ebin/disco.app', which is also in package disco-master 0.4.1
No apport report written because MaxReports is reached already
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/disco-node_0.4.2+nmu1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Когда я бегу, sudo apt-get remove disco-nodeя получаю следующее:

Package disco-node is not installed, so not removed
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 disco-master : Depends: disco-node (= 0.4.1) but it is not going to be installed
                Depends: python-disco (= 0.4.1) but 0.4.2+nmu1 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

Когда я это сделал, sudo dpkg -P --force-all disco-masterя получил:

Removing disco-master ...
invoke-rc.d: unknown initscript, /etc/init.d/disco-master not found.
dpkg: error processing disco-master (--purge):
 subprocess installed pre-removal script returned error exit status 100
Errors were encountered while processing:
 disco-master

3
Попробуйте запустить sudo dpkg -P --force-all disco-master.
Netcoder

сделал это ... добавлено к вопросу.
Фодон

Ответы:


18

Создайте фиктивный initscript, чтобы обмануть dpkg:

sudo nano /etc/init.d/disco-master

Введите следующее:

#!/bin/bash
exit 0

Сохраните файл, установите разрешение на выполнение ( sudo chmod 755 /etc/init.d/disco-master) и sudo apt-get remove disco-masterповторите попытку .


Я сделал то же самое с OP только с пакетом соли-мастер ... этот ответ также работал для меня!
Anentropic

спасатель жизни Эрик, ты замечательный.
Питер Теох

3
Блестяще, у меня было: post-removal script returned error exit status 1.. Итак, я нашел этот скрипт /var/lib/dpkg/info/{package}.postrm, прошел его, чтобы убедиться, что я в нем что-то сделал (удалил конфиги / файлы и т. Д.), Затем изменил его в соответствии с приведенным выше описанием. ЭТО РАБОТАЕТ ... Apt снова работает , Удивительный. : D
Grizly
Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.