朝霞的颜色多的不能再多了。有橘黄色桃红色朱红色葡萄紫,还有淡红色等等。我觉得大自然有一个五颜六色的彩笔盒,把天空当画板,给天空上色。
本文是《基于 WSL 搭建WordPress本地开发环境》专题的第 2 篇,共 2 篇:
- Windows10下Linux子系统(WSL)简介和安装
- WSL修改Ubuntu软件源和进行系统更新
使用 Ubuntu 系统的好处就是可以使用 “软件源”进行软件安装,即从指定的地址下载软件,因为默认的软件源是 Ubuntu 的官网地址,需要设置成国内镜像来提高速度。
我们先运行 Ubuntu 子系统,然后按照下面的步骤操作。
注:管理 Ubuntu 系统,是需要掌握一定的linux系统命令的,所以,如果你没有掌握这些命令,就不推荐大家继续看这个系列的好代码教程了,因为你可能无法完成操作。
设置系统语言为中文
如果你不懂英文或者习惯看中文,可以通过下面的操作修改系统语言为中文。
# 安装中文支持
sudo apt-get install -y language-pack-zh-hans
# 设置默认语言
sudo update-locale LANG=zh_CN.UTF-8
分别执行完上面的命令,关闭窗口,然后重新启动Ubuntu即可切换为中文。
更换软件源
1、切换 root 用户
输入命令,回车即可切换到 root 用户:
sudo -i
2、备份当前软件源
cp /etc/apt/sources.list /etc/apt/sources.list.old
3、编辑 “软件源” 管理文件
vim /etc/apt/sources.list
使用下面的阿里云软件源或网易软件源,两者任选一个,替换掉管理文件的所有内容,然后保存退出文件。
阿里云软件源:
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
网易软件源:
deb http://mirrors.163.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ bionic-backports main restricted universe multiverse
5、更新软件列表
sudo apt-get update
6、更新系统软件包
sudo apt-get upgrade
更新过程如果出现提示[Y/n],输入 y 回车即可继续。
到这里,我们已经更新Ubuntu到最新,下次课程我们将讲解如何配置lnmp环境。
本文WSL修改Ubuntu软件源和进行系统更新到此结束。胸有凌云志,无高不可攀。小编再次感谢大家对我们的支持!