You are not logged in.
Pages: 1
What is a good backup program to save the HOME directory? I'm using pica but wonder if there is something better. Thanks.
Offline
I am partial to rsync
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
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
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
Pages: 1