web-dev-qa-db-ja.com

UbuntuでAPT)を使用してパッケージをインストールする際のエラーを修正するにはどうすればよいですか?

APTを使用してパッケージをインストールしようとしましたが、エラーが発生しました:

UserName@PCname:~$ Sudo apt-get install php7.2

Reading package lists... Done
Building dependency tree       
Reading state information... Done
php7.2 is already the newest version (7.2.7-1+0~20180622080852.23+jessie~1.gbpfd8e2e).
0 upgraded, 0 newly installed, 0 to remove and 1 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
Setting up php7.1-fpm (7.1.18-1+0~20180611145758.18+jessie~1.gbp2b32f6) ...
/var/lib/dpkg/info/php7.1-fpm.postinst: 2: /etc/Apache2/envvars: =/var/run/Apache2: not found
dpkg: error processing package php7.1-fpm (--configure):
 subprocess installed post-installation script returned error exit status 127
Setting up libapache2-mod-php7.2 (7.2.7-1+0~20180622080852.23+jessie~1.gbpfd8e2e) ...
/var/lib/dpkg/info/libapache2-mod-php7.2.postinst: 2: /etc/Apache2/envvars: =/var/run/Apache2: not found
dpkg: error processing package libapache2-mod-php7.2 (--configure):
 subprocess installed post-installation script returned error exit status 127
Setting up libapache2-mod-php7.1 (7.1.18-1+0~20180611145758.18+jessie~1.gbp2b32f6) ...
/var/lib/dpkg/info/libapache2-mod-php7.1.postinst: 2: /etc/Apache2/envvars: =/var/run/Apache2: not found
dpkg: error processing package libapache2-mod-php7.1 (--configure):
 subprocess installed post-installation script returned error exit status 127
dpkg: dependency problems prevent configuration of php7.2:
 php7.2 depends on libapache2-mod-php7.2 | php7.2-fpm | php7.2-cgi; however:
  Package libapache2-mod-php7.2 is not configured yet.
  Package php7.2-fpm is not installed.
  Package php7.2-cgi is not installed.

dpkg: error processing package php7.2 (--configure):
 dependency problems - leaving unconfigured
No apport report written because MaxReports is reached already
                                                              Errors were encountered while processing:
 php7.1-fpm
 libapache2-mod-php7.2
 libapache2-mod-php7.1
 php7.2
E: Sub-process /usr/bin/dpkg returned an error code (1)

どうすればこれを修正できますか?

1
Naziks

このコマンドは私を助けます:

1)PHPと彼のすべてのライブラリとファイルを削除します

Sudo apt-get purge php7.*

2)インストールPHP

Sudo apt-get install php7.2
4
Naziks