apt-get update を発行するにはどうすればいいですか?

apt-get update を発行するにはどうすればいいですか?

コマンドを実行した後sudo apt-get update

次のエラーが発生しました:

W: GPG error: https://deb.nodesource.com/node_7.x xenial InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 1655A0AB68576280
W: The repository 'https://deb.nodesource.com/node_7.x xenial InRelease' is not signed.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://ppa.launchpad.net/chris-lea/node.js/ubuntu xenial Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: Failed to fetch http://ppa.launchpad.net/chris-lea/node.js/ubuntu/dists/xenial/main/binary-amd64/Packages  404  Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.

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

答え1

セキュリティ証明書の問題があるリポジトリを使用しています。リポジトリのメンテナーがこれを修正するまで、更新を完了できる唯一の方法は、そのリポジトリを無効にすることです。問題が 2 つだけであれば、大した問題ではなく、一時的な問題であるはずです。リポジトリのメンテナーには、リポジトリがセキュリティ チェックに失敗するたびに通知されるはずです。

答え2

キーは「curl -s」から取得できます。http://nsolid-deb.nodesource.com/gpgkey/NODESOURCE-NSOLID-GPG-SIGNING-KEY'

このエラーを修正するには、使用しているリポジトリのキーをインポートする必要があります。リポジトリのキーをインポートするには、次のコマンドを実行します。

curl -s http://nsolid-deb.nodesource.com/gpgkey/NODESOURCE-NSOLID-GPG-SIGNING-KEY | sudo apt-key add -

関連情報