两种方式在树莓派上设置接入 WiFi 的静态 IP
Dec 04, 2024
在树莓派上有两种网络管理方式:dhcpcd 和 NetworkManager。 dhcpcd 编辑配置文件 /etc/dhcpcd.conf,里面可以对网络接口配置: SSID Your-WiFi-Name static ip_address=192.168.0.100/24 static routers=192.168.0.1 static domain_name_servers=192.168.0.1 NetworkManager 需要使用命令 nmcli 进行配置。 …
树莓派管理交换文件(Swap file)的正确方式
Nov 06, 2023
在树莓派的 /etc/fstab 文件末尾看到这样的注释: proc /proc proc defaults 0 0 PARTUUID=7c7f9727-01 /boot vfat defaults 0 2 PARTUUID=7c7f9727-02 / ext4 defaults,noatime 0 1 # a swapfile is not a swap partition, no line here # use dphys-swapfile swap[on|off] for that 在树莓派上应该使用 dphys-swapfile 来管理交换文件,而不要在 fstab 配置里直接配置。 …
macOS 上备份和还原树莓派系统
Mar 28, 2021
备份树莓派就是把 SD 卡数据备份,恢复就是还原数据到 SD 卡,类似于以前的 GHOST 备份。 使用 diskutil list 查找 SD 卡设备: ... /dev/disk5 (external, physical): #: TYPE NAME SIZE IDENTIFIER 0: FDisk_partition_scheme *32.0 GB disk5 1: Windows_FAT_32 system-boot 268.4 MB disk5s1 2: Linux 31.7 GB disk5s2 备份系统 sudo dd bs=4m if=/dev/disk5 | gzip > RaspiOS.img.gz 备份完成后,输出结果: …
在树莓派上开启 WIFI 连接
Mar 25, 2021
先查看一下目前的网络设备接口: ls /sys/class/net eth0 lo wlan0 编辑 /etc/netplan/50-cloud-init.yaml,添加你的 WIFI 名称和密码: # This file is generated from information provided by the datasource. Changes # to it will not persist across an instance reboot. To disable cloud-init's # network configuration capabilities, write a file # /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following: # network: {config: disabled} network: ethernets: eth0: dhcp4: true optional: true version: 2 wifis: wlan0: optional: true dhcp4: true dhcp6: true access-points: "YOUR-WIFI-NAME": password: "YOUR-WIFI-PASSWD" 保存后,依次执行以下命令: …