当前位置:网站首页>WSL 2 will not be installed yet? It's enough to read this article
WSL 2 will not be installed yet? It's enough to read this article
2022-07-02 12:06:00 【raelum】
Catalog
One 、 Prerequisite
about 64 Bit system , If you want to install WSL 2, Need to meet OS Internal version ≥18362.
Press down win + R
, Then input winver
Check it out. OS Build of :
It can be seen that our version number meets the requirements , So you can install .
Two 、 Enable for Linux Of Windows Subsystem
With Administrator status open Powershell, Then enter the following command :
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
After the execution Don't turn it off yet window .
3、 ... and 、 Enable virtual machine
continue stay Powershell Type the command in the window :
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
Close the window after execution , restart Computer .
Four 、 to update Linux kernel
First download Apply to x64 The computer WSL 2 Linux Kernel update package , Then double click to install .
If you are prompted to provide elevated permissions , choice “ yes ” To approve this installation .
5、 ... and 、 take WSL 2 Set as default version
With Administrators Identity open Powershell, Then enter the following command :
wsl --set-default-version 2
6、 ... and 、 install Linux Distribution version ——Ubuntu
in fact Microsoft Store You can complete the installation in , But here we choose to install it manually , Because the manual installation has strong controllability .
some Linux Distribution and its download address :
Linux Distribution version | Download |
---|---|
Ubuntu | https://aka.ms/wslubuntu |
Ubuntu 20.04 | https://aka.ms/wslubuntu2004 |
Ubuntu 18.04 | https://aka.ms/wsl-ubuntu-1804 |
Debian GNU/Linux | https://aka.ms/wsl-debian-gnulinux |
Kali Linux | https://aka.ms/wsl-kali-linux-new |
Fedora Remix for WSL | https://github.com/WhitewaterFoundry/WSLFedoraRemix/releases/ |
Here we have Ubuntu 20.04 For example , When the download is complete , You'll get one called CanonicalGroupLimited.UbuntuonWindows_2004.2021.825.0.AppxBundle
The file of . As can be seen from the suffix , It is associated with the Microsoft Store .
WSL 2 The essence of is virtual machine , The relevant files will be stored in the virtual disk ( Suffix named .vhdx
), The disk initially has more than one G, If installed later docker Wait for the software C The dish is unbearable , So we need to install it in other disks ( for example D disc ).
Double click to download the good AppxBundle
File to install , It will be installed by default to C disc . Here's the picture , Click Install directly :

After installation , A pop-up window will pop up for us to set the user name and password ( Note that the password will not echo ), Close the window after setting .
The next step is to migrate , We use Administrators Identity open Powershell window , Then input
wsl -l --all -v
To view the installed distributions .
Note that the name of our distribution is Ubuntu
instead of Ubuntu-20.04
.
Suppose we want to move to D disc , First, release the version as .tar
The format is exported to D disc :
wsl --export Ubuntu d:\wsl-ubuntu.tar
Then log out of the current release :
wsl --unregister Ubuntu
Then re import and install WSL 2 stay D:\Ubuntu
Next :
wsl --import Ubuntu d:\Ubuntu d:\wsl-ubuntu.tar --version 2
Besides , You also need to set the user name of the default login user to the original user name :
ubuntu config --default-user raelum
Finally delete .tar
file
del d:\wsl-ubuntu.tar
7、 ... and 、 install Windows Terminal
stay Microsoft Store Search inside Windows Terminal And install :

7.1 take Ubuntu The default running environment is ( Optional )
take Ubuntu Setting as the default running environment means , When we start Windows Terminal Or click “+” No. when creating a new window , A new one will be created automatically Ubuntu The window of :

Set by , First click the inverted triangle , Select settings from the pop-up drop-down list :

Click the gear button again in the pop-up window to open settings.json
file :

We are profiles
Of list
Find below Ubuntu Corresponding guid
:

then defaultProfile
hinder guid
Replace with this guid
that will do :

7.2 Set the startup directory to user HOME Catalog
WSL 2 The default startup directory is Windows User root :C:\Users\<Username>
, instead of Linux User's in the system HOME Catalog , So we need to be able to settings.json
Make a change in .
in fact , Only need profiles
Of list
Find below Ubuntu, Then add a line :
"startingDirectory": "//wsl$/<Ubuntu_name>/home/<username>"
that will do , among <Ubuntu_name>
Is your Ubuntu The name of the distribution , The last save settings.json
Even if the setting is completed .
边栏推荐
- Codeforces 771-div2 C (trouble, permutation is not very good)
- Data analysis - Matplotlib sample code
- K-Means Clustering Visualization in R: Step By Step Guide
- b格高且好看的代码片段分享图片生成
- xss-labs-master靶场环境搭建与1-6关解题思路
- 进入前六!博云在中国云管理软件市场销量排行持续上升
- HR wonderful dividing line
- Test shift left and right
- YYGH-BUG-04
- BEAUTIFUL GGPLOT VENN DIAGRAM WITH R
猜你喜欢
How to Visualize Missing Data in R using a Heatmap
自然语言处理系列(二)——使用RNN搭建字符级语言模型
How to Easily Create Barplots with Error Bars in R
ES集群中节点与分片的区别
Power Spectral Density Estimates Using FFT---MATLAB
[visual studio 2019] create and import cmake project
From scratch, develop a web office suite (3): mouse events
(C语言)输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
H5, add a mask layer to the page, which is similar to clicking the upper right corner to open it in the browser
H5,为页面添加遮罩层,实现类似于点击右上角在浏览器中打开
随机推荐
Cmake cross compilation
(C语言)3个小代码:1+2+3+···+100=?和判断一个年份是闰年还是平年?和计算圆的周长和面积?
Jenkins voucher management
Flesh-dect (media 2021) -- a viewpoint of material decomposition
小程序链接生成
Leetcode922 sort array by parity II
Easyexcel and Lombok annotations and commonly used swagger annotations
测试左移和右移
Natural language processing series (III) -- LSTM
HOW TO EASILY CREATE BARPLOTS WITH ERROR BARS IN R
Log4j2
How to Add P-Values onto Horizontal GGPLOTS
YYGH-BUG-05
Jenkins用户权限管理
【C语言】杨辉三角,自定义三角的行数
Leetcode739 每日温度
初始JDBC 编程
Pytorch builds LSTM to realize clothing classification (fashionmnist)
ES集群中节点与分片的区别
输入一个三位的数字,输出它的个位数,十位数、百位数。