El repositorio no tiene un archivo de lanzamiento, no puede obtener la actualización de apt incluso después de eliminar las listas de apt y las fuentes.list

El repositorio no tiene un archivo de lanzamiento, no puede obtener la actualización de apt incluso después de eliminar las listas de apt y las fuentes.list

Al intentar actualizar mi Nodo 10 al Nodo 12, tengo un problema que no puedo buscar en Google. No importa los comandos que haya ejecutado, siempre aparece uno de dos errores que previene sudo apt-get update:

1)Esto aparece cuando se ejecuta sudo rm -rf /var/lib/apt/lists/* && sudo rm -rf /etc/apt/sources.list.d/*:

Reading package lists... Done                                                                                
E: The repository 'https://kong.bintray.com/kong-deb eoan Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

1.1)Algo que he notado en el recorrido de la pila de sudo rm -rf /var/lib/apt/lists/*...

Err:10 https://kong.bintray.com/kong-deb eoan Release                                       
  404  Not Found [IP: 52.41.180.114 443]

2)Al ejecutar sudo apt-get update, se me presenta:

pi@pop-os:~$ sudo apt-get update
Hit:1 http://us.archive.ubuntu.com/ubuntu eoan InRelease
Hit:2 http://us.archive.ubuntu.com/ubuntu eoan-security InRelease                                            
Hit:3 http://us.archive.ubuntu.com/ubuntu eoan-updates InRelease                                             
Hit:4 https://download.docker.com/linux/ubuntu eoan InRelease                                                
Hit:5 http://us.archive.ubuntu.com/ubuntu eoan-backports InRelease                                           
Hit:6 http://apt.pop-os.org/proprietary eoan InRelease                                                       
Ign:7 https://kong.bintray.com/kong-deb eoan InRelease                 
Err:8 https://kong.bintray.com/kong-deb eoan Release
  404  Not Found [IP: 54.191.3.105 443]
Reading package lists... Done
E: The repository 'https://kong.bintray.com/kong-deb eoan Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

¿Qué está pasando aquí y cómo puedo eliminar Kong y/o solucionarlo sudo apt-get update?

Información adicional:

  • Estoy ejecutando Pop~_OS 19.10, que se basa directamente en Ubuntu 19.10.
  • No tengo PPA y lamentablemente preguntas similares cuyas soluciones dieron como resultado el ppacomando no me funcionan.

Respuesta1

Si borró /etc/apt/sources.list.d/el directorio y no ayudó, entonces necesita examinar su /etc/apt/sources.listarchivo. Lo más probable es que su repositorio defectuoso aparezca allí.

Asegúrate de que se vea así:

$ cat /etc/apt/sources.list
deb http://us.archive.ubuntu.com/ubuntu/ eoan main restricted
deb http://us.archive.ubuntu.com/ubuntu/ eoan-updates main restricted
deb http://us.archive.ubuntu.com/ubuntu/ eoan universe
deb http://us.archive.ubuntu.com/ubuntu/ eoan-updates universe
deb http://us.archive.ubuntu.com/ubuntu/ eoan multiverse
deb http://us.archive.ubuntu.com/ubuntu/ eoan-updates multiverse
deb http://archive.canonical.com/ubuntu eoan partner
deb http://security.ubuntu.com/ubuntu eoan-security main restricted
deb http://security.ubuntu.com/ubuntu eoan-security universe
deb http://security.ubuntu.com/ubuntu eoan-security multiverse

Puede usar el siguiente comando para ver si su repositorio defectuoso aparece allí:

$ grep kong /etc/apt/sources.list

Si necesita buscarlo en varios archivos, utilice el siguiente comando:

$ grep kong /etc/apt/*
$ grep kong /etc/apt/*/*

El segundo comando buscarákongen aptlos subdirectorios de la carpeta.

información relacionada