help with information on backups

dieharrd

New member
I was wonder if there is a way to backup files from a Linux machine from a Window 2000 server. I did some research...but it only leads to site that offer hardware/software packages that are priced like $3000+.

I was wondering if you can use Windows' backup utilities to do it.
Is there a script that can be run or something?


Thanks in advance.
 
Yes,
There are MANY ways to do this. I am not sure whether you are backing up

linux --> windows

or

windows --> linux

You could do both methods using rsync and SAMBA.

Just run SAMBA on your linux server, share something like "/backup." or if you need too /.

Or if you are backing up a windows machine mount the windows machine's SAMBA shares on the linux machine.

Rsync the two directories. (You can use Rsync locally)

Be sure to lock down samba, this might be the one flaw in this system, it should preferrably only listen on a private network so there is no fear of outside exploitation.

If you want a simpler technique, just use SCP and copy the files across, I believe you can get a basic SSH server for windows 2k so this would work in either direction.

thanks,
Ben
 
Top