Como instalar o PHP5 após a desinstalação!

0

Eu estava tentando fazer o downgrade do PHP de volta para o 5.4 (meu site ficou incrivelmente lento após a atualização). Eu segui o primeiro passo deste guia:

Agora estou preso a não conseguir mais instalar o PHP5 com

Get:1 http://de.archive.ubuntu.com/ubuntu/ trusty-updates/main php5 all 5.5.9+dfsg-1ubuntu4.25 [1,308 B]
Fetched 1,308 B in 0s (31.9 kB/s)
(Reading database ... 63966 files and directories currently installed.)
Removing phpmyadmin (4:4.0.10-1) ...
dpkg: error processing package phpmyadmin (--remove):
 subprocess installed post-removal script returned error exit status 10
Errors were encountered while processing:
 phpmyadmin
E: Sub-process /usr/bin/dpkg returned an error code (1)

Como posso resolver isso?

Eu tentei concluir a instalação com apt-get -f install , mas entendi:

Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages will be REMOVED:
  phpmyadmin
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 23.0 MB disk space will be freed.
Do you want to continue? [Y/n] y
(Reading database ... 63213 files and directories currently installed.)
Removing phpmyadmin (4:4.0.10-1) ...
dpkg: error processing package phpmyadmin (--remove):
 subprocess installed post-removal script returned error exit status 10
Errors were encountered while processing:
 phpmyadmin
E: Sub-process /usr/bin/dpkg returned an error code (1)

Ubuntu 16.04.3

Tentou reiniciar, ainda a mesma situação

    
por Memes 04.06.2018 / 04:51

1 resposta

-1

O banco de dados do Apt está bloqueado. Alguém está apenas tentando instalar outra coisa. Talvez seja você em outro terminal ou talvez você tenha o Gerenciador de Pacotes Synaptic em execução. Tente encontrá-lo seguindo seus processos:

ps -ef | grep apt

ou

ps -ef | grep synaptic

apenas tente sair ou matar este aplicativo com kill -15 e tente instalar novamente.

    
por dolpa 04.06.2018 / 07:12