rsync and "zip" windows server 08 to centos 5.7


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers rsync and "zip" windows server 08 to centos 5.7
# 1  
Old 03-15-2012
Question rsync and "zip" windows server 08 to centos 5.7

Hi All,

Im new to the forum and have only been using centos or any kind of linux for about 3months. Please forgive the possible stupid question and the mix of windows words where i don't know the linux equivalent.

Looking for a bit of advice, relating to rsync(ing) a windows machine. Ive looked through google and the forums here and the closest i can find is
(this websites forum)linux/150727-rsync-backup-windows-file-linux-box(add html)
which isn't quite what i want.

What I would like to do - if its possible - is to use a linux server in one data center to connect to up to say 5 different windows 2008/03 servers in a different data center, "zip" the contents of a folder on each then rsync it across. The folders in question are huge - upto 80gb each. My theory is once the initial backup has been done the following backups will be quick because of rsyncs wizardry and the fact the contents dont change much.

Thinking about it now, would probably have to "zip" it after the rsync? Smilie

Anyway, for reasons unknown to me, i'm not allowed to install anything on the windows machines, my boss just won't allow it. So has anyone got any ideas on how this may be accomplished?

If it helps i have admin rights on windows machines and root access on the centos ones.

Thanks for any thoughts on this.
Luke
# 2  
Old 03-15-2012
Without installing anything on Windows machines, it may not be possible. By the way, one good thing is that Microsoft people finally added a little Un*X subsystem in Windows 2008 which includes some useful things like NFS client, etc. I'm not sure if rsync is included in that or not.

So here's my suggestion being a UN*X guy:

Create an NFS share on CentOS machine.
Install the UN*X subsystem tools on Windows machines
(Or you can share the folders on Windows and configure your smbclient on CentOS)
Copy the folders over to your CentOS machine and compress it (guessing you have less storage on Windows machine compared to CentOS)

This may not be as fast as rsync though. Performnace of cifs would be lesser than NFS (have not tested NFS client on Windows). But you can live with it.
This User Gave Thanks to admin_xor For This Post:
# 3  
Old 03-16-2012
thanks for the reply, didnt understand much of it in all honesty but will do research when i get to work.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

2. Linux

Read only access for Group called "Developers" to all folders on the Centos 6.6

Linux Gurus, I need to provide Read only access for particular group of users, they should have Read only access to entire server except their Home directory. I tried using setfacl that's not helping. Can you please suggest is there any other alternate way to address this request. Your help is... (5 Replies)
Discussion started by: shekar777
5 Replies

3. UNIX for Dummies Questions & Answers

"Help with bash script" - "License Server and Patch Updates"

Hi All, I'm completely new to bash scripting and still learning my way through albeit vey slowly. I need to know where to insert my server names', my ip address numbers through out the script alas to no avail. I'm also searching on how to save .sh (bash shell) script properly.... (25 Replies)
Discussion started by: profileuser
25 Replies

4. Shell Programming and Scripting

How to find a file which are not ends with ".zip" and which are ends with "*.log*" or "*.out*"?

I am new to bash/shell scripting. I want to find all the files in directory and subdirectories, which are not ends with “.zip” and which are contains in the file name “*.log*” or “*.out*”. I know below command to get the files which ends with “.log”; but I need which are not ends with this... (4 Replies)
Discussion started by: Mallikgm
4 Replies

5. Red Hat

Nagios is sending "Service Alert: CentOS 5/HTTP is WARNING"

Hello All, I have setup Nagios 3.2.3 on CentOS release 5.7 (Final) with the default config files and added 1 host to it and it is sending "Service Alert: CentOS 5/HTTP is WARNING" frequently, how do you fix this one? what are the additional files that need to be added so that I can monitor the... (0 Replies)
Discussion started by: lovesaikrishna
0 Replies

6. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

7. UNIX for Dummies Questions & Answers

Explain the line "mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'`"

Hi Friends, Can any of you explain me about the below line of code? mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'` Im not able to understand, what exactly it is doing :confused: Any help would be useful for me. Lokesha (4 Replies)
Discussion started by: Lokesha
4 Replies
Login or Register to Ask a Question