美文网首页
ubuntu 更新清华源

ubuntu 更新清华源

作者: ZoeyChow | 来源:发表于2019-10-22 17:27 被阅读0次

国内使用ubuntu时源的下载速度会很慢,所以更新成清华源是很有必要的。

备份

sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup

更新

使用下列网址,或者百度搜索“清华ubuntu镜像”也会找到

https://mirror.tuna.tsinghua.edu.cn/help/ubuntu/

根据自己的ubuntu版本来选择需要更换的版本


image.png

sudo vim /etc/apt/sources.list

复制上面的代码到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

end

相关文章

网友评论

      本文标题:ubuntu 更新清华源

      本文链接:https://www.haomeiwen.com/subject/gjxcvctx.html