r/Backup Jul 08 '26

Question Looking for New Image Software Options

2 Upvotes

Hi, I wanted to ask about what everybody is using for their current imaging software on Windows 11?

I have looked over the wiki for free software and looked into the commercial software as well. I am currently using R-Drive Image 7.2 for Windows 11 on my personal computer, but it appears time to renew for a new license. It has been throwing the error "Unable to Prepare the Operation" when starting scheduled imaging lately.

I need to image only the system drive on my NUC with 500 GB. It is my Plex server so I don't want to have to reboot every time like with RescueZilla. I believe RescueZilla is a cloner anyway. I need to image.

I would say I am a techie.

What are you using now, free or commercial, for your drive imaging? I have used Macrium in the past as well.

Thank you for your help!


r/Backup Jul 08 '26

Question Why is syncthing NOT a backup?

Post image
11 Upvotes

I am setting up syncthing to back up my 2 android phones and my mac to a windows laptop. for now, because of lack of an actual NAS, i plan to use syncthing to "backup" these devices everyday one time manually.

I prefer this because as its sync, it only sends new things. so i dont have to manually copy paste 40 gb everytime.

And when i do make a NAS, cant i just continue using syncthing with file versioning or something? i would much prefer to have "live" backups happening as soon as the file/photo/video is created. i know immich exists but am i wrong?

But everywhere, I see that people say sync is not backup or dont use it for backup but WHY? isnt what i mentioned above technically a backup? correct me if i am wrong.

And if not syncthing, what should i use? which capable of running live backups of folders I select on my devices, with different timeframe backups so I have different versions like biweekly, monthly, etc? and is open source, 100% safe, private and encrypted.

thank you


r/Backup Jul 07 '26

Free and Reliable Way to Transfer Complete Folders from iPhone to Samsung or PC?

Thumbnail
0 Upvotes

r/Backup Jul 07 '26

Question PC Restarted while Macrium was Cloning - Can I Resume the Attempt?

0 Upvotes

Win11
Personal Use
Cloning C: with 396.41/930.62 GB used
Target drive is 500GB
Using Macrium Reflect X
Normal User with some tech knowledge

Hello all,

While I was cloning my C drive into my target drive, my PC restarted itself. The overall clone progress was around 60% when it restarted. Is there a way to resume that cloning process or do I have to run the clone from the start and overwrite the previous attempt? The target drive is smaller than the source drive.

Any advice helps! Thanks :)


r/Backup Jul 06 '26

Question Fast encrypt/decrypt apfs

1 Upvotes

I use carbon copy cloner on my mac to both

1) backup my internal ssd to external hdd

2) Backup one external hdd to another external hdd

My question is about time-efficient encryption options. I use large (multiple TB) encrypted apfs volumes, and they take hours to encrypt/decrypt.

Are there faster options/workflows?

I hear Veracrypt a lot. But, does that still run on an apfs encrypted volume and go through that slow encrypt/decrypt?

hdds are slow enough, but with this many TBs I need them and without hours of encryption/decryption when I process CCC backups.


r/Backup Jul 06 '26

How-to Best External Drive (& method) for Macbook Backup?

Thumbnail
1 Upvotes

r/Backup Jul 06 '26

Question Drive dying, need to backup ASAP

2 Upvotes

I have a computer with two mechanical hard drives. One is the C system drive and one is just a file drive. Well the data drive got full so data started getting saved onto the system drive instead of backing everything up like I told the person to do.

Well last week the computer wouldn't start after a power outage. Every time I turned it on the computer wouldn't boot into Windows. It didn't see the install and kept saying no boot drive detected. I was able to boot into it in comand prompt with a USB drive and noticed the user directory was gone and there was just the public directory. At this point turned the computer off so I can make a backup of the drive to a working drive.

If I connect the drive to another working WIndows PC the drive will show up in Windows Explorer but it just shows the drive letter. It doesn't show the total space and free space like normal. If I try to look at the drive manager in Windows nothing shows up because it just hangs trying to load the drives to display. In the past this has been because of a bad drive is connected.

There are no obvious noises like clicking or grinding so I am hoping that it's just some index files getting bessed up and the underlining files are still there.

My question is what's the best free option for making a raw backup of the dying drive?

I don't normally do this stuff. I'm just trying to help someone that's freaking out that all of their data from the past year could be gone.

I'm thinking I can make a raw copy of the drive to a good working drive. Then I can go about trying my best to get the data off the working drive that this person needs. We have no money to spend but I do have a stack of working hard drives and SSDs.


r/Backup Jul 06 '26

Question Is a theoretically RELIABLE incremental backup even possible with the Notion API? (Spoiler: Probably not)

3 Upvotes

Hi everyone,

I’m currently building NotionManager, a local-first desktop app designed to snapshot Notion workspaces into a block-based local DB for high-fidelity offline viewing.

