[Bug 10518] rsync hangs (100% cpu)

2014-03-27 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10518 --- Comment #3 from roland 2014-03-27 22:29:42 UTC --- large file involved? have a look at this: http://www.anchor.com.au/blog/2013/08/out-tridging-tridge/ -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email --- You are

Re: How would I make dir2 a copy of dir1 w/hardlinks for the files?

2014-03-27 Thread Kevin Korb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 You asked about copying dir1 to dir2 using hardlinks instead of actual files. That would mean that dir1 exists. Maybe we are talking backwards? The dir listed on the command line twice is the one that exists and the the one listed once is the one yo

Re: How would I make dir2 a copy of dir1 w/hardlinks for the files?

2014-03-27 Thread Linda A. Walsh
Kevin Korb wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The rsync equivalent to cp -al would be: rsync -a --link-dest=/path/to/dir1 /path/to/dir1/ /path/to/dir2/ Note that I switched to absolute paths since rsync considers - --link-dest relative paths to be relative to the target so the