Elektrine lite

← Feed

@confusedpuppy@lemmy.dbzer0.com

Post #3810222

2026-07-07 05:02 UTC

Timeshift is essentially a gui on top of rsync anyway, if you look at what it’s doing behind the scenes. That’s the reason why I chose to learn rsync. I was frustrated with Timeshift. It failed to restore some changes multiple times. It gave me issues with docker. It also had default excludes that were annoying to change as well. I then learned how to make a complete system backup with rsync itself. /, /boot/ and /boot/efi/ has to be done on separate rsync commands. Basically one command per partition. A restore involves flipping the source and destination in the rsync command. It also allows me to boot into a live USB and perform a restore in the event that I really mess up and can’t perform a restore normally through the installed OS. By leaving behind the GUI, I got a lot more flexibility. It’s also a lot more reliable and I’ve had a lot less restore issues.

Replies (1)

  • @Cyber@feddit.uk 2026-07-07 05:56

    I was looking into this recently and un-convinced myself that rsync was handling all the symlinks and permissions correctly. What’s your command options? I was using -Prvtz for ages, then thought I needed an Aa too (from memory)

    Open ##3815729