Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Decent Freeware backup software

Options
  • 10-06-2013 9:27pm
    #1
    Registered Users Posts: 6,496 ✭✭✭


    I am looking for decent backup software that can work as a comparator when finished so I am not backing up everything each time and spending hours looking at it working.

    There is loads of software that just backs up the entire folder but few seem work as a comparator very well. I only want files that change in the parent directory to be added to the backup to minimise the time it takes.

    I have tried a few and I do not like them. The last one was syncbreeze to backup to an external USB drive but it keeps loosing my settings and writes the backup back on top of the parent directory on occasion.

    Anyone using a reliable one ?


Comments

  • Registered Users Posts: 1,193 ✭✭✭liamo


    I use FreeFileSync to back up a number of folders to a NAS. Works perfectly every time.

    Another useful utility for backing up from one PC to another is DeltaCopy. With the software installed on both PCs, one side acts as a server and the other as a client. Only the changes in a file are copied, instead of the entire file. Very useful.

    Hope this helps.

    Liam


  • Registered Users Posts: 8,398 ✭✭✭Gadgetman496


    I've been using AllwaySync for years and it has never let me down. It does exactly what you're looking for too

    "Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid."



  • Closed Accounts Posts: 5,756 ✭✭✭demanufactured


    Synctoy


  • Registered Users Posts: 10,636 ✭✭✭✭28064212


    If you're comfortable with the command line and batch files, robocopy is great. Built-in to Windows, and infinitely configurable. I've tried various backup programs, but they just never have quite enough options. Plus, you're relying on a third-party company to continue to support their software, robocopy will always be supported

    Boardsie Enhancement Suite - a browser extension to make using Boards on desktop a better experience (includes full-width display, keyboard shortcuts, dark mode, and more). Now available through your browser's extension store.

    Firefox: https://addons.mozilla.org/addon/boardsie-enhancement-suite/

    Chrome/Edge/Opera: https://chromewebstore.google.com/detail/boardsie-enhancement-suit/bbgnmnfagihoohjkofdnofcfmkpdmmce



  • Registered Users Posts: 851 ✭✭✭TonyStark


    28064212 wrote: »
    If you're comfortable with the command line and batch files, robocopy is great. Built-in to Windows, and infinitely configurable. I've tried various backup programs, but they just never have quite enough options. Plus, you're relying on a third-party company to continue to support their software, robocopy will always be supported

    +1 for RoboCopy. Currently looking it at mirroring some files and folders on a drive. :-) Does what it says on the tin.


  • Advertisement
  • Registered Users Posts: 6,496 ✭✭✭Damien360


    Thanks for the replies. Really appreciate it.
    liamo wrote: »
    I use FreeFileSync to back up a number of folders to a NAS. Works perfectly every time.

    Another useful utility for backing up from one PC to another is DeltaCopy. With the software installed on both PCs, one side acts as a server and the other as a client. Only the changes in a file are copied, instead of the entire file. Very useful.

    Hope this helps.

    Liam

    I will look closer at those two. Have'nt used them before. Thanks
    I've been using AllwaySync for years and it has never let me down. It does exactly what you're looking for too

    tried that and it failed to sync correctly. re-wrote the time on all the files and made finding ones by date impossible after.
    Synctoy

    MS software that I tried but I had to point to the folders each time. It could not keep particular folders in memory so I could just click on one link each time.
    28064212 wrote: »
    If you're comfortable with the command line and batch files, robocopy is great. Built-in to Windows, and infinitely configurable. I've tried various backup programs, but they just never have quite enough options. Plus, you're relying on a third-party company to continue to support their software, robocopy will always be supported

    I thought I was comfortable with command line as I learned in DOS many moons ago but I looked at the options on a html help file and it is very extensive, to the point of complicated. Might give that a miss. Thanks anyway.


  • Registered Users Posts: 10,636 ✭✭✭✭28064212


    Damien360 wrote: »
    I thought I was comfortable with command line as I learned in DOS many moons ago but I looked at the options on a html help file and it is very extensive, to the point of complicated. Might give that a miss. Thanks anyway.
    Ah you can dump most of the options straightaway. A very simple example would be:
    robocopy "C:\Users\name\Documents" "\\networkdrive\backup\target\Users\name\Documents" /MIR /np /xj /w:1 /r:1
    
    /MIR is the important option, it just means mirror the first directory to the second
    /np is 'quiet' mode, don't output the progress bars
    /xj means don't copy junctions, you can end up in infinite loops on Windows if you don't include this
    /w:1 and /r:1 are for files that robocopy can't access, w is number of seconds to wait before retrying, and r is the number of retries to attempt (the defaults are to keep trying indefinitely)

    Running this command means you end up with an exact copy of your documents folder on \\networkdrive. Running it in the future will just update the files that have changed, and delete files from the backup if they're been deleted from the source.

    NB: Never edit the backup! Any changes made to the backup could be mirrored back to the source

    Boardsie Enhancement Suite - a browser extension to make using Boards on desktop a better experience (includes full-width display, keyboard shortcuts, dark mode, and more). Now available through your browser's extension store.

    Firefox: https://addons.mozilla.org/addon/boardsie-enhancement-suite/

    Chrome/Edge/Opera: https://chromewebstore.google.com/detail/boardsie-enhancement-suit/bbgnmnfagihoohjkofdnofcfmkpdmmce



Advertisement