Displaying 20 results from an estimated 20000 matches similar to: "--append option description in manpage confusing"
2008 Mar 03
1
--append option description in manpage typo
I just noticed, too late )-:
--append
This causes rsync to update a file by appending data onto the
end of the file, which presumes that the data that already
exists on the receiving side is identical with the start of the
file on the sending side. Any files that are the same size or
shorter on the
2007 May 19
1
rsync --append behavior
I am using rsync 2.6.9 in daemon mode under Cygwin, and having trouble
reconciling its --append behavior with that described in the man page:
The man page says that when you use --append, it will update a file by
appending, which presumes the existing data on the receiving side
matches. But when I run rsync with append mode when the existing file
on the receiving side is shorter than on the
2007 Apr 12
2
error on --copy-dirlinks shortform in manpage
Hi,
A minor bug in the manpage was noticed by a Debian user...
(Please keep the 418923-forwarded@bugs.debian.org in the Cc list in
replies.)
diff -u -r1.399 rsync.yo
--- rsync.yo 23 Jan 2007 15:34:43 -0000 1.399
+++ rsync.yo 12 Apr 2007 19:30:17 -0000
@@ -724,7 +724,7 @@
also ignored. Using this option in conjunction with bf(--relative) may
give unexpected results.
-dit(bf(-K,
2003 May 15
2
single quotes in the manpage
In the manpage, all occurrences of a single quote (or apostrophe) are
preceded by a backslash. This means that these get turned into acute
accents by groff; here's the relevant part of the groff manpage:
\' The acute accent ; same as \(aa. Unescaped: apostrophe, right
quotation mark, single quote (ASCII 0x27).
I think all these backslashes should be removed, as the
2003 Mar 12
1
patch against manpage
This is a patch against the manpage to clarify what the --perm option
does and does not do.
Paul Slootman
-------------- next part --------------
diff -ru orig/rsync-2.5.6/rsync.1 rsync-2.5.6/rsync.1
--- orig/rsync-2.5.6/rsync.1 2003-01-28 04:11:57.000000000 +0100
+++ rsync-2.5.6/rsync.1 2003-03-07 12:18:19.000000000 +0100
@@ -562,8 +562,13 @@
default\&.
.IP
.IP "\fB-p,
2006 Dec 15
4
_exit_cleanup(code=12, file=token.c, line=419): about to call exit(12)
Hy all,
I'm a new rsync user and my english may be poor.
I try to sync two folders between two machines using ssh and
2.6.9 rsync version on each.
My purpose is to sync only files called "*.lic" in each
subfolders.
On the source machine I want to sync :
/home/dps3/public/Lic/Lic
/home/dps3/public/Lic/Lic2
/home/dps3/public/Lic/Lic3
to
/home/dps3/public/Lic/Lic9
On each
2007 Oct 31
4
multiple rsync sessions for one file?
Hey all,
A customer is configuring an offsite rsync backup. Their Internet
pipe is fairly slow (DSL) but they have some very large files to
backup. Their backup window is only after business hours.
If one of these large files starts rsyncing at midnight, and the
backup window ends before the file is complete (i.e. the rsync
process stops), will it complete the rest of that file the
2005 Oct 21
4
"-signs in rsync as well as in embedded ssh command
Hello,
Today I succesfully transfered some testfile on my local computer with the
following command:
rsync -e "ssh" testfile.txt localhost:receive
I can also succesfully connect with SSH to a remote server through an http proxy
with the following command:
ssh -o "ProxyCommand corkscrew myhttpProxy 8080 targetcomputer.domain 22"
targetcomputer.domain
But I'm so far
2005 Apr 22
1
"address" option in rsyncd.conf
I wanted to restrict rsync to listen only on one IP address on a
multi-homed system. I put an "address aa.bb.cc.dd" option in the
(single) module definition, as the manpage shows that "address" is a
module option, not a global one. However, lsof showed that rsync had
bound to * instead of the specified IP address.
Moving the "address" line to the global part did the
2007 Feb 16
2
Permissions of the top-level destination directory without --perms
I noticed that rsync sometimes miscalculates the permissions of the
top-level destination directory when --perms is off. For example, run
these commands in an area free of default ACLs:
umask 0000
mkdir -p src/foo
chmod 700 src src/foo
rsync -r src/ dest/
find . -ls
763054 0 drwx------ 4 matt matt 96 Feb 16 17:57 .
763158 0 drwx------ 3 matt matt 72 Feb 16
2007 Sep 24
5
Mapped Drive
I am having trouble running rsync over a mapped drive. Basically it only
copies whole files. I use the -rvcS switches. Any suggestions?
TIA
_____________________________
Stephen Zemlicka
Integrated Computer Technologies
PH. 608-558-5926
E-Mail <mailto:stevezemlicka@gmail.com> stevezemlicka@gmail.com
-------------- next part --------------
HTML attachment scrubbed and
2006 Jan 19
2
Backing up two trees with corresponding files hard linked
Today I went to back up my computer to an external disk with rsnapshot.
I have two copies of the Linux kernel; a few files differ, but matching
files are hard-linked between the two trees to save space. Since I
didn't give -H to rsync, it is making a separate file on the backup disk
from each hard link on the source.
I had the understanding that -H used an O(n^2) algorithm to match up
hard
2009 Mar 13
2
changing function argument
Hi,
I wonder if the following is possible in R:
Suppose a function takes an argument, and wants to modify this argument
so that the change is visible _at the call side_. It would be what is
for example known as pass-by-reference-to-non-const in C++.
test <- function(x)
{
x <- 10
...
return (somethingElse) # I do NOT want having to return x
}
number = 5
test(number)
2006 Sep 22
2
incoming chmod on daemon fails on subdirectories
Running rsync 2.6.8 as daemon on Fedora core 4. Have the following in
the rsyncd.conf file...
[test]
path = /home/test/greenlight
# use chroot = true
max connections = 3
lock file = /var/lock/rsyncd/test.lock
uid = 503
gid = 503
auth users = test
incoming chmod = Dg=s,Dug=rwx,Do-rwx,Fug=rw,Fo-rwx
Uploading a tree from windows with
2005 Aug 31
2
performance problem of using parallel rsync to stage data from 1 source to multiple destination
Hi all,
I am new to rsync and I apologize in advance if my question is shallow.
I write a simple script to use rsync to transfer a big file (~600MB)from a single source to variable
number of destinations in a parallel way. When I transfer the file to 4 destination machines, I get
X overall transfer time. Then I transfer the same file to 8 destination machines and I get Y overall
transfer time.
2007 Mar 08
4
about lock.
Hi, i try to learn how rsync lock files for create a backup, but.. not find
any on www.
some can help me and give any HOWTO or FAQ or document ?
Thanks!
-------------- next part --------------
HTML attachment scrubbed and removed
2008 Apr 07
1
newbie: rsync 2.6.x problems Cygwin client --> RedHat server
On Mon 07 Apr 2008, S.A. Birl wrote:
>
> Server is running rsync 2.6.1 on RH
> Client is running rsync 2.6.3 on Cygwin (Win2003)
>
> When I connect client to server, I get kicked out after SSH
> authentication. I can manually ssh into the server with no problems.
Is the server running an rsync daemon? If so, why the ssh?
Paul Slootman
2008 Feb 08
3
sync append only file
Hi:
I need periodically rsync a bunch of very big files. These files
are append-only so changes are already at the end of the file.
Because files are big, I assume it will take some time comparing the first
part of files. Is there a way that I can tell rsync to sync only the extra
part at the end of file, and do not compare the first part of files?
Thanks.
Chuang
2009 Jul 16
4
please help me using rsync efficiently
Hi,
I need a small information on the way rsync copies the files .
I am writing the files , links to a list file and I am passing the list
file to rsync for copying to remote machine.
The contents of the list file (passed to rsync for synchronisation) are
/folder1/folder2/rep/01234018329/FSG2_PULL.txt#79GA91205KAE --- actual file
/folder1/folder2/users/01234002360/my/FSG2_PULL#79GA91205KAE ----
2005 Apr 25
2
How about a --min-size option, next to --max-size
There's a rather old bug report in Debian's bug tracking system
(see http://bugs.debian.org/27126) about wanting to be able to specify
the maximum file size, as well as the minimum file size. Here's the
text:
Sometimes, it's useful to specify a file size range one is
interested in.
For example, I'd like to keep an up-to-date mirror of Debian, but I
currently