【发布时间】:2014-02-16 17:47:58
【问题描述】:
我正在使用 linux mint。我正在尝试安装 php5-cli,但在执行相应的 bash 命令后,我有以下日志:
Reading package lists... Done
Building dependency tree
Reading state information... Done
php5-cli is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 353 not upgraded.
4 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? y
debconf: DbDriver "config": /var/cache/debconf/config.dat is locked by another process: Resource temporarily unavailable
Setting up php5-common (5.4.6-1ubuntu1.5) ...
debconf: DbDriver "config": /var/cache/debconf/config.dat is locked by another process: Resource temporarily unavailable
dpkg: error processing php5-common (--configure):
subprocess installed post-installation script returned error exit status 1
Setting up man-db (2.6.3-1) ...
debconf: DbDriver "config": /var/cache/debconf/config.dat is locked by another process: Resource temporarily unavailable
dpkg: error processing man-db (--configure):
subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of libapache2-mod-php5:
libapache2-mod-php5 depends on php5-common (= 5.4.6-1ubuntu1.5); however:
Package php5-common is not configured yet.
dpkg: error processing libapache2-mod-php5 (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of php5-cli:
php5-cli depends on php5-common (= 5.4.6-1ubuntu1.5); however:
Package php5-common is not configured yet.
dpkg: error processing php5-cli (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
php5-common
man-db
libapache2-mod-php5
php5-cli
E: Sub-
进程 /usr/bin/dpkg 返回错误代码 (1)
如果我尝试执行 sudo apt-get install man-db 或 sudo apt-get install libapache2-mod-php5 我会遇到同样的错误。为什么会发生?
【问题讨论】:
-
也许这个链接可能会有所帮助:ubuntuforums.org/archive/index.php/t-2105825.html
-
@悉达多耶!它有助于。 php 安装后,apache2/modules 目录中没有 php.load 和 php.conf。 sudo apt-get -f libapache2-mod-php5 纠正了这个错误。非常感谢!
-
哈哈我刚刚搜索了你的错误!很高兴能帮上忙。
-
@DmitryFucintv 你的意思是:sudo apt-get install -f libapache2-mod-php5 ???