安装php5-mcrypt时出错

就在今天,我注册了Google Cloud Compute Engine.我做了一切,但后来我在安装PHP5-mcrypt扩展时遇到了错误.
错误
root@instance-2:~# sudo apt-get install PHP5-mcrypt
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:
 PHP5-mcrypt : Depends: PHPapi-20121212
               Depends: PHP5-common (= 5.5.24+dfsg-1+deb.sury.org~vivid+1) but 5.6.4+dfsg-4ubuntu6 is to be installed
E: Unable to correct problems,you have held broken packages.

我到处搜索,然后我来到这里.请帮忙.

sudo service apache2 restar
apt-get install PHP5-common

或者,如果您不需要保持配置:

apt-get purge PHP5-common
apt-get install PHP5-common

你从apt-mark showhold获得任何输出吗?

如果它无法解决您的问题,您应该尝试使用aptitude进行安装:

sudo apt-get install aptitude
sudo aptitude install PHP5-mcrypt

最后重新安装服务器

sudo service apache2 restart

相关文章

Hessian开源的远程通讯,采用二进制 RPC的协议,基于 HTTP 传输。可以实现PHP调用Java,Python,C#等多语...
初识Mongodb的一些总结,在Mac Os X下真实搭建mongodb环境,以及分享个Mongodb管理工具,学习期间一些总结...
边看边操作,这样才能记得牢,实践是检验真理的唯一标准.光看不练假把式,光练不看傻把式,边看边练真把式....
在php中,结果输出一共有两种方式:echo和print,下面将对两种方式做一个比较。 echo与print的区别: (...
在安装好wampServer后,一直没有使用phpMyAdmin,今天用了一下,phpMyAdmin显示错误:The mbstring exte...
变量是用于存储数据的容器,与代数相似,可以给变量赋予某个确定的值(例如:$x=3)或者是赋予其它的变...