Displaying 3 results from an estimated 3 matches for "ahpv".
Did you mean:
acpv
2004 Mar 26
1
2.6.1pre-1 Segmentation fault & other fun
Oops :)
-- quote --
$ rsync -aHPv rsync://host/module/single.file .
<motd, if any>
receiving file list ...
1 file to consider
Segmentation fault
-- endquote --
The rsync process remains running until explicitly 'kill'ed. At which point, the following is printed:
-- quote --
rsync error: received SIGUSR1 or SIGINT (...
2010 Dec 17
4
using rsync to keep squeeze amd64 image freshened.
Hi all,
? ? ? I tried to get my query of how to use rsync by the mailing list
debian-user at lists.debian.org but the answers were not satisfactory.
You can see the whole thread starting from
http://lists.debian.org/debian-user/2010/12/msg00651.html
What I want to do is to keep the weekly amd64 squeeze build , from t
its
2004 Dec 01
1
rsync transfers whole content when a new hardlink is created
...e is an example:
The local directory with a new hardlink to a file:
$ ls -s1i rsync_test/
total 899960
3272008 449980 a_hardlink_to_large_file
3272008 449980 large_file
The remote directory without the new hardlink:
$ ls -s1i fake_remote/
total 449980
4088085 449980 large_file
Rsyncing:
$ rsync -aHPv rsync_test/ fake_remote
building file list ...
3 files to consider
./
a_hardlink_to_large_file
460324864 100% 10.02MB/s 0:00:43
large_file => a_hardlink_to_large_file
wrote 460381234 bytes read 40 bytes 10345646.61 bytes/sec
total size is 920649728 speedup is 2.00
but expected was:...