Ubuntu apt更换国内源
Ubuntu apt默认的下载源是
cn.archive.ubuntu.com/ubuntu/
这是一个国外的网站,下载速度比较慢,我们将下载源更换为国内镜像站,提高下载速度和连接的稳定性。
apt下载源的配置文件是
/etc/apt/sources.list
使用命令
cat /etc/apt/sources.list
可以看到其中的内容。
欲更换下载源,替换该文件中的默认源为国内源即可。笔者采用的是清华tuna源。
为保险起见,修改文件前,先备份一下文件
cp /etc/apt/sources.list /etc/apt/sources_bak.list
然后
sudo gedit /etc/apt/sources.list
或者
sudo vim /etc/apt/sources.list
将文件内容替换为(以清华源ipv6镜像站为例,其他国内镜像站类似)
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted universe multiverse
然后更新一下源
sudo apt-get update
可以发现命令输出中的下载源已经变成了清华tuna源mirrors.tuna.tsinghua.edu.cn/ubuntu/
之后用apt-get install下载软件就是使用国内的清华源了。