教你如何将WSL系统更换国内源?+固定路径+国内镜像源+详细教程

简介: 教你如何将WSL系统更换国内源?+固定路径+国内镜像源+详细教程

1.找到wsl镜像源

首先,我们找到自己的wsl镜像源所在的地方,在cmd中输入\wsl$
在这里插入图片描述
按enter可以看到自己的wsl在这里了
在这里插入图片描述
如果不想以后难找,可以通过给一个网络映射添加网络位置,这样就可以直接进入啦
在这里插入图片描述
完成之后就在网络位置可以看见快捷进入的文件夹了
在这里插入图片描述
打开文件夹,进入etc/apt文件夹,可以看见sources.list这一个文件,里面就是WSL-Ubuntu默认的apt源是国外的源。
在这里插入图片描述

2.替换镜像源

以下附各类国内镜像源:
阿里云:

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

中科大:

deb https://mirrors.ustc.edu.cn/ubuntu/ bionic main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ bionic main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ bionic-security main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ bionic-security main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse

清华:

deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse
2.1 可以直接用记事本打开

直接将国内镜像ctrl+c、ctrl+v放入到sources.list里面
在这里插入图片描述

2.2 通过sudo进行修改

首先cd到镜像源目录下,为了确保 防止出现错误,用cp进行备份
在这里插入图片描述
使用sudo管理员权限,使用 vim 进行修改:
在这里插入图片描述
在这里插入图片描述
先不要按i、a、o进入编辑模式,如果按了可以通过esc取消。
我们先通过按ggdG这几个字母将里面的内容全部删除,

注:通过按下gg后发现光标移动到文件首行了。其中,gg为跳转到文件首行;dG为删除光标所在行以及其下所有行的内容。d为删除,G为跳转到文件末尾行;

在这里插入图片描述
然后按i、a、o将镜像源复制进去就行啦。
最后按esc,再按下:wq!就可以退出啦
在这里插入图片描述

3.更新镜像源列表

一次输入以下命令就可以更新啦

sudo apt-get update
sudo apt-get upgrade

在这里插入图片描述
我的因为更新过了,所以很快就结束了,没有装过的,可能会等几分钟,耐心等待就可以了。

相关文章
|
6月前
|
Ubuntu
百度搜索:蓝易云【如何将Ubuntu软件源切换到国内源?】
现在,你已经成功将Ubuntu软件源切换到国内源,将能够享受更快的下载速度和更稳定的软件包更新。
262 6
|
PyTorch 算法框架/工具
更换Anaconda的下载源为国内源的办法
更换Anaconda的下载源为国内源的办法
2785 0
|
Windows Python
Windows下pip设置国内源阿里云镜像加速
Windows下pip设置国内源阿里云镜像加速
4369 0
Windows下pip设置国内源阿里云镜像加速
|
3月前
|
TensorFlow 算法框架/工具
Pip命令更换国内源
【8月更文挑战第7天】Pip命令更换国内源。
256 3
|
Ubuntu PHP 开发工具
ubuntu 使用命令行更换国内源
ubuntu 使用命令行更换国内源
1000 35
|
6月前
|
Ubuntu
Ubuntu系统配置国内源教程 - 蓝易云
以上就是在Ubuntu系统中配置国内源的步骤。
441 0
|
Linux Windows Python
超简单更换PIP国内下载源
超简单更换PIP国内下载源
1009 0
|
Ubuntu
Ubutun系统更换为国内源和EPICS的下载与安装
主要是对Ubutun更换国内源和EPICS的安装的详细步骤进行介绍。
174 0
|
Ubuntu
ubuntu16.0更改国内阿里源,速度起飞,亲测可用
sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup #备份当前也就是默认官方的源列表
1971 0