Debian не может удалить dovecot


3

У меня проблема с удалением dovecot. И, пытаясь это исправить, я усугубил ситуацию. Вот "журнал":

Errors were encountered while processing:
 dovecot-imapd
 dovecot-pop3d
E: Sub-process /usr/bin/dpkg returned an error code (1)
root@gasimzada:/usr/lib# apt-get remove -f dovecot-imapd
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be REMOVED:
  dovecot-imapd dovecot-pop3d
0 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.
2 not fully installed or removed.
After this operation, 976 kB disk space will be freed.
Do you want to continue [Y/n]? y
(Reading database ... 43903 files and directories currently installed.)
Removing dovecot-imapd ...
doveconf: error while loading shared libraries: libdovecot.so.0: cannot open shared object file: No such file or directory
[....] Starting IMAP/POP3 mail server: dovecot/usr/sbin/dovecot: error while loading shared libraries: libdovecot.so.0: cannot open shared object file: No such file or directory
 failed!
invoke-rc.d: initscript dovecot, action "start" failed.
dpkg: error processing dovecot-imapd (--remove):
 subprocess installed post-removal script returned error exit status 1
Removing dovecot-pop3d ...
doveconf: error while loading shared libraries: libdovecot.so.0: cannot open shared object file: No such file or directory
[....] Starting IMAP/POP3 mail server: dovecot/usr/sbin/dovecot: error while loading shared libraries: libdovecot.so.0: cannot open shared object file: No such file or directory
 failed!
invoke-rc.d: initscript dovecot, action "start" failed.
dpkg: error processing dovecot-pop3d (--remove):
 subprocess installed post-removal script returned error exit status 1
Errors were encountered while processing:
 dovecot-imapd
 dovecot-pop3d
E: Sub-process /usr/bin/dpkg returned an error code (1)

Причина ошибки в том, что я удалил папку dovecot из / usr / lib, что было ужасной идеей. Какая альтернатива удалению пакета без его запуска?

Спасибо,

Ответы:


5

Это удаляет dovecot в Debian:

systemctl stop dovecot
systemctl disable dovecot
apt-get purge dovecot-core
apt-get autoremove dovecot-core

2

Вариант а)

Переустановите пакет и сразу же удалите его.

Вариант б)

Настройте файл сценария post-rm, чтобы он не вызывал doveconf.

Вариант в)

Настройте doveconf, чтобы он был клоном / bin / true.


я принудительно удалил его, используя dpkg, и это сработало: D
Гасим

1

Переустановка / удаление / очистка не работает для меня. Это сделал:

Это сработало для меня:

sudo nano /etc/init.d/dovecot

поместите выход 0 в верхнюю строку (вы можете поместить его во 2-ю строку после комментария), сохраните и попробуйте aptitude-remove, чтобы удалить поврежденную установку

:-)

Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.