web-dev-qa-db-ja.com

TurnKeyLAMPをインストールできませんPHP Gd Library

TurnKeyLAMPアプライアンスにPHPのGdライブラリをインストールしようとすると、次のメッセージが表示されます。

root@lamp ~# apt-get install php5-Gd
Reading package lists... Done
Building dependency tree
Reading state information... Done
php5-Gd is already the newest version.
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 php5-Gd : Depends: libgd2-xpm (>= 2.0.36~rc1~dfsg) but it is not going to be installed
           Depends: libjpeg8 (>= 8c) but it is not going to be installed
           Depends: libpng12-0 (>= 1.2.13-4) but it is not going to be installed
           Depends: libx11-6 but it is not going to be installed
           Depends: libxpm4 but it is not going to be installed
           Depends: phpapi-20100525+lfs but it is not installable
           Depends: php5-common (= 5.4.4-14) but 5.3.3-7+squeeze14 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

次に、「apt-get -f install」オプションを使用しようとすると、次のようになります。

root@lamp ~# apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
  fontconfig-config libfontconfig1 libgd2-xpm libjpeg62 libpng12-0 libx11-6
  libx11-data libxau6 libxcb1 libxdmcp6 libxpm4 ttf-dejavu-core
Suggested packages:
  libgd-tools
The following packages will be REMOVED:
  php5-Gd
The following NEW packages will be installed:
  fontconfig-config libfontconfig1 libgd2-xpm libjpeg62 libpng12-0 libx11-6
  libx11-data libxau6 libxcb1 libxdmcp6 libxpm4 ttf-dejavu-core
0 upgraded, 12 newly installed, 1 to remove and 33 not upgraded.
Need to get 0 B/3557 kB of archives.
After this operation, 8569 kB of additional disk space will be used.
Do you want to continue [Y/n]? Y
[master e6f9b93] saving uncommitted changes in /etc prior to apt run
 Author: root <root@lamp>
 1 files changed, 1 insertions(+), 1 deletions(-)
 rewrite webmin/system-status/info (100%)
debconf: delaying package configuration, since apt-utils is not installed
(Reading database ... 25484 files and directories currently installed.)
Removing php5-Gd ...
/var/lib/dpkg/info/php5-Gd.prerm: 11: php5dismod: not found
dpkg: error processing php5-Gd (--remove):
 subprocess installed pre-removal script returned error exit status 127
configured to not write apport reports
                                      Processing triggers for libapache2-mod-php5 ...
Reloading web server config: Apache2apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
.
Errors were encountered while processing:
 php5-Gd
Counting objects: 1469, done.
Compressing objects: 100% (957/957), done.
Writing objects: 100% (1469/1469), done.
Total 1469 (delta 123), reused 1460 (delta 119)
E: Sub-process /usr/bin/dpkg returned an error code (1)

何か案は?ありがとう。

1
trip0d199

Debianベースのシステムには、サードパーティのリポジトリからサードパーティのパッケージとともにインストールされたいくつかのファイルが欠落しているようで、多くのものが同期していません。

あなたの当面の問題は:

/var/lib/dpkg/info/php5-Gd.prerm: 11: php5dismod: not found

これを回避する ファイル/var/lib/dpkg/info/php5-Gd.prermを編集し、その内容全体を削除して、次のように置き換えることができます。

#!/bin/sh
set -e

この時点で、apt-get install -fを再度実行します。

これが正常に完了したら、システムを同期に戻すには、次のコマンドを実行します。

apt-get update && apt-get dist-upgrade

それが正常に完了したら、php5-Gdパッケージを再インストールできます。

apt-get install php5-Gd

将来的には、システムパッケージに含まれるファイルを手動で削除することに注意し、使用するサードパーティのリポジトリに注意し、異なるDebianバージョン(安定版とテスト版など)のパッケージを混在させる場合は特に注意してください。

0
Michael Hampton