Questions tagged [rsync]

Rsync is a fast and extraordinarily versatile file copying tool. It can copy locally, to/from another host over any remote shell, or to/from a remote rsync daemon

Rsync is a fast and extraordinarily versatile file copying tool. It can copy locally, to/from another host over any remote shell, or to/from a remote rsync daemon. It offers a large number of options that control every aspect of its behavior and permit very flexible specification of the set of files to be copied. It is famous for its delta-transfer algorithm, which reduces the amount of data sent over the network by sending only the differences between the source files and the existing files in the destination. Rsync is widely used for backups and mirroring and as an improved copy command for everyday use.

Rsync website

1595 questions
0
votes
1 answer

rsync via ssh from linux to windows sbs 2003 protocol mismatch

I am trying to backup my linux webserver to our local windows sbs 2003 server in the office. I have set up ssh and cwrsync on the windows server and have confirmed that the linux server can reach the windows server via the command: ssh…
0
votes
1 answer

Cygwin Scp or Rsync permissions

Why is it that whenever I Scp or Rsync files from my Windows machine using cygwin to my Ubuntu server. The copied files will all have no permissions. Rsync doesn't even work because it cannot copy files into the folders which don't have the +x…
verhogen
  • 333
  • 2
  • 4
  • 14
0
votes
1 answer

Moving a lot of small files between servers using rsync

I'm moving a lot of files (about 2 millions) between two servers on different locations using rsync over ssh, it seems to work fine but I just realised I'm losing some files on the process. I got server 1, with the original data, and server 2, with…
Adirael
  • 135
  • 1
  • 6
0
votes
1 answer

how to restore backup from rsync

I want to restore a backup. With respect to rsync I have a doubt If the server A on which I have to restore backup from a USB disk I do as follows rsync -avz /usb/disk -e ssh root@IP:/ will it over write all the files on server A with the ones on my…
Bond
  • 781
  • 4
  • 12
  • 22
0
votes
1 answer

rsync doesn't use delta transfer on first run

I'm trying to synchronize a large local directory (with a batch file using rsync 3.0.7 on Cygwin, Windows 7 x64, 30k files, 200gb size) to a remote server (Debian x64 with kernel 2.6, rsyncd 3.0.7) over a slow internet connection (90kbyte/s…
ockzon
  • 1
0
votes
1 answer

Possible to clone an openVZ VPS to Xen domU for dev purposes?

I've been asked to do some server tuning on a production openVZ VPS to try and get the apache memory usage down. (Apache's been hitting the memory limits and we've been getting fork(): Can't allocate memory a number of times a day.) However, I can't…
Kyle
  • 215
  • 2
  • 10
0
votes
1 answer

Does rsync looks for modified files also

I have an rsync backup with me I want to restore it on a Vmware virtual machine. The back I have is of a Guest OS which is running on LVM and where I want to restore is a guest running on Vmware.My problem is the LVM size was 100GB while the vmware…
Bond
  • 781
  • 4
  • 12
  • 22
0
votes
1 answer

rsync -Wav and hard links

According to the rsync man page: -a, --archive This is equivalent to -rlptgoD. It is a quick way of saying you want recursion and want to preserve almost everything (with -H being a notable omission). The only exception to the above equivalence is…
yael
  • 1,389
  • 4
  • 14
  • 13
0
votes
4 answers

How do I rsync an entire folder based on the existence of a specific file type in that folder

I have a server set up that receives movies to a folder. I then serve these movies using DLNA. But in the initial folder where they end up all kind of files end up. Pictures, music, documents etc. I thought I'd fix this by running the following…
inquam
  • 179
  • 1
  • 13
0
votes
2 answers

Using rsync to take backup of folder

I have a server (Linux) with NAS which is mounted as folder "mount" I have website in "public_html" folder. I want to take backup of website in mount folder automatically at certain intervals for e.g. every hour. I read that there is something…
Ali
  • 251
  • 1
  • 2
  • 9
0
votes
1 answer

Hosted Backup Solution for a customer

I have a potential customer who wants a hosted managed backup solution. Their server is running Windows. Does anyone know of any software (open source is preferred, but free for commercial use is ok) that will allow me to make incremental backups…
jtnire
  • 817
  • 2
  • 8
  • 16
0
votes
1 answer

FTP server syncing

We have a hosted FTP server. We want to sync the data over to S3 every week or so. What would be a good way to do this? I thought maybe resync but it doesn't work with FTP correct? What about csync? Thoughts?
Adam Evers
  • 79
  • 6
0
votes
1 answer

Rsync log parser

What would be a good tool to parse rsync server daemon log files? Thanks in advance
Norba
  • 57
  • 4
  • 11
0
votes
2 answers

cwrsync on Server 2008 R2 as a scheduled task

I have a an rsync(cwrsync) batch file set up to run, backing up several directories daily to a backup server via ssh. I set this batch file to run as a scheduled task, however it does not seem to. Things run perfectly if I run the batch file while…
Jim
  • 1
  • 1
0
votes
1 answer

rsync syncing more than it should

I have the following rsync set up, which is supposed to sync CDR files created during the past day. rsync -av root@vpsrv:'$(find /home/cdrs/*.cdr -type f -ctime -1)' /home/cdrs However, if no files are found, then this command will sync the entire…
Ariod
  • 179
  • 2
  • 5
  • 13