web-dev-qa-db-fra.com

Impossible d'installer phpmyadmin sur Ubuntu 14.04 LTS

J'ai installé Ubuntu à côté de la fenêtre 10 (double démarrage). J'ai installé le serveur Apache2, mysql et installer PHP 7, puis je souhaite installer phpmyadmin. Je ne peux pas l'installer. J'ai essayé plusieurs fois, mais j'ai toujours le même problème. Et voici l'erreur que je reçois:

    Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 phpmyadmin : Depends: libapache2-mod-php5 but it is not going to be installed or
                       libapache2-mod-php5filter but it is not going to be installed or
                       php5-cgi but it is not going to be installed or
                       php5-fpm but it is not going to be installed or
                       php5 but it is not going to be installed
              Depends: php5-mysql but it is not going to be installed or
                       php5-mysqli but it is not installable or
                       php5-mysqlnd but it is not going to be installed
              Depends: php5-mcrypt but it is not going to be installed
              Depends: php5-json but it is not going to be installed
              Depends: php-gettext but it is not going to be installed
              Recommends: php5-Gd but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Il dit que j'ai des paquets cassés, et je ne sais vraiment pas comment résoudre ce problème. S'il vous plaît aider!

Merci d'avance.

2
july

Vous pouvez vérifier xampp . Il va les installer tous. Il est également disponible pour Ubuntu.

Téléchargez le fichier .run et installez-le comme ceci

chmod 755 xampp-linux-*-installer.run
Sudo ./xampp-linux-*-installer.run

Après cela, vous pouvez exécuter ceci comme ceci.

Sudo /opt/lampp/lampp start

Et pour arrêter

Sudo /opt/lampp/lampp stop

Cela exécutera son outil de ligne de commande. Il a aussi son outil graphique. Il peut être exécuté comme ça.

cd /opt/lampp
Sudo ./manager-linux.run (or manager-linux-x64.run)
1
Muhammad Hassan

Vous pouvez essayer d'installer php7 puis installer phpmyadmin, cela fonctionne pour moi sur Ubuntu 14.04.

Sudo apt-add-repository ppa:ondrej/php -y
Sudo apt-get update
Sudo apt-get install -y php7.0-common php7.0-cli php7.0-fpm php7.0-curl php7.0-sqlite3 php7.0-json php7.0-tidy php7.0-mysql
Sudo apt-get install -y phpmyadmin
0
Hustlion