fix/feat: many things

This commit is contained in:
2024-02-18 16:03:49 +01:00
parent 89e218e67b
commit 16316ffa90
36 changed files with 147 additions and 85 deletions

View File

@ -1,9 +1,8 @@
---
title: "How to make daily backups of your HomeLab with Rclone?"
date: 2022-07-19
draft: false
slug: "how-to-make-daily-backups-of-your-homelab"
tags: ["backup", "tools"]
tags: ["backup", "docker", "storage", "tools"]
type: "infrastructure"
---
@ -17,7 +16,7 @@ You have your local homelab in which you store all your data. You have set up se
> - 1: The final “one” referred to the rule that one copy of the two backups should be taken off-site, so that anything that affected the first copy would not (hopefully) affect it.
> — <cite>[computerweekly.com](computerweekly.com)</cite>
<img src="img/image-1.png"/>
<img src="img/image-1.png" alt="321 backup rule"/>
3-2-1 Backup Rule allows to store data with almost no risk of loss. Today many people agree that this rule does not really make sense with the arrival of the cloud. Indeed, providers such as Google, Amazon, ... have replication systems on several disks, but especially in several locations. All this remains invisible for the user, but these securities are well present.
@ -90,17 +89,17 @@ In the script plugin of Unraid I add the different scripts with the following ex
This should result in the following:
<img src="img/image-2.png"/>
<img src="img/image-2.png" alt="Script list in Unraid"/>
After waiting one day I check on the drive that the backup has been done:
<img src="img/image-3.png"/>
<img src="img/image-3.png" alt="Save zip in Google Drive"/>
And indeed there is an archive of about 1Gb that has been uploaded in the save_mark1 folder. The system works !
I then let the script run for several days to see if the history system works well. As you can see I have a history of the file for about 30 days. An interesting thing to know is that only the archive consumes space on my drive and not all the versions in the history. This makes it consume ~1Gb with 30 versions of the archive accessible.
<img src="img/image-4.png"/>
<img src="img/image-4.png" alt="Versions list in Google Drive"/>
## Conclusion