Displaying 20 results from an estimated 29 matches for "from0".
Did you mean:
from
2008 May 18
2
rsync --files-from option file with a custom Delimiter
Hi All,
I'm new to rsync usage in Mac OS X. I'm having a strange issue with --
files-from option.
I'm providing the --files-from to provide a file , which contains the
list of files separated by newline character , to perform backup
operation. Especially in Mac OS X , particular tiff bundle files are
having \r as part of the filename.When rsync reads the filepaths using
delimiter
2015 Dec 30
10
[Bug 11656] New: Escaping broken with --files-from
https://bugzilla.samba.org/show_bug.cgi?id=11656
Bug ID: 11656
Summary: Escaping broken with --files-from
Product: rsync
Version: 3.1.1
Hardware: x64
OS: Linux
Status: NEW
Severity: normal
Priority: P5
Component: core
Assignee: wayned at samba.org
Reporter:
2003 Dec 30
2
Shorten long lines in man page options summary
...stamp window (seconds) for file match (default=0)
+ --modify-window=NUM window (+/- seconds) for mod time match
- --compare-dest=DIR also compare destination files relative to DIR
+ --compare-dest=DIR also compare files relative to DIR
- -0 --from0 file names we read are separated by nulls, not newlines
+ -0 --from0 file list delimited by nulls, not newlines
Comments? Suggestions?
Since this doesn't involve executable code, can this get into 2.6.0
(without another "pre" release)?
--...
2014 Jul 07
1
increasing the write block size for high latency
I am trying to transfer a group of files in whole using rsync using the ?files-from option across a network with high bandwidth but relatively high latency. When I log into the remote machine I see an rsync command running like thus:
rsync --server --sender -Re.sf -B16384 --files-from=- --from0 . /
Note that I have used the -B option to increase block size but that seems to just apply to the blocks used for checksumming instead of actual network I/O. I came to this conclusion by running strace on the PIDs on both remote and local hosts. On the server side I got a stream of 4K writes on f...
2003 Mar 23
2
Modified --files-from patch
...e committed to CVS. See if you agree.
For those that have been following the saga, here's a list of just the
changes since the last patch (for those that haven't, see the next
section):
Changes Since the Last Release:
===============================
- The --null option was renamed to --from0 and made to effect all the
--*-from options (--include-from, --exclude-from, and --files-from).
It has a short-option name of just "-0".
- Both the include/exclude and --files-from file-reading code now
allows either CR or LF to indicate a line-ending character (which
makes...
2004 Jan 02
0
rsync 2.6.0 (final) released
...an 2004)
Protocol: 27 (changed)
Changes since 2.5.7:
ENHANCEMENTS:
* "ssh" is now the default remote shell for rsync. If you want to
change this, configure like this: "./configure --with-rsh=rsh".
* Added --files-from, --no-relative, --no-implied-dirs, and --from0.
Note that --from0 affects the line-ending character for all the
files read by the --*-from options. (Wayne Davison)
* Length of csum2 is now per-file starting with protocol version
27. (J.W. Schultz)
* Per-file dynamic block size is now sqrt(file length). The
per...
2003 Jan 18
2
Latest release of --files-from patch
I've worked up a new release of my --files-from patch. It has the
following changes from the last release:
New Changes:
============
- The -R option is now on by default when --files-from has been
specified. The user can specify --no-relative to turn this off.
- The -a (--archive) option does not imply -r when --files-from was
specified. The user can still specify it manually,
2005 Jan 31
1
[patch] add "--ignore" option
...don't do anything with files
matching PATTERN\n");
+ rprintf(F," --ignore-from=FILE don't do anything with patterns
listed in FILE\n");
rprintf(F," --files-from=FILE read FILE for list of source-file
names\n");
rprintf(F," -0, --from0 all *-from file lists are
delimited by nulls\n");
rprintf(F," --version print version number\n");
@@ -336,6 +338,7 @@
OPT_FILTER, OPT_COMPARE_DEST, OPT_COPY_DEST, OPT_LINK_DEST,
OPT_INCLUDE, OPT_INCLUDE_FROM, OPT_MODIFY_WINDOW,...
2015 Aug 17
7
Error with paths with ()'s
I was trying to process a bunch of folders to sync them to another drive and ran across an error I haven’t seen before. Normally I do this sync via a mounted file system, but this time I tried to do it over ssh:
find . -type f -atime -1 -exec rsync -aP {} 10.0.0.11:/Volumes/Drive5/{} \;
bash: -c: line 0: syntax error near unexpected token `('
bash: -c: line 0: `rsync --server -logDtpre.iLsfx
2015 Aug 17
0
Error with paths with ()'s
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
If you want find to generate your list use --files-from:
find . -type f -atime -1 -print0 | rsync -aP --files-from=- --from0 .
10.0.0.11:/Volumes/Drive5/
On 08/17/2015 02:13 AM, @lbutlr wrote:
> I was trying to process a bunch of folders to sync them to another
> drive and ran across an error I haven’t seen before. Normally I do
> this sync via a mounted file system, but this time I tried to do it
> over ssh...
2004 Mar 29
1
--from-files broken with remote sources
Using rsync 2.6.0 on both ends, I ran
rsync -v --files-from files andrew@pimlott.net: .
and got an error from the remote rsync. The reason is that the remote
rsync is run as
rsync --server --sender -vvR --files-from=- --from0 .
which conflicts with a check in options.c that rsync must have two
non-option arguments when --files-from is used. I tried again with the
latest nightly (rsync-HEAD-20040329-1635GMT.tar.gz) and had the same
problem. In this version, the check is at line 725. If I add "&& !
am_ser...
2004 Aug 19
2
Syncing with --files-from
I want to sync files from remote to local. I have a file with all the
includes on the local machine.
When executing rsync with "--files-from=incfiles.txt", it fails while
trying to open "incfiles.txt" on the remote machine.
Is there a way to tell rsync to look for the file locally? Thanks, Dave.
2004 Dec 22
2
possible bug with --files-from and --no-relative options
Skipped content of type multipart/alternative-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 925 bytes
Desc: not available
Url : http://lists.samba.org/archive/rsync/attachments/20041222/36f828dc/attachment.gif
2011 Mar 01
0
Error when filters exclude all files from transfer
Hi
I am using rsync in combination with lsyncd to do incremental backups.
The following rsync command is being executed when lsyncd detects that files have changed:
/usr/bin/rsync -lptgoDsz --filter=.\ /etc/rsync.filter -r --delete --force --from0 --files-from=- / rsynchead::school
The file /etc/rsync.filter contains the following:
+ /home/*/.kde/share/apps/kmail/mail/**
+ /home/*/.kde/share/config/emailidentities
+ /home/*/.kde/share/config/kmailrc
+ /home/*/.kde/share/config/mailtransports
- /home/git/**
- /home/*/.*
- /home/*/.*/**
+ /e...
2014 Sep 02
1
[PATCH] rrsync: Add several long options used by BackupPC
...REMOVE ANY
our %long_opt = (
'append' => 0,
'backup-dir' => 2,
+ 'block-size' => 1,
'bwlimit' => 1,
'checksum-seed' => 1,
'compare-dest' => 2,
@@ -82,15 +83,19 @@ our %long_opt = (
'force' => 0,
'from0' => 0,
'fuzzy' => 0,
+ 'group' => 0,
'groupmap' => 1,
+ 'hard-links' => 0,
'iconv' => 1,
'ignore-errors' => 0,
'ignore-existing' => 0,
'ignore-missing-args' => 0,
+ 'ignore-times&...
2006 May 24
0
rsync connection limit
...ptions.c Wed Mar 29 02:09:36 2006
+++ rsync-2.6.8-new/options.c Wed May 24 15:50:43 2006
@@ -93,6 +93,7 @@
int daemon_over_rsh = 0;
int do_stats = 0;
int do_progress = 0;
+int do_timeout = 0;
int keep_partial = 0;
int safe_symlinks = 0;
int copy_unsafe_links = 0;
@@ -506,6 +507,7 @@
{"from0", '0', POPT_ARG_NONE, &eol_nulls, 0, 0, 0},
{"numeric-ids", 0, POPT_ARG_NONE, &numeric_ids, 0, 0, 0 },
{"timeout", 0, POPT_ARG_INT, &io_timeout, 0, 0, 0 },
+ {"contimeout", 0, POPT_ARG_INT, &...
2006 Mar 28
1
DO NOT REPLY [Bug 3637] New: Regression 2.6.6 to 2.6.7 when syncing with 2.6.6 on windows - --no-r
...rom 2.6.6 to 2.6.7. A previous sync
that worked fine against a 2.6.6 windows build now no longer functions. I get
an error from the remote side saying --no-r: unknown option.
+ ./rsync -Wav --force --delete --delete-after --progress --stats
--files-from=data/afs_umr.edu_dept_ua/files.clean.dat --from0
/afs/umr.edu/dept/ua/ umr-store3.cc.umr.edu::dept/ua/
building file list ...
rsync: link_stat "/afs/umr.edu/dept/ua/SYNC-REPORT/AFS-ACLS.new.txt" failed: No
such file or directory (2)
rsync: on remote machine: --no-r: unknown option
rsync error: requested action not supported (code 4) at...
2007 Feb 03
1
Man page suggestion: organize options into sections
...l
--partial-dir
--temp-dir
--remove-source-files
--compress
--compress-level
Basis dirs:
--compare-dest
--copy-dest
--link-dest
You can only use one kind!
--fuzzy
Name-based exclusion:
Detailed syntax of rules and merge files
--filter
-F
--{include,exclude}{,-from}
--from0 [not the perfect place but likely the best]
--cvs-exclude
--delete-excluded
Other exclusion:
--update
--ignore-{,non-}existing
--{min,max}-size
Backup:
--backup
--suffix
--backup-dir
Batch mode:
Existing discussion
--read-batch
--write-batch
--only-write-batch
2005 Apr 13
5
An idea: rsyncfs, an rsync-based real-time replicated filesystem
...s to.
The actual replication happens in user-land with rsync as the transport.
I think rsync will have to be tweaked a little to make this work, but
given all the features already in rsync I don't think this will be a big
deal. I envision an rsync running on Host A like:
# rsync --constant --from0 --files-from-fifo=/vol/0/chglog.fifo ...
that will be communicating with an "rsync --constant ..." on the other
end. The --constant flag is my way of stating that both rsyncs should
become daemons and plan to "constantly" exchange syncing information until
killed -- that is, t...
2009 Apr 07
4
DO NOT REPLY [Bug 6251] New: security: rsync executes remote commands
https://bugzilla.samba.org/show_bug.cgi?id=6251
Summary: security: rsync executes remote commands
Product: rsync
Version: 3.0.5
Platform: x86
OS/Version: Linux
Status: NEW
Severity: major
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: mueller@relog.ch