Tagged Questions
rsync can copy files locally, over ssh or rsh remote shell services, or with a remote rsync daemon. Files can be incrementally updated and rsync provides for file-size and last-modified time update checks. rsync runs on POSIX systems including Linux, BSD, Unix, and Windows (via Cygwin).
25
votes
8answers
8k views
Any good rsync library for Java?
I've been researching a little and I found some rsync algorithm implementations written in Java but it seems all the projects died some time ago.
What is a good Java library implementing rsync? If ...
23
votes
9answers
15k views
Rsync for Windows [closed]
Does anyone know of a tool or framework that provides rsync type functionality for windows. I'd like to write an rsync type program in windows and not actually wrap rsync and cygwin as DeltaCopy ...
19
votes
12answers
9k views
How can I associate .sh files with Cygwin?
I'd like to run a long rsync command in Cygwin by double clicking on a .sh file in Windows. It must start in the file's containing directory (e.g. /cygdrive/c/scripts/) so that relative paths work. ...
13
votes
2answers
1k views
rsync permission denied created directories have no permissions
I'm trying to push changes to my server through ssh on windows (cygwin) using rsync.
The command I am using is:
rsync -rvz -e ssh /cygdrive/c/myfolder/ ...
9
votes
6answers
9k views
Shell command to tar directory excluding certain files/folders
Is there a simple shell command/script that supports excluding certain files/folders from being archived?
I have a directory that need to be archived with a sub directory that has a number of very ...
8
votes
4answers
15k views
rsync error: failed to set times on “foo.txt”: Operation not permitted
I'm getting a confusing error from rsync and the initial things I'm finding from web searches (as well as all the usual chmod'ing) are not solving it:
rsync: failed to set times on "/foo/bar": ...
7
votes
1answer
1k views
rspec errors, missing libraries after installing homebrew and uninstalling macports
I may have taken one step to far beyond my knowledge.
I installed homebrew and after it continued to give me warnings about having macports installed I uninstalled that. But now my rspec tests don't ...
7
votes
3answers
413 views
jar file to use rsync for uploading and downloading files on linux server
I am writing an application for taking backup of user data. In my application i have to perform incremental backup operation. for performing incremental backup i am trying to use rsync algorithm.
i ...
7
votes
2answers
4k views
Two way sync with rsync
I have a folder a/ and a remote folder A/.
I now run something like this on a Makefile:
get-music:
rsync -avzru server:/media/10001/music/ /media/Incoming/music/
put-music:
rsync -avzru ...
7
votes
4answers
2k views
rsync output
I am new to rsync and I do not understand the output I am getting, can someone help me out,
the output contains lines such as,
<f.st...... somefile.txt
<f+++++++++ someOtherfile.zip
...
7
votes
2answers
3k views
Using rsync to delete a single file
File foo.txt exists on the remote machine at: /home/user/foo.txt
It doesn't exist on the local machine.
I want to delete foo.txt using rsync.
I do not know (and assume for the purposes of this ...
7
votes
6answers
2k views
Using emacs tramp vs. rsync for remote development
I have been doing some remote development using emacs tramp and found that it was quite slow. Every time I save a file, it takes about 10 seconds to complete the save. So, now I am using rsync to ...
6
votes
6answers
6k views
Controlling rsync with Python?
I've been wanting to write a python script that would run several instances of rsync in sequence for backing up data to a different computer.
At the moment I just have this text file with the ...
6
votes
5answers
3k views
rsync .git directory
This question probably is based on my lack of understanding of the role of .gits and git repositories in general but:
Can I rsync a dir with content that I created with git init between machines ?
I ...
6
votes
2answers
5k views
Python Subprocess.Popen from a thread
I'm trying to launch an 'rsync' using subprocess module and Popen inside of a thread. After I call the rsync I need to read the output as well. I'm using the communicate method to read the output. The ...
6
votes
4answers
3k views
How can I use rsync to backup files changed within a recent period?
Is it possible to specify a time range so that rsync only operates on recently changed files.
I'm writing a script to backup recently added files over SSH and rsync seems like an efficient solution. ...
6
votes
4answers
3k views
Ftp transfer the rsync-way
I'm downloading a logfile quite often from a ftp-server (which I'm not in control over, btw), and it seems rather rediciolus to download the whole file every time.
So I'm looking for a program ...
6
votes
3answers
1k views
RSync only if filesystem is mounted
I want to setup a cron job to rsync a remote system to a backup partition, something like:
bash -c 'rsync -avz --delete --exclude=proc --exclude=sys root@remote1:/ /mnt/remote1/'
I would like to be ...
5
votes
2answers
2k views
rsync: how can i configure it to create target directory on server?
i would like to rsync from local computer to server. on a directory that does not exist, and i want rsync to create that directory on the server first. how can i do that ?
5
votes
3answers
5k views
using rsync to backup mysql
I use the following rsync command to backup my mysql data to a machine within the LAN network. It works as expected.
rsync -avz /mysql/ root:PassWord@192.168.50.180:: /root/testme/
I just want to ...
4
votes
3answers
1k views
How do you use an identity file with rsync?
How do you use an identity file with rsync?
This is the syntax I think I should be using with rsync to use an identity file to connect:
rsync -avz -e 'ssh -p1234 -i ~/.ssh/1234-identity' \
...
4
votes
2answers
180 views
how to synchronize git-svn repositories
I've been using git-svn for the past three weeks.
Currently my work flow is like this.
ssh into my development box,
create/edit/delete files there(git svn rebase, git checkout -b topic branch)
...
4
votes
4answers
1k views
Looking for cross-platform rsync-like functionality in python, such as rsync.py
I am implementing backup scripts in python. I'm trying to keep things cross platform. I hear there is a python based rsync impelmentation:
http://pypi.python.org/pypi/rsync.py/2.0
But I can't seem to ...
4
votes
1answer
266 views
Uploading and Downloading Files on linux hosting server Using RSync algorithm
i am writing an application in java that takes backup of files on server.It is a windows version application. In my application i have to perform incremental backup operation. For implementing ...
4
votes
2answers
973 views
Best Way to Deploy Zend Web Application
I've read a lot about deploying applications here, but haven't found a suitable answer to our needs yet.
We have a large web application built with the zend framework that we want to deploy to a ...
4
votes
3answers
183 views
How do I sync two local file structures
I have two large source trees. One of them has some out of date image files. I would like to automatically update all the old image files (png, jpg, gif) in one source tree with the up to date image ...
4
votes
1answer
402 views
How does the rsync algorithm correctly identify repeating blocks?
I'm on a personal quest to learn how the rsync algorithm works. After some reading and thinking, I've come up with a situation where I think the algorithm fails. I'm trying to figure out how this is ...
4
votes
1answer
224 views
rsync synchronisation omitting directories
OK, I'm probably not the first person to attempt to put together a PHP web-based interface to rsync to ease deployment, but there goes.
We have a 'QA' server locally and a 'Staging' server at ...
4
votes
4answers
2k views
cygwin + rsync
I would like to backup a dir in Win XP on a Solaris server via rsync. I installed cygwin but when I type rsync I get 'command not found'. How can I install rsync? And how can I install ssh. I have ...
4
votes
5answers
3k views
Technical Hurdles for Win32 rsync port
Despite primarily being a windows user, I am a huge fan of rsync. Now, I don't want to argue the virtues of rsync vs any other tool...this is not my point.
The only way I've ever found of running ...
4
votes
10answers
1k views
Securely sync folders over a public network
I need to keep the files & folders on two Windows-based, non-domain machines synchronized across a public network.
I was thinking rsync over SSH - but I was wondering if there is a simpler ...
3
votes
3answers
249 views
Monitoring Rsync Progress
I'm trying to write a Python script which will monitor an rsync transfer, and provide a (rough) estimate of percentage progress. For my first attempt, I looked at an rsync --progress command and saw ...
3
votes
1answer
421 views
How do services like Dropbox implement delta encoding if their files are stored in the cloud?
Dropbox claims that during syncing only the portion of files that changes are transmitted back to main server, which is obviously a great functionality, but how do they perform changes to files stored ...
3
votes
1answer
136 views
Checking for availability of network disk on mac
I'm creating myself a script to automate the backing up of certain directories on my mac to an airdisk (usb disk on my airport extreme).
I was reading up about rsync. It seems that if the airdisk ...
3
votes
2answers
760 views
Sync local and remote folders using rsync from php script without typing password
How can I sync local and remote folders using rsync from inside a php script without beeing prompted to type a password?
I have already set up a public key to automate the login on remote server for ...
3
votes
1answer
135 views
how to safely receive files from end-users via rsync
I'd like to allow users of my web application to upload the contents of a directory via rsync. These are just users who've signed up online, so I don't want to create permanent unix accounts for them, ...
3
votes
3answers
2k views
rsync permissions question — destination perms not properly applying
This is what I'm trying to do:
rsync -rvl --chmod=ug=rwX,o=rX test /var/www
and after I do it, here are the results I get:
drwxr-xr-x
(Actually it's drwxr-sr-x, but that's probably not important ...
3
votes
1answer
131 views
How to rsync files matched by .hgignore between two hg repositories
How would you rsync files that are not tracked by mercurial between two repositories?
My .hgignore looks like this:
syntax: glob
*.mat
*.pdf
*.asv
*.bz
*.tar
*.zip
*.7zip
*.rar
*.gz
*.wmv
*.png
...
3
votes
3answers
2k views
rsync --delete --files-from=list / dest/ does not delete unwanted files
as you can see in the title i try to sync a folder with a list of files. I hoped that this command would delete all files in dest/ that are not on the list, but it didn't.
So i searched a little bit ...
3
votes
2answers
2k views
RSync: How do I synchronize in both directions?
I want to use rsync to synchronize two directories in both directions.
I refer to synchronization in classical sense
(not how it is meant in rsync manuals):
I want to update the directories in both ...
3
votes
3answers
811 views
Ensuring data integrity of mysqldump <-> rsync
I use rsync to back up the files on my server, and mysqldump to back up my database. Here's my concern:
A mysqldump on my database takes about 30 seconds. I have a table called photos that stores ...
3
votes
2answers
216 views
Sync without scanning individual files?
Consider two directories:
/home/user/music/flac
/media/MUSIC/flac
I would like the second directory (destination; a USB drive) to contain the same files and structure as the first directory ...
3
votes
2answers
831 views
VIM: RSync on save
I'm looking for a way to map the :w command so that when I use it, it will rsync the current directory and save the file in question. Ideally, the response generated by the rsync command should be ...
3
votes
4answers
3k views
Is there any .NET API using rsync?
I need to have a file synchronizing feature in my .NET application. Can I make use of rsync? Is there any API available?
3
votes
3answers
1k views
script-file vs command-line: problem with rsync and --exclude
I have a simple test bash script which looks like that:
#!/bin/bash
cmd="rsync -rv --exclude '*~' ./dir ./new"
$cmd # execute command
When I run the script it will copy also the files ending with ...
3
votes
3answers
1k views
How do I tell rsync to run only if the destination directory exists?
I have this bash script running my backup to an external hard drive... only if that drive is mounted (OS X):
DIR=/Volumes/External;
if [ -e $DIR ];
then rsync -av ~/dir_to_backup $DIR;
else echo ...
3
votes
5answers
3k views
Best way to wrap rsync progress in a gui?
I use rsync to synchronize files to Windows clients in a server agnostic way. What methods are available to send the progress of rsync to the parent process for display in a gui progress bar?
I ...
2
votes
0answers
20 views
How to rsync to local folders from a Django view
I have a site that requires the ability for a logged in admin to push a staging database to a live database. The first thing it does is dump the sql and push to the target database. This works fine, ...
2
votes
2answers
36 views
How to get a dynamic row using subprocess?
I'm creating a python script that runs rsync using subprocess and then gets the stdout and print it.
But there is a problem. When rsync starts to upload files, it shows the current file, speed and ...
2
votes
2answers
47 views
rename subfolder to parentfolder, remove 'extra' folder
got this problem when i messed up with an rsync and forgot to add a trailing slash.
So now i've got an extra folder.
Current foldertree
/Volumes/hd/images1/images1/
/Volumes/hd/images2/images2/
...