Hi,

I currently use a program called copywhiz on windows that backs up any files or directories created after a certain date to a usb hard drive and runs once a day.

I want to transition fully to Linux. Is there any easy to use software that works on Linux that can do this?

P.S. I have tried creating a bash script to do this but for some reason it has trouble with the date part. So a software solution would be prefered.

  • Yote.zip@pawb.social
    link
    fedilink
    English
    arrow-up
    17
    ·
    8 months ago

    I’m curious to know more about your “certain date” requirement - this sounds like it might be an XY problem. As for general advanced backup programs, I have two easy recommendations that are similar in featureset:

    The most important parts of real backup software IMO is the ability to compress your backups, version your files with rolling/pruning snapshots, and version your files efficiently with only deltas between them taking extra space. You can also encrypt your backup if you want to store it with a remote party, or run integrity checks to check for bitrot.

    • hallettj@beehaw.org
      link
      fedilink
      English
      arrow-up
      2
      ·
      8 months ago

      Yeah, with those options it’s easier to back up your whole home directory, and then daily backups only take a minute or so and a small amount of additional space to back up what’s changed since the day before.

  • naeap@sopuli.xyz
    link
    fedilink
    arrow-up
    7
    ·
    8 months ago

    I’m using borg with vorta as a front-end, which seems to work quite well, with different possible backup targets

    • NotAnArdvark@lemmy.ca
      link
      fedilink
      arrow-up
      2
      ·
      8 months ago

      2nd’ing Vorta+Borg. It’s also really easy to find off-site backup options compatible with Borg. I’m using BorgBase, which offers ridiculously cheap storage, the choice of EU and US destination, and supports the development of both Vorta and Borg.

        • lemmyvore@feddit.nl
          link
          fedilink
          English
          arrow-up
          1
          ·
          edit-2
          8 months ago

          No benefit other than being a GUI. It has a complex interface that attempts to cover many Borg options but not all.

          I usually suggest Pika Backup instead because it has a very simple GUI that makes it easy to perform one-click backups. If you’re gonna use a GUI might as well get something out of it.

    • smileyhead@discuss.tchncs.de
      link
      fedilink
      arrow-up
      5
      ·
      8 months ago

      Timeshift is for a system backup, in case your system broke for whatever reason you could get back quickly to your work without rebuilding and reconfiguring it. It’s not ment for backing up user files.

  • Kongar@lemmy.dbzer0.com
    cake
    link
    fedilink
    English
    arrow-up
    5
    ·
    8 months ago

    I’m pretty sure there are lots of options that work great. I personally just use rsync-but I know the command line is scary for a lot of people making the transition. There are lots of options like timeshift that basically put a gui wrapper around rsync. I’ve seen a lot of love for borg as well - maybe try one of those two.

    I feel backups are personal and it’s hard to get a “just do this instruction”. You’ll probably have to pick a product, and then do some homework to see if it can do what you want. This is further complicated by the distro you use - or more specifically if your distro uses btrfs. Some people use a backup as a sort of snapshot, and btrfs is more full featured than ext in that regard.

    Good luck!

  • carcus
    link
    fedilink
    English
    arrow-up
    5
    ·
    8 months ago

    I like restic, haven’t seen it mentioned yet.

  • TheCaconym [any]@hexbear.net
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    8 months ago

    If the aim is simply to mirror an existing directory, including mirroring suppression/deletions/new files/edits, and only copying what has changed (which is what I suspect you were trying to emulate with the “created after a certain date” thing), just do:

    rsync -avh -P /path/to/source/ /path/to/destination
    

    If the aim is to copy all files created since, say, three days ago, but not to update existing files or to remove files that have been removed from your source (which is what you described):

    rsync -avh -P --ignore-existing --files-from=<(find -L /path/to/source -ctime -3 -exec basename {} \;) /path/to/source/ /path/to/destination
    

    Edit: lemmy is html encoding my “lesser than” symbol in the second command above; replace accordingly

  • lemmyvore@feddit.nl
    link
    fedilink
    English
    arrow-up
    4
    ·
    8 months ago

    Pika Backup. It’s very easy to use, you select the directories you want to backup and the ones you want to exclude, then your job is over. Every time you ask it to backup it will add the new and changed files to the backup without deleting the old ones. This way the backups only grow with what’s changed.

    You can also ask Pika to schedule automatic backups, or you can ask for one manually if the USB HDD is not plugged in all the time.

  • therealbabyshellOP
    link
    fedilink
    arrow-up
    4
    ·
    8 months ago

    UPDATE: The specific date thing is because every 6 months i backup my nas to LTO tape so this backup is anything that isn’t currently on tape just in case the NAS dies between backups.

    • MangoPenguin@lemmy.blahaj.zone
      link
      fedilink
      English
      arrow-up
      1
      ·
      8 months ago

      Have you looked into using software meant for tape backup for that? It should back up only what’s been changed/added since the last tape backup was done.

    • Holzkohlen@feddit.de
      link
      fedilink
      arrow-up
      2
      arrow-down
      2
      ·
      edit-2
      8 months ago

      You said you run it daily in the post, but now it’s every 6 months. You really should be more specific. I for one don’t understand why you can’t just do rsync -au /source /target

      • therealbabyshellOP
        link
        fedilink
        arrow-up
        1
        arrow-down
        1
        ·
        8 months ago

        i run this backup daily because the from date for it is based on the date of the last 6 monthly backup to tape

  • Minty95@lemm.ee
    link
    fedilink
    arrow-up
    4
    ·
    8 months ago

    Use timeshift, install it, just chose where you want the backups to be installed, preferably a second HD or SD Flash. Chose when like once a day, week at start up for instance and forget it. Then if you screw up your Linux, just start in console mode, timeshift --restore and five mins later your up and running.

    If you want just your data to be copied, then Cron

    Both are standard Linux programs, often already installed depending on what Linux you have

  • smileyhead@discuss.tchncs.de
    link
    fedilink
    arrow-up
    2
    ·
    8 months ago

    I think that for your use case (backing up to an external USB drive) great option would be something based on Borg.

    Vorta and Pika Backup are great graphical tools for Borg program, with the first being more advanced while the latter being simplier.

  • fxt_ryknow@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    8 months ago

    I use Syncthing to do a similar thing. I jus have Syncthing pointed to nfs mount to my Nas. Any files synced to the folder via Syncthing just end up on my Nas.

    • Captain Aggravated@sh.itjust.works
      link
      fedilink
      arrow-up
      2
      ·
      8 months ago

      Don’t consider this a backup. Yes, it could help you survive some failures, but if you simply delete a file by accident on your computer, it’ll get deleted from your NAS as well.

      • axzxc1236@lemm.ee
        link
        fedilink
        arrow-up
        3
        ·
        8 months ago

        Syncthing has built-in file history function, it’s not enabled by default but it’s easy to configure.