@MikeR Thanks for informing us about "World Backup Day"
I do Weekly Timeshift Snapshots of my 3 MX distros: Fluxbox, KDE, and Xfce. I only keep 2 of each at any one time. Thankfully, I have never had to restore my system from a Timeshift Snapshot.
I also do a monthly MX-Snapshot of my 3 distros, and then use MX-LUM to make the live, bootable flash media. I think about 4 years ago I did opt to re-install from one of these snapshots.
I run "LuckyBackup" (rsync) for my data:
docs (work, finances, browser bookmarks, SSH keys (thanks mention]DukeComposed[/mention]

), music & audio (recordings, podcasts), pics, and videos -- all add-up to about 3TB, and I have all of that backed-up across 4 separate external hard drives. I also have many of my documents backed-up to Dropbox (which I upgraded about 6 months ago to the lowest "paid" version -- 2TB, I think). Now, 2 of the external hard drives are only 1TB & 2TB each, so I am not backing-up my entire video collection to those drives. However, I do backup ALL of my data to the other 2 drives (4TB and 5TB each). Besides Dropbox (again, which has everything, except large videos), I do keep one of my backup drives "offsite"; namely, in a separate sub-basement. So, maybe not exactly offsite
Sitting on a shelf, I have 2 more 4TB drives, and one 8TB drive, waiting for me to decide exactly how to integrate them into my backup scheme. Additionally, I have a family-member who is willing to have me set-up a machine on their network, so that I can SSH into it, and I am seriously considering using that for a TRULY OFFSITE backup.
One final addendum: I was recently educated about the type of file system of my backup drives, and how that might be a determining factor, especially if I'm backing-up SSH Keys

Here's the Forum link for that conversation:
viewtopic.php?p=809381#p809381 Importantly, that thread mentions one of my backup-drives failing!!! So, that's the reason I am insistent on the 3-2-1 (3 copies, 2 different types of media, and at least 1 offsite) principle of backup, though I don't strictly adhere to the 2 different types of media thing. For me, I feel secure if I have at least 3 separate backup drives containing the same data, and at least one offsite.
Oh, yeah, I have also backed-up my old Windows installation, and I keep those backup files on one of my large backup hard drives. I also have this install on a separate working drive on my rig, but which is actually not even "registered" with GRUB. I just know it's there, and can get to it via my BIOS (UEFI, really; and no, it doesn't even show-up on my rEFInd GUI). This is how I backed-up the drive that has that Windows install:
Code: Select all
sudo dd if=/dev/sdb1 | gzip -c > /media/opera-dude/'Seagate Expansion Drive'/Documents/Backup/GA-H270-HD3/Win7Ultimate_x64/2022_12_14/part1.img.gz
sudo dd if=/dev/sdb2 | gzip -c > /media/opera-dude/'Seagate Expansion Drive'/Documents/Backup/GA-H270-HD3/Win7Ultimate_x64/2022_12_14/part2.img.gz
Important: the "if" (input file) drive (e.g. /dev/sdb1) has to be UNMOUNTED !!!
Whereas, the "of" (output file) drive (e.g. /media/opera-dude/....) has to be MOUNTED !!!
Here's the results of the above operations:
part1.img.gz = 8.4 MiB
part2.img.gz = 10.4 GiB
Here are my sources for "dd" documentation:
https://tecadmin.net/drive-and-partitio ... d-command/ &
https://linoxide.com/linux-command/linu ... -1gb-file/
EDIT:
Here's how that (working) Windows install looks on my separate hard drive:
Windows Partitions - Whole Disk.png
Thanks again for "World Backup Day"
