Sysop: | Amessyroom |
---|---|
Location: | Fayetteville, NC |
Users: | 23 |
Nodes: | 6 (0 / 6) |
Uptime: | 54:45:04 |
Calls: | 583 |
Files: | 1,139 |
D/L today: |
179 files (27,921K bytes) |
Messages: | 111,801 |
I've (fairly) recently become the proud owner of a Pi5 running Raspberry
Pi OS. Storage is a 250 Gig NVMe drive.
I also have a Synology NAS.
I'm looking for suggestions on software I can use to back up the Pi5 to
the NAS. I've seen conflicting suggestions on various sites, so thought I >would come to the fount of all knowledge that is Usenet.
In article <f881ae305c.BrianNews@brianhowlett.me.uk>,
Brian Howlett <brian@brianhowlett.me.uk> wrote:
I've (fairly) recently become the proud owner of a Pi5 running Raspberry
Pi OS. Storage is a 250 Gig NVMe drive.
I also have a Synology NAS.
I'm looking for suggestions on software I can use to back up the Pi5 to
the NAS. I've seen conflicting suggestions on various sites, so thought I >>would come to the fount of all knowledge that is Usenet.
Depending on what's being backed up, I use either duplicity or rclone for online storage. Both of them will back up to S3-compatible object storage.
At work, we have a Synology RS3621RPxs on which MinIO is running in a Docker container to provide local object storage. It holds archived VM data stored with rclone, among other things.
I bought a USB drive and formatted it to ext4 and used rsync to back up
the Pi 5.
On Mon, 07 Jul 2025 16:58:38 +0100, Brian Howlett wrote:
I bought a USB drive and formatted it to ext4 and used rsync to back up
the Pi 5.
DonrCOt forget the tips on how to keep a rolling set of timestamped backups, without needing space for extra copies of files which havenrCOt changed.
Lawrence D'Oliveiro <ldo@nz.invalid> wrote:
On Mon, 07 Jul 2025 16:58:38 +0100, Brian Howlett wrote:
I bought a USB drive and formatted it to ext4 and used rsync to back
up the Pi 5.
DonrCOt forget the tips on how to keep a rolling set of timestamped
backups, without needing space for extra copies of files which havenrCOt
changed.
rsnapshot does that for you, using rsync and hard links.
On 07 Jul 2025 23:47:57 +0100 (BST), Theo wrote:
Lawrence D'Oliveiro <ldo@nz.invalid> wrote:
On Mon, 07 Jul 2025 16:58:38 +0100, Brian Howlett wrote:
I bought a USB drive and formatted it to ext4 and used rsync to back
up the Pi 5.
DonrCOt forget the tips on how to keep a rolling set of timestamped
backups, without needing space for extra copies of files which havenrCOt >> changed.
rsnapshot does that for you, using rsync and hard links.
Sure, these convenient wrappers around rsync handle some common cases
with less work. But they still donrCOt offer the full power and
generality of rsync itself.
Also, rsnapshot refers to this article <http://www.mikerubel.org/computers/rsync_snapshots/>, which has been obsoleted by the addition of --link-dest to rsync. Does rsnapshot make
use of that to simplify things?