Ubuntu팁

Ubuntu 18.04에서 apt update 실패

콩지니어 2019. 1. 10. 15:21

두가지 현상이 있었다.

1. Windows 10에서 WSL로 Ubuntu를 돌릴 때, Kaspersky가 이걸 막아버림.

이는 network setting - choose port 에서 다 지워버리를 임시책으로 쓰기로 했다. 다만, 이렇게 했을 때 보안에 어떤 불이익이 발생하게 되는지는 아직 모르겠다.


2. GPG error (...)  the public key is not available

이건 찾아보니 버그라고 하는데, 아래 방법으로 해결했다. (출처: https://github.com/Microsoft/WSL/issues/3286#issuecomment-402594992)

  1. use sudo apt update then will get something like The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 5523BAEEB01FA116
  2. Got the pubkey 5523BAEEB01FA116
  3. Use curl -sL "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x5523BAEEB01FA116" | sudo apt-key add Replace 0x5523BAEEB01FA116 with 0x<your pubkey in 2step>
  4. complete, you can run sudo apt udpate no error


Flag Counter