树莓派更换apt-get源

1、树莓派的Raspbian系统是基于debian的嵌入式Linux系统,查看当前debian版本命令:

pi@raspberrypi:~ $ cat /etc/debian_version 
10.0
pi@raspberrypi:~ $ 

2、以10.0为例,更换apt-get源

# 编辑 `/etc/apt/sources.list` 文件,删除原文件所有内容,用以下内容取代:
deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ buster main non-free contrib
deb-src http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ buster main non-free contrib

# 编辑 `/etc/apt/sources.list.d/raspi.list` 文件,删除原文件所有内容,用以下内容取代:
deb http://mirrors.tuna.tsinghua.edu.cn/raspberrypi/ buster main ui

注意:网址末尾的raspbian重复两次是必须的。因为Raspbian的仓库中除了APT软件源还包含其他代码。APT软件源不在仓库的根目录,而在raspbian/子目录下。

编辑镜像站后,请使用sudo apt-get update命令,更新软件源列表,同时检查您的编辑是否正确。

来自清华的镜像源:https://mirrors.tuna.tsinghua.edu.cn/help/raspbian/

Leave a Reply