WSL 无法解析域名:
Could not resolve hostname github.com: Temporary failure in name resolution
解决方法一:
配置本地域名解析:
-
sudo vim /etc/hosts
-
添加如下配置: (172.65.251.78是
ping
成功的ip
)172.65.251.78 github.com
解决方法二:
-
Boot your distro.
-
cd ~/../../etc
-
Create wsl.conf, however you see fit.
sudo vim wsl.conf
,sudo touch wsl
.conf and edit it later, whatever. -
Add these lines to wsl.conf:
[network] generateResolvConf=false
-
exit
or in Windows cmdwsl --terminate [YourDistroName]
-
Boot your distro.
At this point, thanks to wsl.conf, run/resolvconf should no longer exist and will never be created again. -
cd ~/../../etc
-
sudo rm resolv.conf
sudo rm resolv.conf -
Create a new resolv.conf, however you see fit.
sudo vim resolv.conf
,sudo touch resolv.conf
and edit it later, whatever. -
Add this line to resolv.conf:
nameserver 8.8.8.8
replace 8.8.8.8 with your preferred functional nameserver.
-
exit
or in Windows cmdwsl --terminate [YourDistroName]
-
wsl --shutdown
just to be sure that you’ve definitely killed everything. - Boot your distro.
- Confirm that your resolv.conf changes are still in effect, or just ping a domain name and cry tears of joy after struggling to get this working for far too fucking long.
参考文献:
https://github.com/microsoft/WSL/issues/5256