roundcube dpkg-reconfigure falhou

1

Eu não tenho mais ideia dpkg-reconfigure roundcube-core

falhou sem motivo. Eu reinstalei roundcube muitas vezes, sem efeito. Parece ser problema de dpkg no Ubuntu 16.04 LTS

Aqui está algum erro

apt-get install --reinstall debconf
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
  php-sqlite3 php7.0-sqlite3 sqlite3
Use 'apt autoremove' to remove them.
0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 213 not upgraded.
Need to get 0 B/136 kB of archives.
After this operation, 0 B of additional disk space will be used.
Preconfiguring packages ...
dpkg: warning: files list file for package 'roundcube-core' missing; assuming package has no files currently installed
dpkg: warning: files list file for package 'roundcube-mysql' missing; assuming package has no files currently installed
(Reading database ... 331508 files and directories currently installed.)
Preparing to unpack .../debconf_1.5.58ubuntu1_all.deb ...
Unpacking debconf (1.5.58ubuntu1) over (1.5.58ubuntu1) ...
Setting up debconf (1.5.58ubuntu1) ...
Processing triggers for man-db (2.7.5-1) ...
    
por orfruit 11.01.2017 / 22:28

1 resposta

1

Depois de algum esforço, resolvido. Caso alguém precise, aqui está a resposta:

Limpar primeiro:

sudo apt-get update
sudo apt-get autoremove
sudo apt-get autoclean
sudo apt-get --purge remove

Em seguida, tente reconfigurar e forçar a saída de depuração. Isso é importante:

sudo dpkg-reconfigura $ (dpkg -l | awk '{print $ 2}' | grep "^ roundcube" | tr '\ n' '')

Hmm .. isso mostra o erro que de outra forma não é mostrado em tudo!

/usr/sbin/dpkg-reconfigure: roundcube-plugins is broken or not fully installed

Agora, reinstale esse pacote ... e funcione.

apt-get install roundcube-plugins
    
por orfruit 14.01.2017 / 13:43