Back

Raspberry Pi note

Raspberry Pi 笔记

B系列硬件参数

VersionCPUArchRAMUSBBoot from USBEthernetWirelessRelease
1BBCM2835700MHz32-bitARM1176JZFS256/512MBUSB2 * 2No10/100 Mbit/s-2012 Apr~Jun
1B+BCM2835700MHz32-bitARM1176JZFS256/512MBUSB2 * 4No10/100 Mbit/s-2014 Jul
2B v1.1BCM2836900MHz32-bit quad-coreARM Cortex-A71GBUSB2 * 4No10/100 Mbit/s-2015 Feb
2B v1.2BCM2837900MHz ~ 1.2GHz64-bit quad-coreARM Cortex-A531GBUSB2 * 4Yes10/100 Mbit/s-2016 Oct
3BBCM28371.2GHz64-bit quad-coreARM Cortex-A531GBUSB2 * 4Yes10/100 Mbit/s2.4G WIFI + Bluetooth 4.12016 Feb
3B+BCM2837B01.4GHz64-bit quad-coreARM Cortex-A531GBUSB2 * 4Yes10/100/300 Mbit/s2.4/5G WIFI + Bluetooth 4.2 LS2018 Mar
4BBCM27111.5GHz64-bit quad-coreARM Cortex-A721/2/4/8GBUSB2 * 2 + USB3 * 2Yes10/100/1000 Mbit/s2.4/5G WIFI + Bluetooth 5.02019 Jun

常用的系统

官方raspbian 系统

https://www.raspberrypi.org/downloads/raspbian/

可用于所有型号的raspberrypi

优点

  • 基于debian,使用 apt 包管理工具, 经常使用 Ubuntu 的话, 还是比较顺手的
  • 包含 raspi-config (Raspberry Pi Software Configuration Tool), 方便调整参数

缺点

  • 目前只有 32-bit 的系统(armhf)

1、2代推荐使用

Ubuntu MATE

https://ubuntu-mate.org/raspberry-pi/

Model B 2, 3 or 3+ 适用

优点

  • 基于 Ubuntu,使用 apt 包管理工具
  • 使用 Ubuntu meta 的桌面,干净,个人偏好

缺点

  • 同样只有 32-bit 的系统(armhf)

推荐需要干净桌面+浏览器的用户使用

OSMC

这是一个 Kodi 的发行版本,用树莓派将家里的电视变成媒体中心,播放内网下载好的视频,或者安装插件直接播放网络视频

https://osmc.tv/download/

可用于所有型号的raspberrypi, 友情提示, 最好在有有线网络接口(USB网卡也可以)的pi上使用, 使用2.4G Wi-Fi播放高清视频绝对会卡的

Ubuntu Server

作为服务器使用推荐

Ubuntu 20.04 LTS (Focal Fossa) http://cdimage.ubuntu.com/releases/20.04/release/

Raspberry Pi Generic (Hard-Float) preinstalled server image

For 32-bit

Raspberry Pi Generic (64-bit ARM) preinstalled server image

For 64-bit

系统镜像文件写入SD/TF卡

简单模式

推荐新手使用Etcher https://github.com/balena-io/etcher/releases

Windows, linux, macOS 可用

命令行模式

sudo dd if=2019-07-10-raspbian-buster-full.img of=/dev/rdisk2 bs=1m

linux, macOS 可用,不同系统上目标磁盘的格式可能不太一样,macOS 注意 /dev/disk2/dev/rdisk2 的区别,rdisk写入速度会快10倍以上

注意,dd会覆盖磁盘上的数据,谨慎操作。

使用USB硬盘启动

参考官方说明 https://www.raspberrypi.org/documentation/hardware/raspberrypi/bootmodes/msd.md

简单的说就是 3 B+ 及以上硬件版本可以直接从USB设备启动

之前的硬件版本需要手动更改启动模式

常用命令

  • 系统配置 (官方raspbian 系统可用)

sudo raspi-config

  • 查看树莓派的型号

cat /proc/device-tree/model

  • 查看有线网络当前的链接速度 单位mb

cat /sys/class/net/eth0/speed

  • 查看当前核心温度 (除1000为摄氏度)

cat /sys/class/thermal/thermal_zone0/temp

comments powered by Disqus