web-dev-qa-db-ja.com

パッケージリストを更新するときの404エラーを修正するにはどうすればよいですか?

Ubuntu 18.04 LTSを実行していますが、新しいPPAからインストールできません。パッケージリストを更新しようとするたびに、404エラーが発生します。

curtice@linuxloverpc:~$ Sudo apt update
[Sudo] password for curtice: 
Hit:1 http://security.ubuntu.com/ubuntu bionic-security InRelease
Hit:2 http://us.archive.ubuntu.com/ubuntu bionic InRelease               
Hit:3 http://us.archive.ubuntu.com/ubuntu bionic-updates InRelease       
Hit:4 http://ppa.launchpad.net/bartbes/love-stable/ubuntu bionic InRelease
Ign:5 http://ppa.launchpad.net/gnome-Shell-extensions/ppa/ubuntu bionic InRelease
Hit:6 http://ppa.launchpad.net/obsproject/obs-studio/ubuntu bionic InRelease  
Hit:7 http://ppa.launchpad.net/papirus/papirus/ubuntu bionic InRelease        
Err:8 http://ppa.launchpad.net/gnome-Shell-extensions/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-Shell-extensions/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.

ディストリビューションのアップグレード後にリポジトリを再度有効にしませんでした。リポジトリ名を誤って入力しませんでした。リポジトリは明らかに http://ppa.launchpad.net/gnome-Shell-extensions/ppa/ubuntuにあります。 /

どうすれば修正できますか?

4
Curtice Gough

質問のapt-get updateは、 gnome-Shell-extensions/ppa にはUbuntu 18.04 LTS Bionic Beaver用のパッケージがないことを示しています。

単にこのリポジトリを無効にする必要があります

Sudo add-apt-repository -r ppa:gnome-Shell-extensions/ppa

そして、通常どおりaptを使い続けます。

7
N0rbert