두가지 현상이 있었다.
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)
- use
sudo apt update
then will get something likeThe following signatures couldn't be verified because the public key is not available: NO_PUBKEY 5523BAEEB01FA116
- Got the pubkey
5523BAEEB01FA116
- 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> - complete, you can run
sudo apt udpate
no error
'Ubuntu팁' 카테고리의 다른 글
CloudCompare Ubuntu에서 PCD파일을 읽지 못할 때 (0) | 2018.09.18 |
---|---|
[Ubuntu]broadcom 무선랜 사용불가시 드라이버 설치 (1) | 2018.09.14 |
Ubuntu exfat enable (0) | 2017.04.10 |
[ffmpeg]ogv파일 변환하기 (0) | 2017.03.03 |