Read the statement by Michael Teeuw here.
Backing Up Magic Mirror
-
I was wondering how to backup my SD card. I already have Win32DiskImager installed on my computer, but I wanted to know how exactly to set up a backup in case something happens to my raspberry pi.
-
You just put your SD card in and instead of writing to the card you do a read… name your image file and store it somewhere safe in case you need it :)
-
I still do not understand. I don’t know the name of my img file.
-
@AAPS Here’s a nice guide for you :)
-
Oh. I understand now.
-
sudo nano /home/pi/Backup.sh#!/bin/bash # VARIABLEN - HIER EDITIEREN BACKUP_PFAD="/yourBACKUPpath" BACKUP_ANZAHL="5" BACKUP_NAME="raspicam3-HN_BMGT" DIENSTE_START_STOP="service mysql" # ENDE VARIABLEN # Stopp any services before backup ${DIENSTE_START_STOP} stop # Create backup with dd in your desired path dd if=/dev/mmcblk0 of=${BACKUP_PFAD}/${BACKUP_NAME}-$(date +%Y%m%d-%H%M%S).img bs=1MB # Star services after backup ${DIENSTE_START_STOP} start # Delete old backup after X backups pushd ${BACKUP_PFAD}; ls -tr ${BACKUP_PFAD}/${BACKUP_NAME}* | head -n -${BACKUP_ANZAHL} | xargs rm; popdMake executable and move the script to /usr/bin/
sudo chmod 755 /home/pi/Backup.sh sudo mv /home/pi/Backup.sh /usr/local/bin/Backup.shcrontab -e00 01 * * * /usr/local/bin/Backup.shEvery day at 01:00 in the night a backup with crontab.
Restore your Backup to your SD-Karte under Windows with Win32 Disk imager or with Linux with following command.
dd if=/path/backup.img of=/dev/sda bs=1MBcreate manual a backup with your pi
sudo dd if=/dev/mmcblk0 of=/yourBACKUPpath/Rpi_32gb_backup.img bs=2M -
That’s what I love about this place!! Many hands make light work… :)
-
Very true! A big thank you to everybody who has helped me along the way. :clap: :thumbsup:
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login