首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >Ubuntu 更新软件镜像源

Ubuntu 更新软件镜像源

作者头像
白墨石
发布2021-01-12 10:06:09
发布2021-01-12 10:06:09
3.7K00
代码可运行
举报
文章被收录于专栏:生信情报站生信情报站
运行总次数:0
代码可运行

文章目录

1.打开设置
代码语言:javascript
代码运行次数:0
运行
复制
cd /etc/apt/
cp sources.list  sources.list.bak
vi  /etc/apt/sources.list
2.打开后粘贴最新镜像源

比如,清华的镜像,最新版:https://mirror.tuna.tsinghua.edu.cn/help/ubuntu/

选择自己的 Ubuntu 版本,复制下面的代码到 sources.list

代码语言:javascript
代码运行次数:0
运行
复制
# 默认注释了源码镜像以提高 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
3.最后更新本地源
代码语言:javascript
代码运行次数:0
运行
复制
apt update    # 更新本地 apt 源
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020/07/06 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 文章目录
    • 1.打开设置
    • 2.打开后粘贴最新镜像源
    • 3.最后更新本地源
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档