Displaying 1 result from an estimated 1 matches for "havx".
Did you mean:
have
2009 Mar 31
5
DO NOT REPLY [Bug 6240] New: rsync 3.0.x -x/--one-file-system regression?
...# mkdir /testing
# mount -t tmpfs -o size=1M,nr_inodes=1000,mode=0700 tmpfs /testing
# touch /testing/{a,b,c,d,e}
# mkdir /testing/foo
# mount -t tmpfs -o size=1M,nr_inodes=1000,mode=0700 tmpfs /testing/foo
# touch /testing/foo/{a,b,c,d,e}
# mkdir /tmp/moo
# cd /tmp/moo
# touch a b c d e
# rsync -Havx --delete . /testing/
sending incremental file list
./
deleting foo/e
deleting foo/d
deleting foo/c
deleting foo/b
deleting foo/a
rsync: delete_file: rmdir(foo) failed: Device or resource busy (16)
a
b
c
d
e
sent 258 bytes received 110 bytes 736.00 bytes/sec
total size is 0 speedup is 0.00
[root...