Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
Tags
- mAP@.5
- 비디오미리보기
- C
- 딥러닝
- 타오툴킷
- 정처기
- 딥스트림
- 스프링
- yolov7
- C++
- 네트워크
- Python
- nfs mount
- tao_toolkit
- nouveau
- deepstream
- 리눅스
- SQLD
- Linux
- IOU
- 도커 컨테이너
- 알고리즘
- 주피터 노트북
- 도커
- dkms
- pyMySQL
- Spring
- 파이썬
- 백준
- docker
Archives
- Today
- Total
한 번만 더 해보자
[Linux] The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B7B3B788A8D3785C 본문
Linux
[Linux] The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B7B3B788A8D3785C
정 하임 2024. 1. 11. 22:00상황
apt update를 하려는데 아래와 같은 에러가 발생
에러코드
W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: <http://repo.mysql.com/apt/ubuntu> bionic InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B7B3B788A8D3785C
W: Failed to fetch <http://repo.mysql.com/apt/ubuntu/dists/bionic/InRelease> The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B7B3B788A8D3785C
W: Some index files failed to download. They have been ignored, or old ones used instead.
해결방안
키 업데이트하기
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B7B3B788A8D3785C
보통은 키 업데이트로 해결이 되는데 나는 해결이 안된다..
추가해결방안
키 삭제후 재등록
gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys B7B3B788A8D3785C
rm /usr/share/keyrings/mysql-apt-config.gpg
gpg --output /usr/share/keyrings/mysql-apt-config.gpg --export B7B3B788A8D3785C
위의 링크로 해결 가능!
반응형