적절한 업데이트를 원할 때 GPG 오류가 발생합니다.

적절한 업데이트를 원할 때 GPG 오류가 발생합니다.

방금 Kali NetHunter를 설치해서 간단한 조작을 하려고 하는데 apt update공개키가 누락된 것 같습니다

root@kali:~# apt-get update
 0% [Waiting for headers] [Connected to packages.microsoft.com (13.8Get:2 https://packages.microsoft.com/repos/microsoft-debian-stretch-prod stretch InRelease [3232 B]
 Hit:1 http://kali.download/kali kali-rolling InRelease
 Err:2 https://packages.microsoft.com/repos/microsoft-debian-stretch-prod stretch InRelease
   The following signatures couldn't be verified because the public key is not available: NO_PUBKEY EB3E94ADBE1229CF
 Reading package lists... Done
 W: GPG error: https://packages.microsoft.com/repos/microsoft-debian-stretch-prod stretch InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY EB3E94ADBE1229CF
 E: The repository 'https://packages.microsoft.com/repos/microsoft-debian-stretch-prod stretch InRelease' is not signed.
 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.

나는 노력했다

curl -s https://packages.microsoft.com/repos/microsoft-debian-stretch-prod/dists/stretch/Release.gpg | apt-key add -

그리고

wget --no-check-certificate https://packages.microsoft.com/repos/microsoft-debian-stretch-prod/dists/stretch/Release.gpg | apt-key add -

결과 gpg: no valid OpenPGP data found는 양측 모두에게

답변1

Microsoft에서 키 로드

curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -

답변2

내가 찾은 해결책은 삭제 /etc/apt/sources.list.d/microsoft.list하고 kali 저장소가 주석 처리 해제되어 있고 기본 파일 내부에 있는지 확인하는 것이었습니다./etc/apt/sources.list

답변3

  1. cd /etc/apt/sources.list.d
  2. ls(microsoft.sources.list.d 표시)
  3. cd
  4. rm /etc/apt/sources.list.d/microsoft.sources.list.d

이제 업데이트를 시도할 때 메시지가 제거되었습니다. 그러나 이 작업을 처음 접했기 때문에 이 작업을 올바르게 수행하고 있는지 모르겠습니다.

답변4

라즈베리파이도 마찬가지입니다. 소스 파일에 주석을 달고 apt update다시 실행하면 됩니다.

# cat /etc/apt/sources.list.d/vscode.list
### THIS FILE IS AUTOMATICALLY CONFIGURED ###
# You may comment out this entry, but any other modifications may be lost.
# deb [arch=amd64,arm64,armhf] http://packages.microsoft.com/repos/code stable main

관련 정보