樹莓派換源2023教程及注意事項(更換為清華源)
###### 為啥要換源? :@(吐血倒地)?
說白了就是為了加速。樹莓派系統(tǒng)默認(rèn)下載軟件的服務(wù)器在國外,經(jīng)常出現(xiàn)下載慢、無法更新的情況。(這個經(jīng)常訪問github的同志應(yīng)該很清楚 :@(邪惡) )這就需要更換為國內(nèi)的鏡像站來加快速度。
###### 換源前的準(zhǔn)備事項
樹莓派系統(tǒng)是是基于debian改造出來的,隨著debian的版本更替,不同版本的樹莓派要換的源也不同,但樹莓派系統(tǒng)的換源流程大致一樣的。這里是樹莓派清華源的換源介紹文檔 :@(鼓掌)? [樹莓派清華源](https://mirrors.tuna.tsinghua.edu.cn/help/raspbian/)?
###### 換源的步驟
1、使用 `lsb_release -a` 命令查看樹莓派的版本,使用 `uname -m` 查看樹莓派的架構(gòu)。
??
像我這里的版本是基于debian 11的bullseye版本,為aarch64架構(gòu),此時打開[樹莓派清華源](https://mirrors.tuna.tsinghua.edu.cn/help/raspbian/)的教程,找到對應(yīng)的版本和換源教程。 
2、有了清華源的教程,我們使用一下命令進(jìn)入Raspbian源。
```c
sudo nano /etc/apt/sources.list
```
改為清華源提供的以下內(nèi)容,再crtl+x保存退出。
```c
# 默認(rèn)注釋了源碼鏡像以提高 apt update 速度,如有需要可自行取消注釋
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free
```
3、使用以下命令進(jìn)入樹莓派基金會維護(hù)軟件的源。
```c
sudo nano /etc/apt/sources.list.d/raspi.list
```
改為清華源提供的以下內(nèi)容,再crtl+x保存退出。
?
```c
# 對于兩個架構(gòu),編輯 `/etc/apt/sources.list.d/raspi.list` 文件,刪除原文件所有內(nèi)容,用以下內(nèi)容取代:
deb https://mirrors.tuna.tsinghua.edu.cn/raspberrypi/ bullseye main
```
{message type="warning" content="個人建議可以先把樹莓派官方的給加#注釋掉,以免改錯還能原封不動改回來。"/}
###### 效果如下
?
?
{message type="success" content="其余版本的換源以上述步驟為參考即可完成"/}
最后使用以下兩個命令更新一下數(shù)據(jù),不出現(xiàn)報錯恭喜換源成功。 :@(喜極而泣)?
```c
sudo apt-get update
sudo apt-get upgrade?
```
復(fù)制鏈接打開查看源站??https://cxing.top/archives/21.html