Ubuntu换源
参考:(102条消息) Ubuntu 20.04 Desktop 换源_虚竹镜荒的博客-CSDN博客_ubuntu desktop 源
VMware Workstation中Ubuntu 20.04安装vm-tools:
sudo apt installl open-vm-tools
sudo apt install open-vm-tools-desktop
对于较高版本的Linux虚拟机,不需要使用VMware Tools包挂载进行手动安装
一、国内常用的软件源
- 镜像源 仓库地址
- 阿里云镜像源 https://mirrors.aliyun.com/ubuntu/
- 清华镜像源 https://mirrors.tuna.tsinghua.edu.cn/ubuntu/
二、命令行换源
Ubuntu的软件源配置文件为 /etc/apt/sources.list
#备份文件
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bk
#编辑 sources.list 文件
sudo vim /etc/apt/sources.list
# 清华镜像
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
# 预发布软件源,不建议启用
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-proposed main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-proposed main restricted universe multiverse
# 阿里云镜像
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb-src 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-backports main restricted universe multiverse
上面的软件源修改完毕后更新系统
sudo apt update
sudo apt upgrade
三、桌面版修改软件源
在“软件与更新”界面中选择“下载自”下拉菜单中的“其他站点”。
然后点击“选择最佳服务器”,系统会自动测试下载的服务器,等待一段时间后,选择系统给出的镜像服务器,软件源修改完成。
四、docker下载和源配置
sudo apt update
sudo apt install docker.io
docker --version
需要将普通用户加入到 docker 用户组,并退出 shell 重新登录,即可不使用 sudo 来运行 docker 相关操作
sudo usermod -aG docker $USER
docker info
由于 docker 默认镜像仓库在海外,所以需要配置国内源来加快镜像拉取速度
修改 /etc/docker/daemon.json
(如果该文件不存在,则创建)
{
"registry-mirrors": [
"https://hub-mirror.c.163.com"
]
}
国内亲测可用的几个镜像源:
Docker 官方中国区:https://registry.docker-cn.com
网易:http://hub-mirror.c.163.com
中国科技大学:https://docker.mirrors.ustc.edu.cn
阿里云:https://y0qd3iq.mirror.aliyuncs.com
Ubuntu 20.04 官方 apt 源中就有 Docker,我们可以直接通过 apt 来安装,docker 用户组,并退出 shell 重新登录,即可不使用 sudo 来运行 docker 相关操作
参考:https://cloud.tencent.com/developer/article/1541011
参考:Ubuntu 20.04安装Docker - 知乎 (zhihu.com)
本文来自博客园,作者:O_fly_O,转载请注明原文链接:https://www.cnblogs.com/world-explorer/p/16999769.html