欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ubuntu 18 apt-get 更换国内镜像源

程序员文章站 2022-07-15 17:16:25
...

首先以ubuntu 18 版本配置清华镜像源举例,ubuntu 其它版本或其它镜像源请阅读文章后面说明

ubuntu 18 版本配置清华镜像源

  1. Ubuntu 的软件源配置文件是 /etc/apt/sources.list。将系统自带的该文件做个备份
    sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
  2. /etc/apt/sources.list 文件替换为下面内容
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
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
  1. 更新软件源列表
    sudo apt-get update

ubuntu 其它版本配置

不同系统版本的配置不完全一样,以清华大学镜像源举例,进入下面网址查询对应版本
清华大学开源软件镜像站

国内其它镜像站:

相关标签: ubuntu linux apt