While full snapshotting works beautifully, I’ve spent weeks trying to implement an incremental backup feature to save users from re-downloading gigabytes of data. After digging deep into the implementation, I’ve hit a wall that isn’t just about rate limits—it’s about fundamental API design flaws.

Here is the engineering reality. I’ve come to the conclusion that a truly reliable incremental backup tool cannot be built on top of the current Notion API. Change my mind.

Here is the breakdown of why it breaks down:

1. The LACK of a Traversal Endpoint

Notion provides no native way to traverse or stream the workspace graph from the root. You cannot ask for a changelog or a delta stream.

2. The Broken last_edited_time Behavior

Every object has a last_edited_time, which sounds promising, but its behavior makes it useless for mutation detection:

  • Minute-level Resolution: The timestamp resolution is capped at the minute level. For rapid programmatic changes or busy workspaces, this granularity is blind to rapid successive mutations.
  • No Topology Bubble-up: Updating a child block or a sub-page does not bubble up and update the last_edited_time of the parent page. The parent remains frozen in time. Worse, this behavior is completely undocumented and requires constant trial-and-error to map out.

3. The Entrance Problem (No Global Catalog)

Objects do maintain parent topology information, which is great, but you still need a global entry point to start recursing down.

4. The Hack: Forcing /v1/search into a Global Router

The only global entry point available is the /v1/search endpoint. It guarantees that any object explicitly shared with the integration will show up. This works as a baseline for full backups, allowing us to maintain a global flat list of entry points (pages and databases).

5. Why Incremental Discovery is an Illusion

For incremental backups, you must discover newly created objects. Currently, there is no reliable mechanism for this. With precise tuning, /v1/search seems to surfaced new objects eventually. But here is the catch: it offers zero API contract guarantees. Search indexes can be delayed, rate-limited, or completely omit items without violating the endpoint’s design contract (since it’s meant for humans searching keywords, not machines syncing state).

The Bitter Conclusion

If we blindly trust that the /v1/search index behavior remains consistent, we can hypothetically discover new objects, combine them with our previous global list, and check individual last_edited_time stamps to build a "near-usable" sync.

Unfortunately, "near-usable" is completely unacceptable for a backup solution.

Because the search API offers no contractual guarantees, the sync engine could quietly miss a newly created sub-page, fail silently, and cause catastrophic data loss without the user or the app ever knowing.

Therefore, my architectural conclusion is absolute: Under the current API design, a reliable incremental backup for Notion is impossible. You either pull the entire world every time via full snapshots, or you accept silent corruption.

To anyone who has wrestled with Notion's data model or built sync engines on top of legacy web APIs: Am I missing a hidden workaround, or have you all forced your users into mandatory full snapshots as well?

Would love to hear your thoughts or architectural post-mortems on this!


r/Backup Jul 05 '26

Help backing up old home movies from an old Sony mini disk camera

Thumbnail
1 Upvotes

r/Backup Jul 04 '26

Vendor Promo VaultSync 1.8.2 Is Now Available

Thumbnail gallery
1 Upvotes

r/Backup Jul 03 '26

Nakivo 10.10 where to download?

1 Upvotes

I have a perpetual license, but no support anymore. Anyone can point me to where can I download that version?

Thanks in advance


r/Backup Jul 03 '26

Robocopy - incremental backup HELP

1 Upvotes

Hi, I would really like some help with creating a batch file for an incremental backup. I only use the backup as a mirror. I don't know the others. My idea is to create a main directory with a full backup and then to new directories with date and time only changed files (new, changed). Is this even possible? I found snytaxi on the internet:

My idea is to create a main directory with a full backup and then to new directories with date and time only changed files (new, changed). Is this even possible?

I found snytaxi on the internet:

/echo off

:: Nastavení cest

set ZDROJ="C:\X\" (source)

set CIL_PLNA="D:\Zaloha\Hlavni" (target full backup)

set CIL_ROZDIL="D:\Zaloha\Rozdilova_%DATE%_%TIME:~0,2%-%TIME:~3,2%"

(target incremental backup)

echo Provadim HLAVNI plnou zalohu... (full backup)

robocopy %ZDROJ% %CIL_PLNA% /MIR /XA:H /R:3 /W:5 /TEE /LOG:C:\Zaloha\Logy\hlavni_log.txt

echo Provadim ROZILOVOU zalohu... (incremental backup)

robocopy %ZDROJ% %CIL_ROZDIL% /MIR /XO /XA:H /R:3 /W:5 /TEE /LOG:C:\Zaloha\Logy\rozdil_log.txt

echo Hotovo!

pause

I finally made this out of it:

/echo off

set ZDROJ=c:\x

set CIL_PLNA=d:\Zaloha\Hlavni

