Board logo

Saving same doc etc in 2 locations at once
madrallysport - 15/10/09 at 09:32 AM

Guys i back my pc up every month, but it takes ages, is there a way of saving a doc to 2 locations at once, ie if i save a picture to my c drive is there away it can be saved to my external hard drive at the same time?

hope this makes sense.


MK9R - 15/10/09 at 09:37 AM

i use an online sync application called drop box. When the file is updated on my PC, it update sthe online version, it also means you can use more than one PC to access the files, but also have the file stored on every hard drive of all the computers you use.


BenB - 15/10/09 at 09:41 AM

What like a RAID array?


madrallysport - 15/10/09 at 09:55 AM

quote:
Originally posted by BenB
What like a RAID array?



Ben not sure what this is sorry.

MK9r drop box is cool,


britishtrident - 15/10/09 at 10:02 AM

No easy way of doing it also if you get a virus or malware it will infect both sets of data.

You don't need to back up every document every time you back up just use software that will do an incremental back up (ie only changed files are backed up) with a full back every few months.
Cobian backup will do this for you and it is 100% free and very reliable.

http://www.educ.umu.se/~cobian/cobianbackup.htm


JoaoCaldeira - 15/10/09 at 10:35 AM

Either get a free software to backup your files to your USB disk OR have a cheap network RAID (2 discs for mirror) and the proper software doing backups every time you connect to your home network / scheduled / on demand for the proper thing (Actually, disks should be away from your home as in case of a fire / flood / ... both laptop and disks array could be destroyed) or, more easely, ....
For the later, something like a ReadyNas Duo does the trick and is quite inexpensive.

Joao


britishtrident - 15/10/09 at 10:43 AM

A Raid Mirror pair is only protection against hardware failure, it won't protect against getting your files destroyed by malware or a hacker.

[Edited on 15/10/09 by britishtrident]


Surrey Dave - 15/10/09 at 11:12 AM

I use Beyond Compare 2 seems easy and fast enough.


madrallysport - 15/10/09 at 01:45 PM

quote:
Originally posted by britishtrident
No easy way of doing it also if you get a virus or malware it will infect both sets of data.

You don't need to back up every document every time you back up just use software that will do an incremental back up (ie only changed files are backed up) with a full back every few months.
Cobian backup will do this for you and it is 100% free and very reliable.

http://www.educ.umu.se/~cobian/cobianbackup.htm


Thanks guys for the advice, used the above, worked a treat and it'll only back up new files not the whole thing each time,

again thanks


motorcycle_mayhem - 15/10/09 at 03:56 PM

Well, here's the joy of Unix (whatever flavour), you can do so much. It means not handing Microsoft vast amounts of money and using something that you build yourself from Share/Freeware, free! Hey, it's a Locost!

Here's a script that does exactly what you need, which I wrote for automatically moving multiple copies of datafiles around, anywhere.

Get yourself a Red Hat...!


> /* path to current fid directory */
> sprintf(dataset, "/%s/data/%s/nmr/%s/%d/pdata/1/", disk, user, name,
> expno);
>
> if ( ( pipe=popen(login, "w" ) != NULL )
> {
> fprintf(pipe, "lcd %sn", dataset);
> fprintf(pipe, "mkdir %sn", name);
> fprintf(pipe, "cd %sn", name);
> fprintf(pipe, "mkdir %dn", expno);
> fprintf(pipe, "cd %dn", expno);
> fprintf(pipe, "put fidn";
> fprintf(pipe, "put acqusn";
> fprintf(pipe, "mkdir %d..... put etc.)
> pclose(pipe);