ubuntu 更换国内镜像源

备份源文件

cp /etc/apt/sources.list /etc/apt/sources.list.bak

查询镜像源

原则对应的版本进行安装

清华源

Index of /ubuntu/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror

中科大源

Index of /ubuntu-releases/ (ustc.edu.cn)

网易镜像源

Index of /ubuntu-releases/

阿里云镜像源

ubuntu-releases安装包下载_开源镜像站-阿里云 (aliyun.com)

编辑替换镜像源

这里以阿里云为例

sed -i "s#http://archive.ubuntu.com/ubuntu/#http://mirrors.aliyun.com/ubuntu-releases/20.04/#g" /etc/apt/sources.list

查看替换好的源文件

cat sources.list
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://archive.ubuntu.com/ubuntu/ jammy main restricted
# deb-src http://archive.ubuntu.com/ubuntu/ jammy main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://archive.ubuntu.com/ubuntu/ jammy-updates main restricted
# deb-src http://archive.ubuntu.com/ubuntu/ jammy-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://archive.ubuntu.com/ubuntu/ jammy universe
# deb-src http://archive.ubuntu.com/ubuntu/ jammy universe
deb http://archive.ubuntu.com/ubuntu/ jammy-updates universe
# deb-src http://archive.ubuntu.com/ubuntu/ jammy-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://archive.ubuntu.com/ubuntu/ jammy multiverse
# deb-src http://archive.ubuntu.com/ubuntu/ jammy multiverse
deb http://archive.ubuntu.com/ubuntu/ jammy-updates multiverse
# deb-src http://archive.ubuntu.com/ubuntu/ jammy-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://archive.ubuntu.com/ubuntu/ jammy-backports main restricted universe multiverse
# deb-src http://archive.ubuntu.com/ubuntu/ jammy-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu/ jammy-security main restricted
# deb-src http://security.ubuntu.com/ubuntu/ jammy-security main restricted
deb http://security.ubuntu.com/ubuntu/ jammy-security universe
# deb-src http://security.ubuntu.com/ubuntu/ jammy-security universe
deb http://security.ubuntu.com/ubuntu/ jammy-security multiverse
# deb-src http://security.ubuntu.com/ubuntu/ jammy-security multiverse
root@da9676fe8449:/etc/apt# sed -i "s/http://archive.ubuntu.com/ubuntu//http://mirrors.ustc.edu.cn/ubuntu-releases/20.04//g" /etc/apt/sources.list;
sed: -e expression #1, char 10: unknown option to `s'
root@da9676fe8449:/etc/apt# sed -i "s#http://archive.ubuntu.com/ubuntu/#http://mirrors.aliyun.com/ubuntu-releases/20.04/#g" /etc/apt/sources.list
root@da9676fe8449:/etc/apt# cat sources.list
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://mirrors.aliyun.com/ubuntu-releases/20.04/ jammy main restricted
# deb-src http://mirrors.aliyun.com/ubuntu-releases/20.04/ jammy main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://mirrors.aliyun.com/ubuntu-releases/20.04/ jammy-updates main restricted
# deb-src http://mirrors.aliyun.com/ubuntu-releases/20.04/ jammy-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://mirrors.aliyun.com/ubuntu-releases/20.04/ jammy universe
# deb-src http://mirrors.aliyun.com/ubuntu-releases/20.04/ jammy universe
deb http://mirrors.aliyun.com/ubuntu-releases/20.04/ jammy-updates universe
# deb-src http://mirrors.aliyun.com/ubuntu-releases/20.04/ jammy-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://mirrors.aliyun.com/ubuntu-releases/20.04/ jammy multiverse
# deb-src http://mirrors.aliyun.com/ubuntu-releases/20.04/ jammy multiverse
deb http://mirrors.aliyun.com/ubuntu-releases/20.04/ jammy-updates multiverse
# deb-src http://mirrors.aliyun.com/ubuntu-releases/20.04/ jammy-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://mirrors.aliyun.com/ubuntu-releases/20.04/ jammy-backports main restricted universe multiverse
# deb-src http://mirrors.aliyun.com/ubuntu-releases/20.04/ jammy-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu/ jammy-security main restricted
# deb-src http://security.ubuntu.com/ubuntu/ jammy-security main restricted
deb http://security.ubuntu.com/ubuntu/ jammy-security universe
# deb-src http://security.ubuntu.com/ubuntu/ jammy-security universe
deb http://security.ubuntu.com/ubuntu/ jammy-security multiverse
# deb-src http://security.ubuntu.com/ubuntu/ jammy-security multiverse

这样镜像源就更换成功了!

最后,更新软件源

apt-get update

相关推荐

  1. ubuntu 更换国内镜像

    2024-03-13 11:30:04       21 阅读
  2. ubuntu 更换国内镜像

    2024-03-13 11:30:04       38 阅读
  3. 【技能---ubuntu20.04更换国内镜像

    2024-03-13 11:30:04       34 阅读
  4. Ubuntu系统更换清华大学镜像

    2024-03-13 11:30:04       42 阅读
  5. 国内镜像拉取Ubuntu,并实现网络配置

    2024-03-13 11:30:04       17 阅读

最近更新

  1. TCP协议是安全的吗?

    2024-03-13 11:30:04       18 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-03-13 11:30:04       19 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-03-13 11:30:04       18 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-03-13 11:30:04       20 阅读

热门阅读

  1. [element-ui] el-table组件滚动条的宽度设置

    2024-03-13 11:30:04       19 阅读
  2. 刨析目前市面上各注册中心产品的优劣势

    2024-03-13 11:30:04       17 阅读
  3. k8s Helm3详解 (部署,自定义,仓库,)

    2024-03-13 11:30:04       17 阅读
  4. vue3+elementPlus项目支持设置默认附件

    2024-03-13 11:30:04       18 阅读
  5. Kotlin Retrofit 网络请求

    2024-03-13 11:30:04       19 阅读
  6. Unity 地图数据生成

    2024-03-13 11:30:04       20 阅读
  7. Spring Boot- Validation

    2024-03-13 11:30:04       16 阅读
  8. LeetCode题练习与总结:搜索旋转排序数组

    2024-03-13 11:30:04       17 阅读
  9. 【leetcode热题】反转字符串中的单词

    2024-03-13 11:30:04       21 阅读
  10. 焦点调制网络

    2024-03-13 11:30:04       17 阅读
  11. 蓝桥杯历年真题省赛之 2016年 第七届 生日蜡烛

    2024-03-13 11:30:04       18 阅读