在Windows Powershell 命令中执行ipconfig查看Windows WLAN网卡IP的网关地址 在Ubuntu命令行中执行以下命令 sudo touch /lib/systemd/network/wsl_external.network# 创建网络配置文件sudo vim /lib/systemd/network/wsl_external.network# 编辑该文件并添加以下内容[Match]Name=eth0[Network]Description=bridgeDHCP=falseA...
实测在 Windows11 23H2, WSL version 2.0.14.0, Ubuntu22.04 下有效 添加Hyper-V Virtual Switch 2. 通过.wslconfig设置 WSL2 网络模式为 bridged [wsl2]networkingMode=bridgedvmSwitch=WSLBridge# 改为第一步新建的交换机名称dhcp=falseipv6=truemacAddress=00:15:5d:13:71:52 3. 通过/lib/systemd/networ...
重新进入 WSL 后,再执行以下命令: systemctl restart systemd-networkd systemctl enable systemd-networkd systemctl restart systemd-resolved.service systemctl enable systemd-resolved.service 更多wsl.conf 配置项参考:https://learn.microsoft.com/zh-cn/windows/wsl/wsl-config#configuration-settings-for-...
[wsl2]networkingMode=bridgedvmSwitch=VETHipv6=true 粘贴以上内容到.wslconfig并保存 networkingMode指定网络模式为桥接 vmSwitch指定网卡为上面创建的虚拟网卡,注意名称一致 ipv6配置为可选,删除本行即禁用,也可改为false 对于Windows 10 以及 Windows 11 22H2 以前版本,将使用以下项目 https://github.com/dantmn...
首先需要从 Microsoft Store 里面下载最新的 Windows Subsystem for Linux。 然后在当前用户目录 %USERPROFILE% 下面创建一个配置文件 .wslconfig,按照如下配置方法设置网络,例如: 点击查看代码 [wsl2] networkingMode=bridged vmSwitch=WSLBridge ipv4=true
[wsl2]networkingMode=bridgedvmSwitch=WSLBridgeipv6=truememory=2GBswap=4GBlocalhostForwarding=true 重启电脑后生效 Miniconda 1,下载miniconda 2,sh miniconda安装包,然后一直enter就行,确认路径为/opt/miniconda 3,配置文件,vim /etc/profile,末尾添加export PATH=/opt/miniconda/bin:$PATH ...
创建一个名为.wslconfig的文件(如果该文件已存在,则直接编辑)。 在.wslconfig文件中添加以下配置: ini [wsl2] networkingMode=bridged vmSwitch=YourVirtualSwitchName 请将YourVirtualSwitchName替换为你在步骤一中创建的虚拟交换机的名称。 3. 设置WSL2实例的静态IP 在WSL2实例中,打开终端。 编辑/etc/netplan...
Windows 11 22H2 WSL Version 2.0 Are you using WSL 1 or WSL 2? WSL 2 WSL 1 Kernel Version No response Distro Version No response Other Software No response Repro Steps [wsl2] networkingMode=bridged vmSwitch=WSLBridge I used this configuration and then created an Ubuntu for WSL2 and insta...
github-actionsbotmentioned this issueNov 17, 2023 WSL2 http.Server not accessible from Windows11 [experimental] networkingMode=mirrored#10785 Closed Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment...
wget https://download.docker.com/linux/centos/docker-ce.repo -O /etc/yum.repos.d/docker-ce.repo 2、安装Docker引擎,docker-ce yum install -y docker-ce docker-ce-cli containerd.io 3、启动和开机自启Docker systemctl start docker && systemctl enable docker ...