ubuntu cut ali source

Step 1: Backup the original source files

cd /etc/apt/  

Then the following source file will be displayed. sources.list 
Enter the command sudo cp sources.list sources.list.bak 
is to back up sources.list to sources.list.bak

Step 2: Replace the source

Alibaba Cloud source files

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  
##测试版源  
deb http://mirrors.aliyun.com/ubuntu/ xenial-proposed main restricted universe multiverse  
# 源码  
deb-src http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse  
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiverse  
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiverse  
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse  
##测试版源  
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-proposed main restricted universe multiverse  
# Canonical 合作伙伴和附加  
deb http://archive.canonical.com/ubuntu/ xenial partner  
deb http://extras.ubuntu.com/ubuntu/ xenial main  

Replace and save sudo gedit sources.list to open the file and replace it with the Alibaba Cloud file

Step 3: Update Sources and Software

sudo apt-get update 更新源  
sudo apt-get upgrade 更新软件 



Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325117188&siteId=291194637
cut