You are not logged in.

#1 2026-06-20 06:26:42

S.C.Franklin
Member
Registered: 2024-05-22
Posts: 22

good backup program?

What is a good backup program to save the HOME directory? I'm using pica but wonder if there is something better. Thanks.

Offline

#2 2026-06-20 14:15:01

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,690

Re: good backup program?


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#3 2026-06-20 19:21:22

topcat01
Member
Registered: 2019-09-17
Posts: 309

Re: good backup program?

My approach is to use the most basic tool possible, and only use something higher level if absolutely needed. rsync is also my primary tool. However, if you want snapshots, then either btrfs/zfs or restic (my preference)/borg can give that to you. I often use the send feature of btrfs for incremental backups and snapshots. So:

- btrfs send+snapshots on Linux
- rsync to back up to my Linux server from !linux OS (I have macos and *BSD, but also works for Windows)
- restic to store backups with snaps in situations where I cannot use btrfs because restic has the best crypto and a data integrity scrub function
  This is also useful to create an encrypted and checksummed store for cloud backup services like Backblaze or Crashplan
- rsync for any kind of file transfer, not cp because rsync has checksum verification for all (new) file copy operations

I'll admit that I'm slightly paranoid about corruption. I'd never store anything important on a non-checksumming filesystem.

Offline

#4 2026-06-20 19:46:04

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,690

Re: good backup program?

This might be a good point to reinforce the following.   A backup is not a backup unless it is tested.   A system is not backed up unless there is a backup that is not on site.


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#5 2026-06-23 08:27:17

massoudd3j
Member
Registered: 2025-10-29
Posts: 2

Re: good backup program?

I use borg backup. it is in CLI and has a learning curve. Also deja dup does the job

Offline

#6 2026-06-23 08:39:02

SimonJ
Member
From: Spain
Registered: 2021-05-11
Posts: 347
Website

Re: good backup program?

I use rsync for local, rclone for remote and backintime for something different. The most important thing is being able to restore without much effort, I also use codeberg for config files.


Rlu: 222126

Offline

#7 2026-06-23 16:58:32

Nikolai5
Member
From: North West, England, UK
Registered: 2024-01-27
Posts: 284

Re: good backup program?

Set up a couple of practice directories for rsync, set up the command how you want it to work.

Make a manual backup first if you plan to use the --delete option, if your backup is going to effectively be a mirror of your current state, but you don't want to accidentally run it in the reverse of what you want.

I just do this to backup my home directory:

rsync --archive -vh -L --delete --exclude-from='exclude-list.txt' ~/ "$BACKUP_TARGET"

Its inside a simple script that checks my external drive is mounted at the expected target location and then executes it.
I exclude things I don't care about, steam directory for example, a bunch of dot directories.
Don't copy that without knowing what those options are doing, as well as --delete, I for example have it following links, which I use to override exclusions, such as to backup save files from within the excluded steam directory, etc.

But it gives you an idea, that command backs up everything I care about, there's not much to that command, and now its set up, I plug my drive in, execute the script I have that in and job done, easy.

Last edited by Nikolai5 (2026-06-23 17:08:22)


Ryzen 7 9850X3D | AMD 7800XT | KDE Plasma

Offline

#8 2026-06-23 18:41:28

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,995

Re: good backup program?

rsync also has nice options for snapshots/differential updates (if you're not maintaining dotfiles or other configs with git)
https://wiki.archlinux.org/title/Rsync# … _on_a_week
https://wiki.archlinux.org/title/Rsync#Snapshot_backup

Online

Board footer

Powered by FluxBB