解决Ubuntu下载速度或更新速度缓慢问题

步骤:

1、备份原来的源文件

2、新建一个sources.list文件

3、更新apt软件源

4、修改损坏的依赖包,卸载出错的包,重新下载新的正确的版本

5、更新


Ubuntu 系统自带的源文件,都是国外的源网址,在国内下载安装升级源或者依赖的时候,都比较慢,更换国内的源地址,轻松搞定此问题。

1、备份原来的源文件

sudo mv /etc/apt/sources.list sources.list_backup

2、新建一个sources.list文件

sudo gedit /etc/apt/sources.list

(这一步里,网上很多其他教程都用vim,但一些新装的ubuntu里没有vim,经过一些错误操作后导致vim安装出错使用不了,所以这里用自带的gedit就不会打不开了。vim安装报错解决可见我的另一帖)

4、打开镜像源 阿里云镜像源链接 ;

阿里云镜像源链接

5、找到 Ubuntu 对应版本的镜像;

3、在打开的sources.list文件里输入对应的配置信息,然后点右上的“保存”,并退出。下面的示例为ubuntu 20.04版本

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

# deb https://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
# deb-src https://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse

4、更新apt软件源

sudo apt-get update

5、修改损坏的依赖包,卸载出错的包,重新下载新的正确的版本

sudo apt-get -f install

6、更新

sudo apt-get upgrade


我之前更新速度是5kb左右每秒,按上述操作换完镜像源后速度上升至正常的15mb左右每秒了,你也试试吧

你可能感兴趣的:(ubuntu,linux)