• Re: NAS Backup solution?

    From scott@scott@alfter.diespammersdie.us (Scott Alfter) to comp.sys.raspberry-pi on Mon Jul 7 15:36:40 2025
    From Newsgroup: comp.sys.raspberry-pi

    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.
    --
    _/_
    / v \ Scott Alfter (remove the obvious to send mail)
    (IIGS( https://alfter.us/ Top-posting!
    \_^_/ >What's the most annoying thing on Usenet? --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Brian Howlett@news-spamtrap@brianhowlett.me.uk to comp.sys.raspberry-pi on Mon Jul 7 16:58:38 2025
    From Newsgroup: comp.sys.raspberry-pi

    On 7 Jul, scott@alfter.diespammersdie.us (Scott Alfter) wrote:

    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.

    Thanks for the suggestion.

    I bought a USB drive and formatted it to ext4 and used rsync to back up
    the Pi 5.
    --
    Brian Howlett ----------------------------------------------------------------------
    There is more money being spent on breast implants and Viagra today
    than on Alzheimer's research. This means that by 2040, there should
    be a large elderly population with perky boobs and huge erections and absolutely no recollection of what to do with them...
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Lawrence D'Oliveiro@ldo@nz.invalid to comp.sys.raspberry-pi on Mon Jul 7 22:11:39 2025
    From Newsgroup: comp.sys.raspberry-pi

    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.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Theo@theom+news@chiark.greenend.org.uk to comp.sys.raspberry-pi on Mon Jul 7 23:47:57 2025
    From Newsgroup: comp.sys.raspberry-pi

    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.

    Theo
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Lawrence D'Oliveiro@ldo@nz.invalid to comp.sys.raspberry-pi on Tue Jul 8 22:02:52 2025
    From Newsgroup: comp.sys.raspberry-pi

    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?
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Theo@theom+news@chiark.greenend.org.uk to comp.sys.raspberry-pi on Wed Jul 9 12:50:27 2025
    From Newsgroup: comp.sys.raspberry-pi

    Lawrence D'Oliveiro <ldo@nz.invalid> wrote:
    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?

    That page is 20 years old!

    The rsnapshot utilitiy will take care of rotating your snapshots (keeping
    N daily/weekly/monthly etc) which pure rsync won't do.

    It looks like it can optionally use --link-dest with a config option:

    link_dest 1

    If your version of rsync supports --link-dest (2.5.7 or newer), you can
    enable this to let rsync handle some things that GNU cp or the built-in
    subroutines would otherwise do. Enabling this makes rsnapshot take a
    slightly more complicated code branch, but it's the best way to support
    special files on non-Linux systems.

    Theo
    --- Synchronet 3.21a-Linux NewsLink 1.2