실행하면 apt-get update
오류가 발생하고 무시됩니다.
Ign:14 https://download.docker.com/linux/ubuntu hera InRelease
Hit:15 https://download.docker.com/linux/ubuntu bionic InRelease
Hit:16 http://ppa.launchpad.net/elementary-os/stable/ubuntu bionic InRelease
Err:17 https://download.docker.com/linux/ubuntu hera Release
404 Not Found [IP: 13.226.234.100 443]
내 목록에서 및 를 제거할 수 있기를 원합니다 14
. 17
그러나 을 실행하면 ls /etc/apt/sources.list.d
다음만 표시됩니다.
appcenter.list mc3man-ubuntu-mpv-tests-bionic.list.save
appcenter.list.save openvpn-aptrepo.list
deadsnakes-ubuntu-ppa-bionic.list openvpn-aptrepo.list.save
deadsnakes-ubuntu-ppa-bionic.list.save patches.list
elementary.list patches.list.save
elementary.list.save rednotebook-ubuntu-stable-bionic.list
fcitx-team-ubuntu-nightly-bionic.list rednotebook-ubuntu-stable-bionic.list.save
fcitx-team-ubuntu-nightly-bionic.list.save slack.list
google-chrome.list slack.list.save
google-chrome.list.save spotify.list
mc3man-ubuntu-mpv-tests-bionic.list spotify.list.save
이 두 프로젝트를 어떻게 삭제합니까?
답변1
다음 단계를 통해 문제를 해결할 수 있었습니다.
- 지원
$ cp /etc/apt/sources.list /etc/apt/sources.list.save
- 창고 찾기
$ grep -ir "docker.com" /etc/apt/sources.list deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable # deb-src [arch=amd64] https://download.docker.com/linux/ubuntu focal stable
- 잘못된 창고 삭제
$ sudo add-apt-repository --remove 'deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable'
답변2
당신은 그것을 사용할 수 있습니다 add-apt-repository
:
sudo add-apt-repository --remove 'deb [arch=amd64] https://download.docker.com/linux/ubuntu hera stable'
sudo add-apt-repository --remove 'deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable'
답변3
sources.list
저장소가 및 에 저장되어 있음을 알았습니다 sources.list.save
. 이를 삭제하기 위해 먼저 cd /etc/apt; grep -rI download.docker
저장소를 저장하는 파일을 찾기 위해 실행한 후 다음을 실행했습니다.
sudo nano /etc/apt/sources.list
sudo nano /etc/apt/sources.list.save
해당 줄을 삭제하십시오.