您的位置:

apt-get 国内源详解

一、apt-get 国内源优势

1、加快软件安装速度

使用国内源下载软件包可大大提高软件安装速度,从而缩短等待时间。

2、降低安装软件失败率

使用海外源安装软件时,由于网络原因可能会出现安装失败的情况。而国内源在兼容性、稳定性等方面优于海外源,能够减少安装失败的概率。

3、保证系统安全性

国内源由国内公司维护,相较于海外源更有保障,能够保证从源下载的软件包是安全可靠的。

二、添加国内源方法

1、备份原源

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

2、打开源设置文件

vi /etc/apt/sources.list

3、将原文件的内容清空,写入以下内容

# 默认注释了源码镜像以提高 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.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb https://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb https://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse

4、保存退出

按下 Esc,输入 :wq,然后回车即可保存并退出。

5、更新源列表

sudo apt-get update

三、在Ubuntu中使用aliyun代替默认的mirrors.tuna.tsinghua.edu.cn

1、备份原源

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

2、打开源设置文件

sudo vim /etc/apt/sources.list

3、将默认的mirrors.tuna.tsinghua.edu.cn替换为aliyun

deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse

4、保存退出

按下 Esc,输入 :wq,然后回车即可保存并退出。

5、更新源列表

sudo apt-get update

四、总结

本文详细阐述了apt-get 国内源的优势、添加国内源的方法以及在Ubuntu中使用aliyun代替默认的mirrors.tuna.tsinghua.edu.cn。通过使用国内源,我们可以加速软件下载,降低安装失败率,保证系统安全性。