Displaying 3 results from an estimated 3 matches for "jmitchell".
Did you mean:
mitchell
2006 May 18
1
Partial files left on SIGINT
...rred files should be deleted. However this is not what
I'm seeing.
Example:
(Using a big file so that rsync times a while to run. This gives me time
to hit CTRL-C for the SIGINT).
> mkdir example
> dd if=/dev/zero of=example/big_file bs=1024 count=102400
> ls -l example
-rw-r--r-- 1 jmitchell users 104857600 2006-05-18 16:33 big_file
> rsync -ptgou example/big_file .
# Let it run for a couple of seconds to start running, then hit CTRL-C
rsync error: received SIGINT, SIGTERM, or SIGHUP (code 20) at
rsync.c(242) [sender=2.6.8]
rsync: writefd_unbuffered failed to write 78 bytes [gene...
2006 Jan 30
1
Overwriting source file leaves destination full of zeros
Hi,
I'm a little confused over what I'm seeing when a source file is
overwritten whilst an rsync is in progress. Instead of the destination
file being truncated, or an error being raised and the destination file
removed, I get a file of the correct length, but mostly full of nulls
where previously there were none. An example is shown here:
> ls -l big_file
-rw------- 1 jonm users
2012 Jan 25
2
Server/Client Alive mechanism issues
Hello,
I have a bandwidth-constrained connection that I'd like to run rsync
over through an SSH tunnel. I also want to detect any network drops
pretty rapidly.
On the servers I'm setting (via sshd_config):
ClientAliveCountMax 5
ClientAliveInterval 1
TCPKeepAlive no
and on the clients I'm setting (via ssh_config):
ServerAliveCountMax 5
ServerAliveInterval 1
TCPKeepAlive no
After