前言
如何在windows11中安装ubuntu,采用WSL方法。
一、WSL是什么?
开发人员可以在 Windows 计算机上同时访问 Windows 和 Linux 的强大功能。 通过适用于 Linux 的 Windows 子系统 (WSL),开发人员可以安装 Linux 发行版(例如 Ubuntu、OpenSUSE、Kali、Debian、Arch Linux 等),并直接在 Windows 上使用 Linux 应用程序、实用程序和 Bash 命令行工具,不用进行任何修改,也无需承担传统虚拟机或双启动设置的费用。。
二、安装步骤
1.确保电脑虚拟化开启
1.1控制面板->程序->启用或关闭 windows 功能,开启 Windows 虚拟化和 Linux 子系统(WSL2)以及Hyper-V
图1.1windows功能
1.2配置Hyper-V
家庭版windows11没有Hyper-V,需要配置Hyper-V。在桌面创建记事本命名为Hyper-V.txt,在记事本中复制以下内容:
pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del hyper-v.txt
Dism /online /enable-feature /featurename:Microsoft-Hyper-V-All /LimitAccess /ALL
将记事本命名为Hyper-V.cmd,并运行该脚本。运行完在图1.1中出现Hyper-V文件,勾选它。
2.系统安装
win11 使用 WSL2 安装 linux 子系统 ubuntu 出现错误:无法解析服务器的名称或地址。原本显示报错:ConnectionError: Couldn’t reach https://raw.githubusercontent.com/huggingfac
无法访问。
解决方法:
1、修改 本地 host 文件。
记事本打开 C:\Windows\System32\drivers\etc\hosts 文件,添加如下解析地址(4个中有一个好用就添加它)
然后照着博主的放在https://www.ipaddress.com这个网站中的查询框中输入:raw.githubusercontent.com
回车就能有下图中的网页,在里面找到相应的的ipv4地址:
这四个地址随便选一个即可(好用的):
185.199.108.133 raw.githubusercontent.com
185.199.109.133 raw.githubusercontent.com
185.199.110.133 raw.githubusercontent.com
185.199.111.133 raw.githubusercontent.com
2、刷新 DNS 解析缓存。
ifconfig /flushdns
3、再次运行查看或安装命令
查看可安装的 WSL
wsl --list --online
列出已安装版本
wsl -l -v
查看运行 WSL 状态
wsl --status
升级 WSL Linux kernel
wsl --update
wsl --install -d
wsl --install -d Ubuntu-20.04
4、首次启动新安装的 Linux 发行版时,将打开一个控制台窗口,
—————————————————————————————————
参考文章: 1) https://blog.csdn.net/qfyh_djh/article/details/137567491
2)https://blog.csdn.net/weixin_44293949/article/details/121863559