The main objective of this README
is to guide users on how to set up and Backup their Raspberry Pi devices using different methods such as creating a new Raspberry Pi image, backing up the image to an SD card, and backing up the image to an external disk using a macOS. It provides step-by-step instructions for each method, including enabling SSH access, finding the IP address, and creating an image from an SD card. Additionally, it also covers how to use the Raspberry Pi Imager to create a new Raspberry Pi image on a macOS."
- Backup your
Raspberry Pi
image to ansd-card
- Backup your
Raspberry Pi
image to anexternal disk
with amacOS
- Create a new
Raspberry Pi
image withRaspberry Pi Imager
onmacOS
sudo su
passwd
sudo passwd pi
- Optional:
reboot
Enter the following command:
sudo raspi-config
-
Select
Interfacing Options
-
Select
SSH
-
Enable
SSH
-
Finish
ifconfig
or
hostname -I
export HOSTNAME=192.168.178.69
export REMOTE_USER=pi
ssh ${REMOTE_USER}@${HOSTNAME}
cd /dev
ls | grep mmcblk0
sudo dd bs=4M if=/dev/mmcblk0 of=/dev/sda
3. Create a new Raspberry Pi image with Raspberry Pi Imager on macOS
Step 1: Download Raspberry Pi Imager to the local machine
- Enable
ssh
andVNC
for remote connection inside yourWLAN
.