本文以Ubuntu系统为例进行说明,其他系统类似,不同系统对源文件的修改可能不同
- 查看Ubuntu版本
lsb_release -a
主要是看Codename,不同版本系统代号不同,需要到源文件中修改成自己系统对应的代号
- 备份包含源的文件
cp /etc/apt/sources.list /etc/apt/sources.list.bak
- 修改源文件
sudo vi /etc/apt/sources.list
一般只要这一句就够了
deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse
# 注意须将xenial改成自己系统的Codename
以下内容可供参考
# 阿里云源
deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse
##proposed表示測試版源,不建议启用
#deb http://mirrors.aliy