1.windows11开启wsl2并安装Ubuntu 20.04

本文介绍了如何在Windows上开启和安装WSL2,并详细讲解了如何设置Ubuntu20.04。此外,针对每次重启后WSL2 IP地址变更的问题,提供了一种通过创建bat脚本来固定IP的解决方案,确保了访问稳定性。同时,这种方法也可用于解决WSL2中服务自启动的问题,如MySQL。
摘要由CSDN通过智能技术生成

1. 开启wsl2

  1. 打开控制面板,选择程序 —— 启用或关闭Windows功能,勾选 适用于Linux的Windows子系统还有虚拟机平台选项

    image-20211027161123638

image-20211027161600841

  1. 设置wsl版本为wsl2

    使用管理员身份,打开cmd(命令提示符),输入以下命令

    wsl --set-default-version 2
    

    image-20211027161833029

    更新wsl

    wsl --update
    

    image-20211027162331522

2. 安装Ubuntu 20.04

  1. 查看可安装的Linux版本

    wsl --list --online
    

    image-20211027162704316

    这里选择安装Ubuntu 20.04

    wsl --install -d Ubuntu-20.04
    

    image-20211027180618221

    在弹出的页面中输入用户名及密码

    image-20211027180647262

    image-20211027180659721

    至此wsl2及对应的Ubuntu 20.04就安装完毕了

3. 解决wsl2 ip地址每次变更问题

每一次重启电脑,或者重启 wsl 服务后,子系统ip地址都会变更,使用起来比较麻烦,后来看到网上有人发布的解决思路比较优雅

地址为:https://github.com/microsoft/WSL/issues/4210#issuecomment-648570493

I give you a new idea: Instead of changing the IP, add a designated IP.

In Windows 10, run CMD or Powershell with administrator privilege, and then execute the following two commands:

:: Add an IP address in Ubuntu, 192.168.50.16, named eth0:1
wsl -d Ubuntu -u root ip addr add 192.168.50.16/24 broadcast 192.168.50.255 dev eth0 label eth0:1

:: Add an IP address in Win10, 192.168.50.88
netsh interface ip add address "vEthernet (WSL)" 192.168.50.88 255.255.255.0

In the future, you will use 192.168.50.16 when you access Ubuntu, and 192.168.50.88 when you access Win10.
You can save the above two lines of commands as a .bat file, and then put it into the boot area, and let it execute automatically every time.

翻译如下:

我给你一个新的想法: 与其改变 IP,不如增加一个指定的 IP。

在 Windows 10中,使用管理员权限运行 CMD 或 Powershell,然后执行以下两个命令:

在 Ubuntu 中添加一个 IP 地址,192.168.50.16,命名为 eth0:1

wsl -d Ubuntu -u root ip addr add 192.168.50.16/24 broadcast 192.168.50.255 dev eth0 label eth0:1

在 Win10中添加 IP 地址,192.168.50.88

netsh interface ip add address "vEthernet (WSL)" 192.168.50.88 255.255.255.0

在未来,当你访问 Ubuntu 时,你将使用192.168.50.16,当你访问 Win10时,你将使用192.168.50.88。

可以将上面两行命令保存为。然后把它放到启动区域,让它每次都自动执行。

具体操作方式:

创建一个bat脚本文件

作用为在Windows中添加一个ip为 172.23.220.20 的地址,然后在Ubuntu中添加一个ip为 172.23.220.10 的地址

netsh interface ip add address "vEthernet (WSL)" 172.23.220.20 255.255.255.0
wsl -d Ubuntu-20.04 -u root ip addr add 172.23.220.10/24 broadcast 172.23.220.255 dev eth0 label eth0:1

然后开机后以管理员方式运行该脚本即可

同样,也可以使用该方式解决wsl2中子系统无法自启服务的问题,如想要启动mysql,只需要增加一行命令即可

wsl -d Ubuntu-20.04 -u root service mysql start
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值