原理就是使用国内的镜像源,代替国外的镜像源。
有两个推荐的源:
- 清华大学镜像:https://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/
- 阿里云镜像:https://mirrors.aliyun.com/raspbian/raspbian/
1.备份原系统的apt的源镜像列表
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
2.编辑sources.list 文件
sudo vim /etc/apt/sources.list
3.注释掉原来的内容,添加以下内容:
deb https://mirrors.aliyun.com/raspbian/raspbian/ buster main contrib non-free rpi
deb-src https://mirrors.aliyun.com/raspbian/raspbian/ buster main contrib non-free rpi
注意:这里编辑的时候需要注意版本(只需要更换链接部分的内容就可以)
Debian版本 | 对应名称 |
---|---|
Debian7 | wheezy |
Debian8 | jessie |
Debian9 | stretch |
Debian10 | buster |
保存退出。
再执行 sudo apt-get update
和 sudo apt-get upgrade
,就能看到加速效果了