Any software to do minute-by-minute backup?

1

1

Of all the freeware backup programs I've checked out, the most frequent backup I could do automatically was every hour :( Is there any freeware that can backup my data every minute or so?

I'm talking about a few mega bytes of VERY important data... Preferably over the LAN backup too.

Ranhiru Jude Cooray

Posted 2010-05-23T15:03:24.090

Reputation: 515

Question was closed 2015-01-07T09:57:04.973

Answers

1

Another couple of options you could take a look at:

File Hamster DocShield

There are free versions of both.

One other option for continuous backup would be Comodo Time Machine

However, some users have had problems with the software, so I'd suggest taking a look at the forums before you install this:

Comodo Time Machine - CTM

Pulse

Posted 2010-05-23T15:03:24.090

Reputation: 4 389

Thanx a lot. I believe these two software provides exactly the functionality i require :) – Ranhiru Jude Cooray – 2010-05-24T17:29:36.263

3

I'm not aware of any freeware to do real-time or CDP. If the data is that important, you might have to pony up for some software.

You could try scheduling software like Robocopy, rdiff-backup, or something else to run every minute or so. If the files you want to back up are going to be held open, you'll need to handle that somehow. For Windows, you'll need to use Shadow Copies (VSS). Adi Oltean's Blog has several posts on mounting VSS snapshots to make them easy to copy from, if you're using software that's not VSS-aware. HoboCopy may also be useful.

afrazier

Posted 2010-05-23T15:03:24.090

Reputation: 21 316

Thank you. I checked out Hobocopy. Looks like there is a much more cooler version called RichCopy – Ranhiru Jude Cooray – 2010-05-23T15:29:33.647

-1. I would never trust "very important data" in visual source safe. – Earlz – 2010-05-23T20:45:01.777

1

The nice thing about HoboCopy is that it can use VSS to copy locked files all by itself. No messing about required. @Earlz: VSS stands for Volume Snapshot Service, not Visual SourceSafe.

– afrazier – 2010-05-24T01:23:11.293

@afra ah ok. The first acronym I think of for VSS is source safe. Maybe clarify that(which would edit your answer so I can undo the downvvote :) ) – Earlz – 2010-05-24T07:12:52.453

Hobocopy should do the trick for this one. Thanks for the link! – Isxek – 2010-05-24T09:24:22.327

@Earlz: How's that? :-) – afrazier – 2010-05-24T10:17:38.007

1

What about Dropbox? Set your editor to save it every minute and Dropbox will save it every minute. Also you can revert to previous versions on the Dropbox website. (There is a policy about overuse but I guess you won't edit it 0-24.)

Apache

Posted 2010-05-23T15:03:24.090

Reputation: 14 755

The problem with Dropbox is that it cannot sync open (locked) documents :( – Ranhiru Jude Cooray – 2010-05-23T15:23:43.860

1Yes but what kind of file are you working on? Well. Combine the method with Afrazier. Copy out the file into dropbox every .45 min? – Apache – 2010-05-23T15:48:50.933

1

On a Unix system, you could roll your own Bash script for doing this. You could use rsync to backup any and all changes in one or more directories to an external drive, or to an external machine (if you have SSH connectivity).

You could also do this in Windows, by installing Cygwin and making sure you include rsync (it may be part of the default Cygwin, but I'm not sure). Your script could do a loop, sleeping for one minute between backups. You could also have the script just do a single backup and schedule it via cron (in Unix systems at least) once per minute. To backup up directory /foo/bar from your localhost to /backups/mymachine/foo/bar in a remote host, you could do:

$ rsync -zave ssh /foo/bar/ remotehost:/backups/mymachine/foo/bar

Marnix A. van Ammers

Posted 2010-05-23T15:03:24.090

Reputation: 1 978

Thank you Marnix but i forgot to mention it was a Windows system :) – Ranhiru Jude Cooray – 2010-05-23T15:26:01.593

3

There are several reliable builds of rsync for Windows. There is a full cygwin suit (http://www.cygwin.com/), cwrsync which is the cygwin port pulled out so you don;t need a larger install if all you need is rsync (http://www.itefix.no/i2/cwrsync) and a few other common builds.

– David Spillett – 2010-05-23T16:57:13.233

1

I always use cron and rsync for backups. Make a script like:

#!/bin/sh
#/home/ranhiru/bin/backup.sh
# KEEP SLASHES!
src=/home/ranhiru/Movies/
dst=/home/ranhiru/backups/Movies/
host=remote.server

rsync -a -q --partial --size-only $src/ $host:$dst/

and make a file:

#/home/ranhiru/.crontab
# cron needs PATH variable set
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
# run this script EVERY 2 MIN
*/2    *    *    *    *    /home/ranhiru/bin/backup.sh

run

chmod u+x /home/ranhiru/bin/backup.sh

and finally,

crontab /home/ranhiru/.crontab

Felipe Alvarez

Posted 2010-05-23T15:03:24.090

Reputation: 1 666

Using windows! why haven't you switched yet ;) I think ppl here will assume GNU/Linux unless posted otherwise. Good luck – Felipe Alvarez – 2010-05-24T06:30:07.937

1

user38080

Posted 2010-05-23T15:03:24.090

Reputation:

1

If you store your files on ZFS, either locally with [Open]Solaris or FreeBSD, or remotely if you run any other OS, you might do a snapshot every interval you like and then do a differential incremental send to your backup platform.

jlliagre

Posted 2010-05-23T15:03:24.090

Reputation: 12 469

1

I have been pleased with a program call SyncBack. A free version is availabe (truely free, not just free to try) that uses the Windows Task Scheduler to schedule the backup jobs.

SteveM82

Posted 2010-05-23T15:03:24.090

Reputation: 246

1

Just get another harddrive to mirror your primary drive. That way everything written to one is written to the other... live. RAID 0 compliant.

This really sounds like you probably could use a RAID solution. Is this data already hardware-level protected? If it's just on a PC, you can probably add a RAID controller card to it for the extra drives to be setup. If it's on a server, it probably has RAID capability on it. You don't mention what the PC it is, other than windows. What version of windows? What sort of hardware (PC? Server class?)

Elkidogz

Posted 2010-05-23T15:03:24.090

Reputation: 21

1+1 if the question is about protecting from hardware failures. But if one needs protection from software or human failures as well, then RAID will also delete the file from the other if it gets deleted from one... – Arjan – 2010-05-24T11:29:56.637

1

Shamless promotion: I suggest www.FolderTrack.com.

It does a backup up of every save, delete, rename, or file change. It does not have an online backup component, but it does have the fine detailed backup that you want. The software is free using the discount code bos.

Nick

Posted 2010-05-23T15:03:24.090

Reputation: 365

Thanx a lot mate :) This sounds really really cool :) – Ranhiru Jude Cooray – 2010-07-22T03:43:12.617

Please let me know your thoughts on it. Thanks – Nick – 2010-07-22T14:20:03.107

http://buy.foldertrack.com/ gives the godaddy 404 – MetaGuru – 2012-09-14T19:42:50.913