No se puede localizar el paquete php8.0, error al instalar php8 en ubuntu

No se puede localizar el paquete php8.0, error al instalar php8 en ubuntu

Tengo Ubuntu 16.04 y ejecuté el siguiente comando

sudo add-apt-repository ppa:ondrej/php

El resultado final se ve así:


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

luego ejecuto esto:

sudo apt-get update

El resultado de este comando es:


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

y luego ejecuto este código para instalar php8.0:

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

Siempre regresa:

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'

Agradecería mucho que alguien supiera y compartiera la solución.

Respuesta1

Dado que php 5.algo, fpm es parte del núcleo de php, no un paquete separado. Entonces, si ha instalado php8.0, entonces solo debería necesitar habilitarlo (probablemente, sudo a2enconf php8.0-fpmpero aquí solo estoy adivinando).

Si observa los detalles del paquete para el repositorio que agregó, podrá ver lo que hay en el paquete php8.0: https://launchpad.net/~ondrej/+archive/ubuntu/php/+packages?field.name_filter=php8.0&field.status_filter=published&field.series_filter=

información relacionada