Ubuntu更换下载源
·
由于种种原因,在使用apt-get
命令的时候总会出现各种各样的问题,比如说下载速度慢,或者出现 W: Failed to fetch http://cn.archive.ubuntu.com/ubuntu/dists/precise/InRelease
情况。
在国内有着不少的镜像提供,包括清华大学、阿里云等
在这里推荐使用清华大学提供的镜像。
1 查看镜像链接
ubuntu | 镜像站使用帮助 | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror
根据不同版本的Ubuntu系统,用不同的链接。
2 修改源(Sources.list)
在终端输入:
sudo gedit /etc/apt/sources.list
注意,在修改该文件前,需要对它进行备份,以便在后面出现问题的时候能够还原回去。
将这个文件中的所有内容删掉,替换为上述内容,保存并退出。
3 更新
在终端输入如下命令
sudo apt-get update
sudo apt-get upgrade
如果运行结果正常,即说明换源成功了,就可以愉快地享受高速的下载。
~$ sudo apt-get update
Hit:1 https://mirrors.tuna.tsinghua.edu.cn/ubuntu focal InRelease
Hit:2 https://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates InRelease
Hit:3 https://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-backports InRelease
Hit:4 https://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-security InRelease
Reading package lists... Done
~$ sudo apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
The following packages have been kept back:
linux-generic-hwe-20.04 linux-headers-generic-hwe-20.04
linux-image-generic-hwe-20.04
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
更多推荐
已为社区贡献1条内容
所有评论(0)