Skip to content

修改树莓派2的包镜像

1、打开配置sources.list文件

sudo nano /etc/apt/sources.list

2、用#注释掉原文件内容,用以下内容取代(Ctrl + O 保存再 Ctrl + X 退出):

deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ stretch main contrib non-free rpi
deb-src http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ stretch main contrib non-free rpi

3、打开配置raspi.list文件

sudo nano /etc/apt/sources.list.d/raspi.list

4、用#注释掉原文件内容,用以下内容取代(Ctrl + O 保存再 Ctrl + X 退出):

deb http://mirror.tuna.tsinghua.edu.cn/raspberrypi/ stretch main ui
deb-src http://mirror.tuna.tsinghua.edu.cn/raspberrypi/ stretch main ui

5、编辑镜像站后,使用命令更新

sudo apt-get update

修改树莓派3及以后的包镜像

参考网址:【记录】5.树莓派5下载源更换成阿里云服务器_哔哩哔哩_bilibili

1、打开配置sources.list文件

shell
sudo nano /etc/apt/sources.list

2、修改来源,改为aliyun

shell
deb.debian.org
改为
mirrors.aliyun.com

3、编辑镜像站后,使用命令更新

shell
sudo apt-get update

正确显示中文

shell
sudo apt install ttf-wqy-zenhei
shell
sudo raspi-config

把光标移到Localisation Options上

翻到最下面的选项,勾上zh_CN,UTF-8

然后选择默认语言,选择zh_CN

设置完成之后,reboot重启就可以看到熟悉的中文了

设置静态无线IP(有点小问题,用到再说)

如果用有线就不用那么麻烦了。

确认是否安装了 dhcpcd:

shell
sudo apt list --installed | grep dhcpcd

如果没有安装,可以使用以下命令安装它:

shell
sudo apt install dhcpcd5

启用 dhcpcd 服务:

shell
sudo systemctl enable dhcpcd
sudo systemctl start dhcpcd

检查是否使用了 NetworkManager:

shell
sudo systemctl status NetworkManager

如果 NetworkManager 正在运行,可能它覆盖了 dhcpcd 的设置。你可以通过 nmcli 来设置静态IP,例如:

shell
nmcli con show

找到 wlan0 的连接名称,然后设置静态IP(假设连接名称是 MyWifiConnection):

shell
sudo nmcli con mod preconfigured ipv4.addresses 192.168.124.21/24
sudo nmcli con mod preconfigured ipv4.gateway 192.168.124.1
sudo nmcli con mod preconfigured ipv4.method manual
sudo nmcli con up preconfigured

通过ifconfig查看网卡:

image-20241008143532831

编辑文件:

shell
sudo vi /etc/dhcpcd.conf

添加配置项:

shell
#无线
interface wlan0
inform 192.168.124.22
static routers=192.168.124.1

interface wlan0
static ip_address=192.168.124.22/24
static routers=192.168.124.1
static domain_name_servers=8.8.8.8 8.8.4.4
shell
#有线
interface eth0
inform 192.168.124.22
static routers=192.168.124.1

退出保存然后重启树莓派:

shell
sudo reboot

树莓派安全关机

shutdo

使用pi.sh脚本

shell
chmod +x pi.sh
shell
./pi.sh proxy

安装1Panel

image-20241008182757340image-20241024185156976

脚本安装1panel

shell
curl -sSL https://resource.fit2cloud.com/1panel/package/quick_start.sh -o quick_start.sh && sh quick_start.sh

配置docker加速

在容器-> 配置中设置,否则安装软件会失败。

shell
https://docker.211678.top
https://docker.1panel.live
https://hub.rat.dev
https://docker.m.daocloud.io
https://do.nark.eu.org
https://dockerpull.com
https://dockerproxy.cn
https://docker.awsl9527.cn
在这里插入图片描述

安装Alist、小雅、小雅清理工具

image-20241008183525056

根据如下三个网址的提示完成token的填写 阿里云盘Token(32位):https://alist.nn.ci/zh/guide/drivers/aliyundrive.html

阿里云盘OpenToken(335位):https://alist.nn.ci/tool/aliyundrive/request.html

阿里云盘转存目录folderid:https://www.aliyundrive.com/s/rP9gP3h9asE

image-20241008184537599

安装内网穿透

成功,但有效期只有24小时,够用了