Não foi possível localizar o pacote php8.0, bug na instalação do php8 no Ubuntu

Não foi possível localizar o pacote php8.0, bug na instalação do php8 no Ubuntu

Eu tenho o Ubuntu 16.04 e executei o comando abaixo

sudo add-apt-repository ppa:ondrej/php

O resultado final fica assim:


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

então eu executo isso:

sudo apt-get update

O resultado deste comando é:


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

e então executo este código para instalar o php8.0:

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

Sempre retorna:

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'

Agradeço muito se alguém souber e compartilhar a solução.

Responder1

Como o php 5.something fpm faz parte do núcleo do php, não é um pacote separado. Portanto, se você instalou o php8.0, basta ativá-lo (provavelmente, sudo a2enconf php8.0-fpmmas estou apenas supondo aqui).

Se você olhar os detalhes do pacote do repositório que você adicionou, poderá ver o que está no pacote php8.0: https://launchpad.net/~ondrej/+archive/ubuntu/php/+packages?field.name_filter=php8.0&field.status_filter=published&field.series_filter=

informação relacionada