
apt-get 업데이트를 할 때마다 다음 오류가 계속 발생하고 해결책을 찾을 수 없었기 때문에 우분투 20.04에서 Skype를 완전히 제거했습니다.
Err:4 https://repo.skype.com/deb stable InRelease
The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 1F3045A5DF7587C3
Reading package lists... Done
W: GPG error: https://repo.skype.com/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 1F3045A5DF7587C3
E: The repository 'https://repo.skype.com/deb stable InRelease' is not signed.
그러나 공개 키, 모든 Skype 설치 및 Snap을 제거했음에도 불구하고 apt-get 업데이트 시 위 오류가 계속 발생합니다.
무슨 일이야?
답변1
해결됨:
sudo rm /etc/apt/sources.list.d/skype-stable.list
sudo rm /etc/apt/sources.list.d/skype-stable.save
답변2
1F3045A5DF7587C3
키는 더 이상 유효하지 않으며 명령을 사용하여 제거할 수 있습니다 apt-key del
.
1 단계:잘못된 키를 삭제합니다.
sudo apt-key del 1F3045A5DF7587C3
누군가 Skype를 실행하고 있지만 명령을 실행하는 동안 서명 확인 오류가 발생하는 경우 sudo apt update
아래 단계를 계속하십시오.
2 단계:유효한 키를 추가하세요.
curl https://repo.skype.com/data/SKYPE-GPG-KEY | sudo apt-key add -
3단계:아래 명령을 실행하십시오.
sudo apt update
sudo apt upgrade
이 오류는 지금 제거되어야 합니다!