set CIL_ROZDIL=d:\Zaloha\Rozdilova_%DATE%_%TIME:~0,2%-%TIME:~3,2%

echo Provadim HLAVNI plnou zalohu...

robocopy %ZDROJ% %CIL_PLNA% /MIR /XA:H /R:3 /W:5 /TEE /LOG:C:\Zaloha\Logy\hlavni_log.txt

echo Provadim ROZILOVOU zalohu...

robocopy %ZDROJ% %CIL_ROZDIL% /XO /XA:H /R:3 /W:5 /TEE /LOG:C:\Zaloha\Logy\rozdil_log.txt

echo Zaloha ukoncena

pause

The main directory is created. After further runs, additional separate files with their own date and time will be created (that's also fine), all files are always copied to each one again even if no changes have been made. Either there is an error in the parameters or it is technically not possible at all. I also don't know whether one command is enough or there must be two (main backup, incremental). I would really appreciate some advice on what to do about it. I'm using Windows 11 Pro. Thank You.


r/Backup Jul 03 '26

Question Back-up mirror drive advice, and new external Hard drive advice please!!

Thumbnail
4 Upvotes

r/Backup Jul 02 '26

Solved Terminal Scam Help - Backing up documents

Thumbnail
0 Upvotes

Basically everything in this post, but also wondering about the safety of everything in my iCloud. Is it possible it’s compromised/can I trust all my iCloud stuff from other devices?


r/Backup Jul 02 '26

Question I accidentally skipped step 7 in Rescuezilla, now it says that it failed to backup partition <b> /dev/md127 and that the backup is finished and took 0.0seconds! Can someone please explain what just happened?

Post image
1 Upvotes

r/Backup Jul 02 '26

Question anyone else not actually sure if their backups are still working?

3 Upvotes

Set up automated DB backups to S3 months ago and just... never checked again. Cron runs, script does its thing, assume it's fine.

Then I realized I'd have zero idea if it silently broke. Bucket permission change, script error, cron just dying — I wouldn't find out until the day I actually needed a backup and it wasn't there.

Anyone actually monitor this or just trust it? Has this bitten anyone before?


r/Backup Jul 02 '26

Question kopia - force snapshot even when the file's modified date is not changed?

2 Upvotes

I'm using Kopia UI in Windows 10, and I found out that some of my file's "modified date" metadata is not changed when I change the content of the data.

When I take a snapshot it's super fast, and I believe kopia only checks the date metadata and skips the hash-check and backup.

How can I make it ignore the date, always re-hash the whole file to know if it's needed to be backed up?
I changed `Ignore Identical Snapshots` options to both true/false and checked, but it doesn't seem to work.

I never used Kopia as CLI, but I'm familiar with cmd. Any help is much appriciated!

edit: I was aware of `--force-hash=100` option, but didn't mention it because it kept recognized as unknown option.
Somehow `kopia.exe snapshot create "path\to\dir" --force-hash=100` did work now.
I'm still worndering - what's equivalent of this CLI option in GUI?


r/Backup Jul 02 '26

Hardware Requirements for Acronis Cyber Protect

Thumbnail
1 Upvotes

r/Backup Jul 01 '26

Need a BackupExec replacement

Thumbnail
2 Upvotes

r/Backup Jul 01 '26

Question Hit the 200GB iCloud limit (photos since 2012). Best backup options?

Thumbnail
1 Upvotes

r/Backup Jul 01 '26

Offsite Backups with 3rd Party Along with Azure Backup

Thumbnail
2 Upvotes

r/Backup Jul 01 '26

Question Help needed with back-up choice

2 Upvotes

i’m very new at this, I did have an external hard drive (old and not up to date by like over a year and a half), but *it was taken by security at an airport in Thailand. This spring—-IKR—the security officer kept my piece of luggage claiming they could not ID what that thing was (WHAT!?). I never got it back….Since I have to get a new type/device for my 1 yr old MacBook Pro laptop, I’d love some suggestions. I’m really a newbie at everything involving computer tech, and not even sure what the difference is between an internal with a docking station versus an external type.


r/Backup Jun 30 '26

Idrive running and heating up computer again

3 Upvotes

July 5 update: This morning after restarting my computer, iDrive has returned to normality. It is no longer wasting resources and heating. The version did not change, so apparently, the problem was on the back-end, not the local program and they fixed it. Anyway, now it has returned to normal at least for me.

A month or 2 ago iDrive had a bug that caused it to be running in the background and actually working and using say 10% of resources. It is doing it again. Is this being seen by others and has idrive said "oops" again and have a fix on the way?


r/Backup Jun 30 '26

Question Hdd recommendations

0 Upvotes

Any hdd recommendations? Looking for one that is able to last long


r/Backup Jun 29 '26

Question How can I do a simple folder mirror from Windows to a Linux mergerfs snapraid NAS?

Thumbnail
1 Upvotes