パッケージ php8.0 が見つかりません。Ubuntu に php8 をインストールする際のバグです

パッケージ php8.0 が見つかりません。Ubuntu に php8 をインストールする際のバグです

私はUbuntu 16.04を使用しており、以下のコマンドを実行しました

sudo add-apt-repository ppa:ondrej/php

最終結果は次のようになります。


Press [ENTER] to continue or ctrl-c to cancel adding it

gpg: keyring `/tmp/tmp94jbo60i/secring.gpg' created
gpg: keyring `/tmp/tmp94jbo60i/pubring.gpg' created
gpg: requesting key E5267A6C from hkp server keyserver.ubuntu.com
gpg: /tmp/tmp94jbo60i/trustdb.gpg: trustdb created
gpg: key E5267A6C: public key "Launchpad PPA for Ondřej Surý" imported
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
OK

次にこれを実行します:

sudo apt-get update

このコマンドの結果は次のようになります。


Get:1 http://security.ubuntu.com/ubuntu xenial-security InRelease [109 kB]
Hit:2 http://us.archive.ubuntu.com/ubuntu xenial InRelease
Get:3 http://us.archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]
Hit:4 https://esm.ubuntu.com/infra/ubuntu xenial-infra-security InRelease
Hit:5 https://esm.ubuntu.com/infra/ubuntu xenial-infra-updates InRelease
Get:6 http://us.archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]
Hit:7 http://ppa.launchpad.net/ondrej/apache2/ubuntu xenial InRelease
Hit:8 http://ppa.launchpad.net/ondrej/php/ubuntu xenial InRelease

次に、このコードを実行して php8.0 をインストールします。

sudo apt install php8.0-fpm libapache2-mod-fcgid

常に次の結果が返されます:

Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package php8.0-fpm
E: Couldn't find any package by glob 'php8.0-fpm'
E: Couldn't find any package by regex 'php8.0-fpm'

どなたか解決策を知っていて共有していただけると大変ありがたいです。

答え1

php 5.something 以降、fpm はコア php の一部であり、個別のパッケージではありません。したがって、php8.0 をインストールしている場合は、それを有効にするだけで済みます (おそらくそうですsudo a2enconf php8.0-fpmが、ここでは推測するだけです)。

追加したリポジトリのパッケージ詳細を見ると、php8.0 パッケージに何が含まれているかがわかります。 https://launchpad.net/~ondrej/+archive/ubuntu/php/+packages?field.name_filter=php8.0&field.status_filter=published&field.series_filter=

関連情報