Errores de Docker para Ubuntu en Sudo Apt-get update

Errores de Docker para Ubuntu en Sudo Apt-get update

Hace un tiempo instalé Docker, pero no recuerdo lo que hice.

Todavía estoy aprendiendo/acostumbrándome a Linux y no estoy seguro de cómo deshacerme del siguiente error.

Cuando lo ejecuto sudo /apt-get updateme sale el siguiente error. ¿Cómo puedo deshacerme de este error?

Me gustaría simplemente eliminar este error, no reinstalar Docker. ¿Necesito revertir la add-apt-repositoryacción que realicé durante la instalación?

Err:14 https://download.docker.com/linux/ubuntu eoan Release                   
  404  Not Found [IP: 2600:9000:21d5:ae00:3:db06:4200:93a1 443]
Get:15 http://us.archive.ubuntu.com/ubuntu eoan-updates InRelease [97.5 kB]   
Err:16 https://download.docker.com/linux/debian eoan Release                   
  404  Not Found [IP: 2600:9000:21d5:ae00:3:db06:4200:93a1 443]
Get:17 http://us.archive.ubuntu.com/ubuntu eoan-backports InRelease [88.8 kB]
Hit:19 https://packagecloud.io/slacktechnologies/slack/debian jessie InRelease 
Reading package lists... Done                                                  
E: The repository 'https://download.docker.com/linux/ubuntu 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.
E: The repository 'https://download.docker.com/linux/debian 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.

Respuesta1

Gracias a los demás por el contexto. En caso de que esto ayude, para resolver el error, lo resolví ejecutando:

sudo nano /etc/apt/sources.list

Luego simplemente eliminé la fuente del repositorio para eoan y me aseguré de que estaba usando lo siguiente:

deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable
# deb-src [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable

Después de eso puedo ejecutar apt-getsin problemas.

información relacionada