问题
在使用 sudo apt update
时报:
Err:1 http://archive.ubuntu.com/ubuntu focal InRelease
Temporary failure resolving 'archive.ubuntu.com'
解决
1. 关闭自动生成网络配置
username@hostname:/etc$ cat /etc/wsl.conf
[network]
generateResolvConf = false
2. 写入DNS解析配置
sudo sh -c "echo 'nameserver 4.2.2.2' > /etc/resolv.conf"
保存退出即可。