0
Hello, I am configuring a machine with php5.6, I have installed and configured apache, php5.6 and mysql, now I want to install phpmyadmin, the problem is that when trying to install through apt it will install several other packages, among them some of php7.1, I don’t know if this will hurt anything in the environment since I already have these same packages in version 5.6. I want to know if there is any way to install only phpmyadmin or even installing with all the additional packages will not harm the machine configuration at all. Below I leave the terminal output when trying to install phpmyamin by apt.
andre@andre-desktop ~ $ sudo apt install phpmyadmin
Lendo listas de pacotes... Pronto
Construindo árvore de dependências
Lendo informação de estado... Pronto
The following additional packages will be installed:
dbconfig-common dbconfig-mysql libjs-jquery libjs-sphinxdoc libjs-underscore php-gettext php-mbstring
php-pear php-phpseclib php-xml php7.1-common php7.1-mbstring php7.1-xml
Pacotes sugeridos:
javascript-common php-libsodium php-mcrypt php-gmp
Pacotes recomendados:
javascript-common php-gd php-tcpdf
Os NOVOS pacotes a seguir serão instalados:
dbconfig-common dbconfig-mysql libjs-jquery libjs-sphinxdoc libjs-underscore php-gettext php-mbstring
php-pear php-phpseclib php-xml php7.1-common php7.1-mbstring php7.1-xml phpmyadmin
0 pacotes atualizados, 14 pacotes novos instalados, 0 a serem removidos e 322 não atualizados.
É preciso baixar 6.730 kB de arquivos.
Depois desta operação, 37,5 MB adicionais de espaço em disco serão usados.
Você quer continuar? [S/n]
I tried to install package by package that is required for phpmyadmin, all of them installed well until it arrived in php-mbstring, which when trying to install it requires php7.1-common php7.1-mbstring packages
– André Walker