ubuntu 에서 sudo apt-get update 오류

소프트웨어
0 투표
ubuntu 에서  sudo apt-get update 오류

Reading package lists... Done Building dependency tree Reading state information... Done All packages are up to date. W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://packages.cloud.google.com/apt google-cloud-ops-agent-focal-all InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B53XXXXX05 W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://packages.cloud.google.com/apt google-compute-engine-focal-stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B53XXXXX05  W: Failed to fetch https://packages.cloud.google.com/apt/dists/google-cloud-ops-agent-focal-all/InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B53XXXXX05  W: Failed to fetch http://packages.cloud.google.com/apt/dists/google-compute-engine-focal-stable/InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B53XXXXX05  W: Some index files failed to download. They have been ignored, or old ones used instead.

1 답변

0 투표

sudo apt-get update 명령어 실행 중에 발생한 이 오류는 Ubuntu 시스템이 Google Cloud의 APT 리포지토리에 대한 공개 키(public key)를 찾지 못했기 때문에 발생합니다. APT 리포지토리의 패키지는 GPG 키를 사용하여 서명되며, 이러한 키는 패키지의 무결성을 확인하는 데 사용됩니다. 이 문제를 해결하기 위해서는 누락된 GPG 키를 시스템에 추가해야 합니다.

해결 방법은 다음과 같습니다:

  1. 공개 키 추가: 누락된 GPG 키 (이 경우 B53XXXXX05)를 시스템의 APT 키 링에 추가합니다. 이를 위해 다음 명령을 실행합니다:

    
    
    
    sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B53XXXXX05

  2. APT 업데이트 재실행: 공개 키를 추가한 후, sudo apt-get update를 다시 실행하여 리포지토리 정보를 업데이트합니다.

  3. 시스템 업데이트 확인: 오류 메시지가 더 이상 나타나지 않는지 확인합니다.

추가 조치 사항

  • 키 서버 접근 확인: 때때로 네트워크 문제로 인해 keyserver.ubuntu.com에 접근할 수 없는 경우가 있습니다. 이 경우 다른 키 서버를 시도할 수 있습니다.
  • 리포지토리 확인: /etc/apt/sources.list 파일과 /etc/apt/sources.list.d/ 디렉토리를 검토하여 잘못된 또는 오래된 리포지토리가 없는지 확인하세요.

이러한 단계를 통해 GPG 키 오류를 해결하고 패키지 관리자를 정상적으로 사용할 수 있어야 합니다.

구로역 맛집 시흥동 맛집
이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.
add
...