similar to: Can rsync server mark deleted source files as extraneous?

Displaying 20 results from an estimated 3000 matches similar to: "Can rsync server mark deleted source files as extraneous?"

2010 Mar 28
1
New tutorial and script for rsync resources page
The rsync tutorial is for new rsync users. Three small backup examples thoroughly explain rsync --link-dest, --recursive, and --exlcude-from options.? http://sites.google.com/site/rsync2u/home/rsync-tutorial rsync2u is a job-driven script that uses rsync to backup files to a local USB device or harddrive.? http://sites.google.com/site/rsync2u/home Someone please post the above lines on the rsync
2017 Jun 28
4
Extraneous full stop in csv read
I ran into a puzzling minor behaviour I would like to understand. Reading in a csv file, I find an extraneous "." after a column header, "in" [short for "inches"] thus, "in.". Is this due to "in" being reserved? I initially blamed this on RStudio or to processing the data through LibreCalc. However, the same result occurs in a console R session.
2019 Jun 20
2
base::format adds extraneous whitespace for some inputs
Dear R Core Team, First of all, thank you for your amazing work on developing and maintaining this wonderful language. I just stumbled upon the following behavior in R version 3.6.0: format(9.91, digits = 2, nsmall = 2) format(9.99, digits = 2, nsmall = 2) yield "9.91" and " 9.99" with an extraneous whitespace. My expected output for the second command is
2006 Feb 17
2
Extraneous kruft [signed]
Looking through the build files I'm wondering if we can't do some clean-up and remove extraneous kruft before we release. Like the config.dbs and the README.build that talks about the config.dbs. From looking through the build setup I don't see either file actually critically needed and looks like Ralph may have come to a similar conclusion by the comments added to the README.build
2007 Mar 06
1
[RFC][PATCH] remove extraneous xattr-s from not recreated files
patch is for rsync cvs sources after appling acls.diff and xattrs.diff patches. Please comment or include it upstream. PS: please cc me, I'm not on list ---------------------------------------------------- Producenci "Opowie?ci z Narnii" przedstawiaj?: Wielka przygoda w ?wiecie, w kt?rym wszystko jest mo?liwe! MOST DO TERABITHII - w kinach od 9 marca!
2013 Apr 17
3
Creating a vector with repeating dates
Dear R forum I have a data.frame df = data.frame(dates = c("4/15/2013", "4/14/2013", "4/13/2013", "4/12/2013"), values = c(47, 38, 56, 92)) I need to to create a vector by repeating the dates as "Current_date", 4/15/2013, 4/14/2013, 4/13/2013, 4/12/2013,  "Current_date", 4/15/2013, 4/14/2013, 4/13/2013, 4/12/2013, Current_date,
2011 Feb 22
0
"extraneous" in commit 3bd9f51917ed5718275c6132006be155239a0550
In this commit you put "extraneous hard-linked files". I find this confusing because the hard-linked entries may have been created by rsync itself. I think the previous version is better. Or you could put "If there are files that are hard-linked at the destination but not at the origin".
2005 Jun 15
0
[Bug 2802] New: rsync uses extraneous libresolv.dylib
https://bugzilla.samba.org/show_bug.cgi?id=2802 Summary: rsync uses extraneous libresolv.dylib Product: rsync Version: 2.6.5 Platform: PPC OS/Version: Mac OS X Status: NEW Severity: trivial Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: psfales@lucent.com
2019 Jun 20
0
base::format adds extraneous whitespace for some inputs
I can reproduce this. It has to do with whether the value rounds down to 9 or up to 10, and thus needs another space, I think. I agree that it shouldn't happen, but at least you can get rid of the space by using trim = TRUE. # rounds to 9 vs 10 format(9.95, digits = 2) format(9.96, digits = 2) format(9.95, digits = 2, nsmall = 2) format(9.96, digits = 2, nsmall = 2) format(9.95, digits =
2019 Apr 12
1
Doveadm stats
Are there any examples of the utility of doveadm stats? in the man page: > dump accepts following types: command, session, user, domain, ip and > global. > > Filter can be > > user=<wildcard> > Match given user. I've tried the following commands after looking at the (sparse and example-less) man page. # doveadm stats dump
1998 Jul 01
2
disable "fake" samba authentication error messages
What bothers me is that samba is filling up my log files with a lot of extraneous/fake entries about authentication failures. "Extraneous/fake" - because all it is is a reflection of the way the protocol actually tries to login - going through the upper/lower case mutations as configured. sample log entries: ----------------------- Jun 30 19:40:35 dolphin PAM_pwdb[26988]: 1
2004 Sep 10
1
Re: flac and pipes problems (was: Possible bug)
I'll rearrange a little and respond: --- Mark Powell <M.S.Powell@salford.ac.uk> wrote: > Also, when flac takes input from stdin it fails to > fill in the wav size > fields correctly, whereas shorten has no problems > with this: i.e. >... > You can see it puts a data chunk size of zero in > there. > OK, this has been fixed in CVS. > Flac refuses
2009 May 08
9
Bash Script help...
Hi All, I need to write a script that I will manually start (or a cron job in future) but I need it to do a number of things in order one after another. How do i do that so everything gets dont as the steps depend on each other. Example: cd /system_backups/ tar cvf apache-conf.tar /etc/httpd/conf/* gzip -v9 apache-conf.tar tar cvf apache-data.tar /var/www/* gzip -v9 apache-data.tar
2010 Feb 24
0
Any good rsync --exclude tutorials?
Please recommend a rsync --exclude tutorial. I read the manual http://linux.die.net/man/1/rsync > ? down page, Filter Rules, Include-Exclude Pattern Rules, but its hard to figure it out. Thank you, Wolfram Volpi
2009 Sep 15
1
rsync man page questions
I am trying to read the rsync man page. What do the acronyms "CW", ?lq+rq?, and ?lq-rq? mean? The "Usage" section uses ?CWrsync?. The ?Filter Rules? section says: If a pattern does not begin with lq- rq (dash, space) or lq+ rq (plus, space), then the rule will be interpreted as if lq+ rq (for an include option) or lq- rq (for an exclude option) were prefixed to the string.
2009 Oct 11
2
empty quotes for rsync parameter
Why does inserting an empty quote ("") into a rsync command cause the current directory to be backed up? Not sure if this is a UNIX-syntax question or rsync-syntax question. Code: #!/bin/sh echo "\nspace between quotes has no effect; only music is backed up:" rsync -ilrtn " " /home/wolf/music /backups/backup1 echo "\nempty quotes backs up current directory
2011 Jul 07
1
[LLVMdev] Improving Garbage Collection
On Thu, Jul 7, 2011 at 1:35 PM, Anderson, Todd A <todd.a.anderson at intel.com>wrote: > ** ** > > On Thu, Jul 7, 2011 at 10:55 AM, Anderson, Todd A < > todd.a.anderson at intel.com> wrote:**** > > For the past few years, my group in Intel Labs has been working on a > project similar to LLVM and C--, and perhaps our experience in handling > roots and stack
2010 Apr 22
2
RUnit bug?
There appears to be a bug in RUnit. Given a testsuite testsuite.math, say, when I run: runTestSuite(testsuite.math) this works fine, provided there are no extraneous files in the unit test subdirectory. But if there are any Emacs temp files (with names that end with '~') then runTestSuite gets confused and tries to run functions from the temp files as well. [[alternative HTML version
2008 Jan 03
3
[LLVMdev] Utilizing gperf for TableGen
On Wed, 2 Jan 2008, Chris Lattner wrote: >This should be fixed now, please verify, thanks! > >-Chris The newer code that TableGen produces is indeed lower however, MSVC still throws the same error messages (and moreover, I don't think they're fixing it anytime soon.. I'll try to re-open this issue to them). Also, it seems that the new code produces an extraneous "if
2011 Jan 20
4
No command 'rspec' found
I installed rspec on Linux Ubuntu 10.04, but no command ''rspec'' is found. Perhaps the PATH is wrong. What is the correct search path? The following was copied from my terminal. Thank you for taking a look: ~$ sudo gem install rspec --version 2.0.0 ~$ gem list --local *** LOCAL GEMS *** rspec (2.0.0) ~$ ls /var/lib/gems/1.8/gems rspec-2.0.0 ~$ printenv PATH