apt-get 업데이트를 발행하는 방법은 무엇입니까?

apt-get 업데이트를 발행하는 방법은 무엇입니까?

명령을 실행한 후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

'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 -

관련 정보