当树莓派安装好系统时,可能会发现下载软件的速度十分缓慢,这个问题主要是因为系统默认的软件源是国外的官方源。我们可以通过更换软件源来解决这个问题。
首先,打开树莓派的 终端 。(可以通过SSH或者显示器连接树莓派)
树莓派的软件源配置文件有两个,分别是和raspi.list和sources.list。
我们首先来更改位于/etc/apt/下的sources.list文件。
输入以下命令来编辑sources.list
sudo nano /etc/apt/sources.list
默认的文件内容是(可能会有不一样的地方 不影响):
deb http://raspbian.raspberrypi.org/raspbian/ stretch main contrib non-free rpi
# Uncomment line below then apt-get update to enable apt-get source
#deb-src http://raspbian.raspberrypi.org/raspbian/ stretch main contrib non-free
直接在每一行最前面加上一个注释掉原来的内容。 国内有许多树莓派软件源,如清华,中科大等 这里以清华大学的为例。
在sources.list的最顶部添加以下内容。
deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ stretch main non-free contrib
deb-src http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ stretch main non-free contrib
然后Ctrl +X 保存 按Y确认 回车再次确认。
然后是 编辑raspi.list
sudo nano /etc/apt/sources.list.d/raspi.list
同样,把里面的内容全部按照刚才的方法注释掉。
默认的文件内容是:
deb http://archive.raspberrypi.org/debian/ stretch main ui
## Uncomment line below then apt-get update to enable apt-get source
#deb-src http://archive.raspberrypi.org/debian/ stretch main ui
在raspi.list的最顶部添加以下内容。
deb http://mirrors.tuna.tsinghua.edu.cn/raspberrypi/ stretch main
同样 Ctrl+X 保存 按Y确认 回车再次确认
修改完成后 我们要使这些更改生效 就必须要更新源 。
sudo apt-get update