web-dev-qa-db-ja.com

Ubuntu 16.04アップデートマネージャーエラー

ソフトウェアの更新を実行しようとするたびに、ソフトウェアマネージャーからこのエラーが発生します。

W:GPG error: http://download.virtualbox.org/virtualbox/debian xenial InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A2F683C52980AECF, W:The repository 'http://download.virtualbox.org/virtualbox/debian xenial InRelease' is not signed., W:Data from such a repository can't be authenticated and is therefore potentially dangerous to use., W:See apt-secure(8) manpage for repository creation and user configuration details., W:There is no public key available for the following key IDs:
A2F683C52980AECF  , W:The repository 'http://ppa.launchpad.net/blackmage/f.Lux/ubuntu xenial Release' does not have a Release file., W:Data from such a repository can't be authenticated and is therefore potentially dangerous to use., W:See apt-secure(8) manpage for repository creation and user configuration details., W:The repository 'http://ppa.launchpad.net/gezakovacs/ppa/ubuntu xenial Release' does not have a Release file., W:Data from such a repository can't be authenticated and is therefore potentially dangerous to use., W:See apt-secure(8) manpage for repository creation and user configuration details., W:The repository 'http://ppa.launchpad.net/zeal-developers/ppa/ubuntu xenial Release' does not have a Release file., W:Data from such a repository can't be authenticated and is therefore potentially dangerous to use., W:See apt-secure(8) manpage for repository creation and user configuration details., W:http://deb.playonlinux.com/dists/trusty/InRelease: Signature by key 74F7358425EEB6176094C884E0F72778C4676186 uses weak digest algorithm (SHA1), W:http://liveusb.info/multisystem/depot/dists/all/Release.gpg: Signature by key 32027DE3D67157C45E69C0AE4E940D7FDD7FB8CC uses weak digest algorithm (SHA1), W:http://vagrant-deb.linestarve.com/dists/any/InRelease: Signature by key AD319E0F7CFFA38B4D9F6E55CE3F3DE92099F7A4 uses weak digest algorithm (SHA1), E:Failed to fetch http://ppa.launchpad.net/blackmage/f.Lux/ubuntu/dists/xenial/main/source/Sources  404  Not Found, E:Failed to fetch http://ppa.launchpad.net/blackmage/f.Lux/ubuntu/dists/xenial/main/binary-i386/Packages  404  Not Found, E:Failed to fetch http://ppa.launchpad.net/gezakovacs/ppa/ubuntu/dists/xenial/main/binary-i386/Packages  404  Not Found, E:Failed to fetch http://ppa.launchpad.net/zeal-developers/ppa/ubuntu/dists/xenial/main/source/Sources  404  Not Found, E:Failed to fetch http://ppa.launchpad.net/zeal-developers/ppa/ubuntu/dists/xenial/main/binary-i386/Packages  404  Not Found, E:Some index files failed to download. They have been ignored, or old ones used instead.

以下は、所有しているリポジトリを編集しようとしたときに表示されるスクリーンショットです。

enter image description here

enter image description here

enter image description here

enter image description here

enter image description here

enter image description here

enter image description here

これを修正する方法がわかりません。

22
Emil Zahariev

以前に外部リポジトリを削除せずにシステムをアップグレードしたことは明らかです。問題を解決する最も簡単な方法は、すべての外部リポジトリを削除し、関連するすべての公開キーを削除することです。これを行った後、リポジトリ(Sudo apt-get update)を更新し、すべてが修正されたかどうかを確認します...エラーが発生しなくなったら、新しい外部リポジトリを追加できますが、これらのリポジトリが「Xenialに一致する」かどうかを慎重に確認します...

追加するリポジトリによっては、リポジトリの更新時に「弱い署名」警告が表示される場合がありますが、これは単なる情報メッセージであるため無視できます。

gpg: Signature by key ... uses weak digest algorithm (SHA1)  
3
cl-netbox

コマンドラインに次のコンテンツを入力します。

wget -q http://download.virtualbox.org/virtualbox/debian/Oracle_vbox_2016.asc -O- | Sudo apt-key add -
16

アップグレード前から残っている古いキーを削除する必要があります。行う:

Sudo apt-key list

問題のキー(「virtualbox」の近く、「pub」の後、xxx/KEYHERE)を見つけて実行します。

Sudo apt-key del KEYHERE

次に https://www.virtualbox.org/wiki/Linux_Downloads に移動し、「DebianベースのLinuxディストリビューション」の指示に従います

10
NikLP

Dockerをインストールしようとすると、この問題が発生します。命令はlsb_release -csを実行するようにアドバイスし、serenaを返しますが、xenialを返す必要があるため、手動でファイル/etc/apt/sources.list.d/additional-repositories.listを開き、次の文字列でserena-> xenialを変更します。

deb [Arch=AMD64] https://download.docker.com/linux/ubuntu serena stable

問題はなくなった

1
Eugen Konkov