Ubuntu 18.04에서 sudo apt update && sudo apt update -y에서 오류 발생

Ubuntu 18.04에서 sudo apt update && sudo apt update -y에서 오류 발생

sudo apt update && sudo apt update -y를 실행하면 다음 오류가 발생합니다.

Hit:1 http://ppa.launchpad.net/diesch/testing/ubuntu bionic InRelease
Ign:2 http://ppa.launchpad.net/gnome-terminator/ppa/ubuntu bionic InRelease   
Hit:3 https://packages.microsoft.com/ubuntu/20.04/prod focal InRelease        
Err:4 http://ppa.launchpad.net/gnome-terminator/ppa/ubuntu bionic Release
  404  Not Found [IP: 91.189.95.83 80]
Reading package lists... Done
E: The repository 'http://ppa.launchpad.net/gnome-terminator/ppa/ubuntu bionic 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

http://ppa.launchpad.net/gnome-terminator/ppa/ubuntu귀하의 Ubuntu(Bionic Beaver) 버전을 사용할 수 없으므로 저장소를 사용할 수 없음을 나타냅니다 . Ubuntu 버전을 업그레이드하거나 이 저장소를 삭제할 수 있습니다.
업그레이드하기로 결정했다면 다음 단계를 따르세요.이것. 현재 버전을 유지하고 저장소를 삭제하려면 다음을 수행하십시오.

  1. 저장소를 참조하는 줄을 찾아 다음을 /etc/apt실행하세요.
grep "http://ppa.launchpad.net/gnome-terminator/ppa/ubuntu" /etc/apt  -R
  1. 선호하는 텍스트 편집기(vim, nano, subl, gedit 등)를 사용하고제거하다그 라인.
  2. 다시 뛰어 sudo apt update.

이 작업이 가능해야 합니다.

관련 정보