windows启动WSL安装linux子系统

通过命令启动wsl

打开powershell管理员
输入

# 开启linux子系统
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
#开启虚拟机平台
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart

在开启后需要重启一下

查看有哪些系统可以安装

wsl --list --online

安装linux

wsl --install -d Ubuntu-20.04

在这里插入图片描述

安装完成

上面进度条走完后会弹出这个,填上用户名就可以用了

windows启动WSL安装linux子系统_第1张图片

一些配置

初始化root密码

sudo passwd root

修改镜像源

进入/etc/apt目录下
备份source.list

cd /etc/apt
cp source.list source.list.bak

使用lsb_release -a 查看自己的版本号
windows启动WSL安装linux子系统_第2张图片
找到相应的镜像源

编辑source.list文件,gg然后dG清空整个文档,输入如下地址(阿里镜像)

deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse

更新镜像库

apt-get update

安装常用软件
安装make

apt-get install make

安装g++

apt-get install g++

安装gcc

apt-get install gcc

安装openSSL

sudo apt-get install libssl-dev

安装ares开发包

apt-get install libc-ares-dev libc-ares2

你可能感兴趣的:(Linux,linux,windows,ubuntu)