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

应该可以做到这一点。

相关内容