树莓派教程2023

摘要:本教程只适用于最新版树莓派64位系统(debian11)

树莓派官网(之前是org):
https://www.raspberrypi.com/

一.烧录系统

1.官网下载官方烧写器
https://downloads.raspberrypi.org/imager/imager_latest.exe
树莓派教程2023_第1张图片

2.下载最新版64位系统,解压出img文件
树莓派教程2023_第2张图片
3.烧录系统,并设置账号密码,wifi等
树莓派教程2023_第3张图片

二.搭建环境

首先SSH连接树莓派,并输入密码

ssh -22 用户名@树莓派IP

查看linux发行版本:

lsb_release -a

Interface Options设置开启VNC桌面,vnc软件输入树莓派IP地址连接即可

sudo raspi-config

1.修改/boot/config.txt超频,最后一行加入以下代码,重启

arm_freq=2145
#CPU超频至2.145Ghz
over_voltage=10
#内核电压提高至1.3V;范围:0~10;初始电压1.2V,每增加1提高0.025V
gpu_freq=600
#GPU超频至600Mhz

2.更换国内源,加快软件安装和更新速度
(1).命令行输入:sudo nano /etc/apt/sources.list
加入代码:

deb 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 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

(2).命令行输入:sudo nano /etc/apt/sources.list.d/raspi.list
加入代码:

deb http://mirrors.tuna.tsinghua.edu.cn/raspberrypi/ bullseye main

(3).更新:

sudo apt-get update
sudo apt-get upgrade

(4)更换pip源,命令行输入:sudo nano /etc/pip.conf
原地址:https://www.piwheels.org/simple自选改为下列国内源:
阿里云:https://mirrors.aliyun.com/pypi/simple/
中国科学技术大学:https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣:http://pypi.douban.com/simple/
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/

3.设置中文,修改时区,安装输入法

sudo raspi-config

(1).通过键盘上下键,将蓝条,移动到第 “Iocalisation Options”
(2).Change Locale就是汉化的选择项;选择它,并回车进入
(3).利用键盘上下键(也可以用 page down / PgDn 翻页,更快),移动光标至“zh_CN.UTF-8 UTF-8”,“zh_CN.GBK GBK ”使用空格键都打上*号, 使用TAB 键,将光标移动到“OK”
(4).使用 TAB 键,将光标移动到”OK“,敲回车,将光标移动到”zh_CN UTF-8“
(5).安装谷歌输入法:

sudo apt-get install fcitx fcitx-googlepinyin fcitx-module-cloudpinyin fcitx-sunpinyin

(6)更改时区:选择亚洲,选择上海

sudo dpkg-reconfigure tzdata

4.安装宝塔面板:
宝塔官网:
https://www.bt.cn/new/download.html
选择安装万能版本

你可能感兴趣的:(树莓派,Linux,linux,运维)