blog:raspberrypi:install_os

安装raspios并启动

下载系统镜像

(raspios下载链接)[https://www.raspberrypi.com/software/operating-systems]

有32bit和64bit两种版本

  `Raspberry Pi OS with desktop版本` : 桌面版本
  `Raspberry Pi OS Lite`: 精简版本,没有安装桌面软件。

例如,我下载的是Lite版本 2022-01-28-raspios-bullseye-arm64-lite.zip

烧录系统镜像

(参考链接)[https://www.raspberrypi.com/documentation/computers/getting-started.html#installing-images-on-linux]

准备好sdcard, 使用lsblk -p 查看sdcard的主设备名

例如sdcard的设置名为 /dev/sdc

注意: sdc后面没有数字,带数字的为此设备下的子分区, 设备名千万不能弄错,否则将会破坏当前系统的数据。

unzip 2022-01-28-raspios-bullseye-arm64-lite.zip
sudo dd=if/2022-01-28-raspios-bullseye-arm64-lite.img of=/dev/sdc bs=4M conv=fsync status=progress
  • blog/raspberrypi/install_os.1644747107.txt.gz
  • 最后更改: 2022/02/13 18:11
  • caodan