安装系统
虽然官方已经提供了 Raspberry Pi Imager,但是我在 Mac 下试用了一下,打开就崩,没办法,不太想去折腾为什么会崩了,直接就上老方法从镜像安装,所以下面我的步骤就是以镜像安装的方式进行的,系统环境是 Mac,Linux 下其实几乎类似,Windows 就更简单了,有 GUI 工具可以使用。
1. 下载系统镜像
我是使用的 Raspberry 的官方 OS:Raspberry Pi OS with desktop and recommended software,直接打开这个链接就可以点击下载了,下载下来是一个 zip 文件,需要解压出来 img 文件:
[root@liqiang.io]# mkdir -p rasp
[root@liqiang.io]# unzip 2021-03-04-raspios-buster-armhf-full.zip -d rasp
[root@liqiang.io]# sudo dd if=/Users/liuliqiang/Downloads/rasp/2021-03-04-raspios-buster-armhf-full.img of=/dev/rdisk2 bs=1m
这里的 /dev/rdisk2
其实就是 /dev/disk2
,我的 SD 卡,为什么多了一个 r?这个是以 raw 的格式进行拷贝,速度会比使用普通的 dd 快上 20 倍(Why is “/dev/rdisk” about 20 times faster than “/dev/disk” in Mac OS X)
另外一个问题是如何找到是 /dev/disk
几的问题,我放在后面了。
2. 配置系统
以前旧的 Raspberry 系统是默认开启 SSH 的,可以直接插上网线就从其他电脑 SSH 进去,但是,现在新的 OS 不行了,得接上显示器和鼠键进行设置才可以,所以我就接上了这些外设,然后设置了一把,然后就撤掉了。
打开 SSH
因为我是通过 GUI 操作的,所以比较简单:
- 从首选项菜单中启动 “Raspberry Pi Config”
- 导航到 “Interfaces” 选项卡
- 在 SSH 旁边选择 “Enabled”。
- 点击 OK 即可
如果不是 GUI 操作的话,还可以在 SDK 卡的目录下创建一个文件,名字为 “SSH”,无需后缀名即可开启 ssh。
问题
如何找到 SD 卡是哪个设备
在 Mac 上可以通过 diskutil 工具查看,例如我的:
[root@liqiang.io]#diskutil list
... ...
/dev/disk2 (external, physical):
#: TYPE NAME SIZE IDENTIFIER
0: FDisk_partition_scheme *15.7 GB disk2
1: Windows_FAT_32 NO NAME 15.7 GB disk2s1
[root@liqiang.io]#
[root@liqiang.io]#
[root@liqiang.io]#
这就是我的设备信息了,你可以直接看到我的 SD 卡就是 /dev/disk2
。
PWR 灯不亮或者闪烁
这是电源的问题,一般是电源输出的电流不足导致的,正常的情况下应该是一直亮着的。
Mac 无法挂载 SD 卡
[root@liqiang.io]# brew install --cask macfuse
[root@liqiang.io]# cat > ext4fuse.rb << EOF
class MacFuseRequirement < Requirement
fatal true
satisfy(build_env: false) { self.class.binary_mac_fuse_installed? }
def self.binary_mac_fuse_installed?
File.exist?("/usr/local/include/fuse/fuse.h") &&
!File.symlink?("/usr/local/include/fuse")
end
env do
ENV.append_path "PKG_CONFIG_PATH", HOMEBREW_LIBRARY/"Homebrew/os/mac/pkgconfig/fuse"
unless HOMEBREW_PREFIX.to_s == "/usr/local"
ENV.append_path "HOMEBREW_LIBRARY_PATHS", "/usr/local/lib"
ENV.append_path "HOMEBREW_INCLUDE_PATHS", "/usr/local/include/fuse"
end
end
def message
"macFUSE is required. Please run `brew install --cask macfuse` first."
end
end
class Ext4fuse < Formula
desc "Read-only implementation of ext4 for FUSE"
homepage "https://github.com/gerard/ext4fuse"
url "https://github.com/gerard/ext4fuse/archive/v0.1.3.tar.gz"
sha256 "550f1e152c4de7d4ea517ee1c708f57bfebb0856281c508511419db45aa3ca9f"
license "GPL-2.0"
head "https://github.com/gerard/ext4fuse.git"
bottle do
sha256 cellar: :any, catalina: "446dde5e84b058966ead0cde5e38e9411f465732527f6decfa1c0dcdbd4abbef"
sha256 cellar: :any, mojave: "88c4918bf5218f99295e539fe4499152edb3b60b6659e44ddd68b22359f512ae"
sha256 cellar: :any, high_sierra: "fc69c8993afd0ffc16a73c9c036ca8f83c77ac2a19b3237f76f9ccee8b30bbc9"
sha256 cellar: :any, sierra: "fe8bbe7cd5362f00ff06ef750926bf349d60563c20b0ecf212778631c8912ba2"
sha256 cellar: :any, el_capitan: "291047c821b7b205d85be853fb005510c6ab01bd4c2a2193c192299b6f049d35"
sha256 cellar: :any, yosemite: "b11f564b7e7c08af0b0a3e9854973d39809bf2d8a56014f4882772b2f7307ac1"
end
depends_on "pkg-config" => :build
on_macos do
depends_on MacFuseRequirement => :build
end
on_linux do
depends_on "libfuse"
end
def install
system "make"
bin.install "ext4fuse"
end
end
EOF
[root@liqiang.io]# brew install --formula --build-from-source ./ext4fuse.rb
[root@liqiang.io]# diskutil list
... ...
/dev/disk2 (external, physical):
#: TYPE NAME SIZE IDENTIFIER
0: FDisk_partition_scheme *7.7 GB disk2
1: Windows_FAT_32 boot 268.4 MB disk2s1
2: Linux 7.5 GB disk2s2
[root@liqiang.io]# sudo mkdir /Volumes/raspberry
[root@liqiang.io]# sudo ext4fuse /dev/disk2s2 /Volumes/raspberry -o allow_other