wsl:错误:0xffffffff 错误代码:CreateInstance/CreateVm/ConfigureNetworking/HNS/0xffffffff wsl:无法配置网络(networkingMode Nat)

问题描述 投票:0回答:1

我遇到此类错误,我需要一些帮助

wsl: Error: 0xffffffff
Error code: CreateInstance/CreateVm/ConfigureNetworking/HNS/0xffffffff
wsl: Failed to configure network (networkingMode Nat), falling back to no networking.
jefta@DESKTOP-JPSPBJP:~$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
curl: (6) Could not resolve host: raw.githubusercontent.com
jefta@DESKTOP-JPSPBJP:~$

我只是在我的Windows中安装了wsl和ubuntu,当我想安装自制程序时,我收到了这个错误,并且我无法安装任何东西

我必须更新 /etc/wsl.conf 并重新启动我的 WSL 实例

[网络] 生成解析会议 = true

我尝试过这个: netsh winsock 重置

我也尝试过这个: 须藤 rm /etc/resolv.conf 须藤纳米 /etc/resolv.conf 名称服务器 8.8.8.8 名称服务器 8.8.4.4

ubuntu windows-subsystem-for-linux
1个回答
0
投票

我的电脑上也出现了同样的错误,但我找到了一个简单的解决方案:

可能有一个进程正在使用您的端口 53,例如 DNS 代理。要终止此进程,请以管理员身份在 PowerShell 中运行以下命令:

  1. netstat -aon | findstr 53
  2. taskkill /f /pid [PID of processs listening on port 53]
  3. wsl --shutdown

之后,重新打开你的 Ubuntu。

© www.soinside.com 2019 - 2024. All rights reserved.