Tagged Questions
2
votes
1answer
80 views
rsync: how to relocate absolute symlinks?
I've pored over the rsync manpage as well as on several related questions here on serverfault. I've played with -R and -L and -l options, but no luck.
Here is the question: when sending a dir from ...
3
votes
3answers
149 views
How to diff two folders by inodes
I'm currently using a script to backup files on my computer.
In a nutshell, it works like this:
rsync --link-dest=$FOLDER/current $SOURCE $DESTINATION
However, I think that my script may be ...
4
votes
2answers
277 views
How to rsync a chroot without breaking symlinks?
I'd like to rsync (backup) a chroot environment from outside the chroot.
For that I first make a lvm snapshot of the chroot volume and then run rsync on that.
The only problem with this approach: ...
3
votes
1answer
599 views
Is there any way to rsync absolute symlinks alone?
I want to sync a big folder hierarchy between two machines.
I want to copy the contents of the symlinks if they are absolute, for eg it points to /some/folder/someFile
I want to retain the symlinks if ...
5
votes
1answer
3k views
Copy symlink AND where it points to using rsync
It doesn't need to be done by rsync, but it would be nice not have to write a script to do this, and rsync is very close to what I want.
"rsync -a" (or -l) can preserve symlinks, and -L can ...