APT ERROR (desde a instalação do multiscan: i386): o script de pós-instalação do subprocesso instalado forneceu o valor de erro 1 [duplicado]

0

Eu tenho um grande problema com meu gerenciamento de pacotes (apt). Eu tentei instalar o pacote multiscan:i386 e desde então eu sempre recebo erros quando estou usando comandos que lidam com o gerenciamento de pacotes.

Eu não sei se isso importa, mas eu tenho uma arquitetura i7-4720HQ, Ubuntu 17.10.1, 64-bit e normalmente estou instalando pacotes amd64.

me@LINUX:~$ sudo apt remove multiscan
[sudo] password for me: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be REMOVED:
  multiscan:i386
0 upgraded, 0 newly installed, 1 to remove and 1647 not upgraded.
1 not fully installed or removed.
After this operation, 98.3 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 459704 files and directories currently installed.)
Removing multiscan:i386 (0.8.5-1) ...
install-info: No dir file specified; try --help for more information.
dpkg: error processing package multiscan:i386 (--remove):
 subprocess installed pre-removal script returned error exit status 1
install-info: No dir file specified; try --help for more information.
dpkg: error while cleaning up:
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 multiscan:i386
    
por phyyyl 03.05.2018 / 19:32

1 resposta

2

Eu fiz:

me@LINUX:~$ sudo rm /var/lib/dpkg/info/multiscan.postinst -f
me@LINUX:~$ sudo rm /var/lib/dpkg/info/multiscan.md5sums -f
me@LINUX:~$ sudo rm /var/lib/dpkg/info/multiscan.list -f
me@LINUX:~$ sudo rm /var/lib/dpkg/info/multiscan.prerm -f
me@LINUX:~$ sudo dpkg --remove --force-remove-reinstreq multiscan
(Lese Datenbank ... 459694 Dateien und Verzeichnisse sind derzeit installiert.)
Entfernen von multiscan:i386 (0.8.5-1) ...
    
por phyyyl 05.05.2018 / 22:36