How to Clone a Bootable SD Card on Linux & macOS for Backup π₯οΈπΎ


Ever needed to back up a bootable SD card for your Raspberry Pi or embedded system? Whether you're safeguarding your work or preparing for disaster recovery, cloning your SD card is a smart move. Hereβs how you can do it quickly using just your terminal! π
πΉ Step 1: Identify Your SD Card
Insert the SD card and find its disk identifier:
β For Linux:
lsblk
β For macOS:
diskutil list
Look for something like /dev/sdX
(Linux) or /dev/disk2
(macOS).
πΉ Step 2: Create a Backup Image
Run this command to clone the SD card into an image file:
β For Linux:
sudo dd if=/dev/sdX of=~/sdcard_backup.img bs=4M status=progress
β For macOS (I used the full home directory path):
sudo dd if=/dev/disk2 of=/Users/[YOUR HOME DIR NAME]/sdcard_backup.img bs=4M status=progress
This creates sdcard_backup.img
in your home directory.
π Time Check: This took about 50 minutes on a 2018 Mac mini i7 (32GB RAM) for a 32GB SD card with Raspberry Pi OS Lite, Pi-hole, and Unbound.
πΉ Step 3: Verify the Backup Image
Check if the backup exists and is the correct size:
ls -lh ~/sdcard_backup.img
(Optional) Mount the image to verify its contents:
hdiutil attach ~/sdcard_backup.img
πΉ Step 4: Restore the Image to a New SD Card
1οΈβ£ Insert the new SD card and find its disk identifier:
β For Linux:
lsblk
β For macOS:
diskutil list
2οΈβ£ Unmount the SD card/s:
β For Linux:
sudo umount /dev/sdX*
(Use *
if the disk has multiple partitions)
β For macOS:
diskutil unmountDisk /dev/disk2
3οΈβ£ Write the backup image to the new SD card:
β For Linux:
sudo dd if=~/sdcard_backup.img of=/dev/sdY bs=4M status=progress
(Replace /dev/sdY
with the correct device name of the new SD card.)
β For macOS:
sudo dd if=/Users/[YOUR HOME DIR NAME]/sdcard_backup.img of=/dev/disk2 bs=4M status=progress
(In my case, /dev/disk2
was the name of my new SD card.)
π Another 50 minutes later... and now I have two identical bootable SD cards! β
Why Should You Backup Your SD Card?
βοΈ Prevent data loss πΎ βοΈ Easily restore your system β‘ βοΈ Save time in case of failure π
Having a backup SD card ensures peace of mind when working with Raspberry Pi, embedded systems, or custom Linux builds. π₯
Subscribe to my newsletter
Read articles from Bryan Steele directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
