Sudo Apt-get 업데이트의 Ubuntu에 대한 Docker 오류

Sudo Apt-get 업데이트의 Ubuntu에 대한 Docker 오류

얼마 전에 Docker를 설치했는데, 무엇을 했는지 기억이 나지 않습니다.

저는 아직 Linux를 배우고/익숙해지는 중이며 다음 오류를 제거하는 방법을 잘 모르겠습니다.

실행하면 sudo /apt-get update다음 오류가 발생합니다. 이 오류를 어떻게 제거할 수 있나요?

Docker를 다시 설치하는 것이 아니라 이 오류를 제거하고 싶습니다. / add-apt-repository설치 시 수행한 작업을 되돌려야 합니까?

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.

답변1

맥락에 대해 다른 사람들에게 감사드립니다. 이것이 도움이 될 경우 실제로 오류를 해결하기 위해 다음을 실행하여 문제를 해결했습니다.

sudo nano /etc/apt/sources.list

그런 다음 eoan의 저장소 소스를 제거하고 다음을 사용하고 있는지 확인하십시오.

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

그 이후에는 문제 없이 달릴 수 있습니다 apt-get.

관련 정보