赞
踩
CSDN不定时更新
所有内容均上传到Gitee,开放下载
仓库地址:https://gitee.com/blackhker/note.git
TODO
镜像下载配合第三方烧录工具(官方镜像、第三方烧录工具),官方的烧录工具可以直接烧录,不需要额外下载
https://www.raspberrypi.com/software/operating-systems/
https://www.sdcardformatter.com/
https://downloads.raspberrypi.org/imager/imager_latest.exe
https://sourceforge.net/projects/win32diskimager/
https://www.alexpage.de/
以下使用SD Card Formatter为例
选择运行设备
操作系统,这里选择x64位
要烧写的SD卡,Next
按需选择是否个性化安装的系统如何设置
主要设置
开启SSH
其他配置默认即可
安装
开始写入
-- 更新软件包列表
sudo apt update
-- 升级已安装软件包
sudo apt upgrade
bluetooth
:蓝牙相关的核心库和工具pi-bluetooth
:用在树莓派上的支持蓝牙功能的软件包bluez
:管理蓝牙设备和协议的库和工具blueman
:图形界面的蓝牙管理器,可以管理蓝牙设备以及链接mplayer
:多媒体播放器,支持音视频播放,用于测试蓝牙功能(蓝牙耳机)sudo apt install bluetooth pi-bluetooth bluez blueman mplayer
-- 启动命令行工具 全称bluetooth contrl
bluetoothctl
-- 告诉蓝牙管理器开启代理功能,自动处理蓝牙设备的配对和认证
agent on
-- 扫描设备,扫描蓝牙设备,显示MAC地址
scan on/off
-- 配对设备,根据扫描到的MAC进行配置
pair MAC地址
-- 连接设备,可能会自动连接,就不需要这条命令,输入quit退出
connect MAC地址
[bluetooth]# scan on
Discovery started
[CHG] Controller E4:5F:01:26:55:90 Discovering: yes
[NEW] Device 4A:E4:8E:E3:BC:54 4A-E4-8E-E3-BC-54
[CHG] Device 9C:19:C2:4D:88:DC Name: Redmi Buds 3
[bluetooth]# pair 9C:19:C2:4D:88:DC
Attempting to pair with 9C:19:C2:4D:88:DC
[CHG] Device 9C:19:C2:4D:88:DC Connected: yes
[Redmi Buds 3]# connect 9C:19:C2:4D:88:DC
Attempting to connect to 9C:19:C2:4D:88:DC
[CHG] Device 9C:19:C2:4D:88:DC Connected: yes
Connection successful
quit
mplayer xxx.mp3
输入法有三种:谷歌拼音、云拼音、太阳拼音
输入法有BUG,跟内置的Chroium有冲突,打不了中文
-- fcitx是个框架,同时安装其他软件包用空格分隔
sudo apt install fcitx fcitx-googlepinyin fcitx-module-clouldpinyin fcitx-sunpinyin
-- 重启生效
sudo reboot
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。