search for: exclud

Displaying 20 results from an estimated 7522 matches for "exclud".

Did you mean: exclude
2018 Feb 22
4
What is exit code 5888?
rsync v3.1.0 linux v4.4.104-39-default x86_64 Found in the system log: 2018-02-22T05:02:00-0700 sma-server3 python3[31371]: backintime (sma-user3x/3): WARNING: Command "rsync -rtDHh --links --no-p --no-g --no-o --info=progress2 --no-i-r --delete --delete-excluded -i --dry-run --out-format="BACKINTIME: %i %n%L" --chmod=Du+wx --exclude="/bkp/cgate-backintime" --exclude="/home/sma-user3x/.local/share/backintime" --exclude=".local/share/backintime/mnt" --include="/data01/var/CommuniGate/" --include="/dat...
2004 May 20
2
rsync creates wrong sized files
...ms to be a bit slow in fixing problems, I thought perhaps I should report it here as well. I'm using rsync 2.6.2 on a Debian woody system, with libc 2.2.5. I have rsync running daily to mirror the Debian archives, mainly for i386 files. The command I use is this: rsync -r -R -l -t --delete --exclude=/Incoming --exclude=/UploadQueue \ --exclude=*_alpha.deb --exclude=*_alpha.udeb --exclude=*-alpha \ --exclude=*_arm.deb --exclude=*_arm.udeb --exclude=*-arm \ --exclude=*_hppa.deb --exclude=*_hppa.udeb --exclude=*-hppa \ --exclude=*_ia64.deb --exclude=*_ia64.udeb --exclude=*-ia64 \ --exclude=...
2016 Sep 02
2
Coercion of 'exclude' in function 'factor' (was 'droplevels' inappropriate change)
I am basically fine with the change. How about using just the following? if(!is.character(exclude)) exclude <- as.vector(exclude, typeof(x)) # may result in NA x <- as.character(x) It looks simpler and is, more or less, equivalent. In factor.Rd, in description of argument 'exclude', "(when \code{x} is a \code{factor} already)" can be removed. A larger ch...
2002 May 19
1
exclude vs include
My understanding of the man page description of --exclude vs. --include is that the list of these is kept in order, and file names are searched against these parameters in that order for the first that matches and that one makes the decision. It doesn't seem to be working exactly as expected. But there is a factor involved that's making it uncl...
2019 Nov 12
2
Speed up rsync with many of excluded files
Hello, I have a problem while rsyncing a directory with perhaps 1.000.000 files. Before this I generate some files locally and add them to temp files. So this files should be excluded from syncing. My rsync call looks like this: rsync --exclude='tmp/' \ --exclude-from=/tmp/tmp.GF7SsFPnS3 \ --exclude-from=/tmp/tmp.8SjJNCHyaI \ --exclude-from=/tmp/tmp.CxZXEoPjgV \ --exclude-from=/tmp/tmp.G3g2iMo4bs \ --exclude-from=/tmp/tmp.H9KJYPMfMS \ --exclude-from=/tmp/tmp.PNi7cJaR...
2019 Jan 11
1
Yum excluding packages I need
C7, and I did a yum update --disableexcludes=all, and yet it's telling me [nvidia]: excluding kmod-nvidia-410.66-1.el7_5.elrepo.x86_64 [nvidia]: excluding kmod-nvidia-410.73-1.el7_5.elrepo.x86_64 [nvidia]: excluding kmod-nvidia-410.73-2.el7_6.elrepo.x86_64 [nvidia]: excluding kmod-nvidia-410.78-1.el7_6.elrepo.x86_64 [nvidia]: excluding...
2003 Mar 22
5
CYGWIN Rsync exclude/include problem
I'm having troubles with getting rsync 2.5.5 (CYGWIN version) to include/exclude files they way I expect it to. I have mulled over the list postings and man pages regarding this and I am either missing something or ... well I don' know. I have a drive with 12 folders in the root however, I only want to rsync 5 of them (the ones marked with an *) and in those 4 I want to e...
2006 Aug 06
3
Yum w/o direct connect
I am hoping someone else is already doing what I need to do, and can give me some pointers. Situation: 1. I am running Centos 4.3 x86_64 on a machine at home, without broadband access. I have dialup access, but that doesn't work very well for something like "yum update", so I am still running 4.3 as issued on the CDs. 2. I have high speed access at work, and I have a USB drive to
2007 Jan 11
1
Matching on multiple columns
Am I correct in believing that one cannot match on multiple columns? One can indeed subset on multiple criteria from different variables (or columns) but not from unique combinations thereof. I need to exclude about 10000 rows from 108000 rows of data based on several unique combinations of identifiers in two columns. Only merge() seems to be able to do that. Merge would allow me to positively select but it would not allow me to deselect (or exclude). Look at how I got around the problem. It is inelegan...
2013 Aug 09
1
a fast table() for the 1D case
...nt could make it into base::table(). Thanks, H. ## A fast table() implementation for the 1D case (replacing the '...' ## arg with 'x' and omitting the 'dnn' and 'deparse.level' arguments ## which are unrelated to performance). table1D <- function(x, exclude = if (useNA == "no") c(NA, NaN), useNA = c("no", "ifany", "always")) { if (!missing(exclude) && is.null(exclude)) { useNA <- "always" } else { useNA <- match.arg(useNA) }...
2016 Jan 20
3
rsync stopped working
Running Debian 8.2, xfce 4.10, rsync 3.1.1-3. I just edited my backup script as follows: #The first line deletes extraneous files. The second does not and is used for normal backups. # rsync -vaHz --delete --exclude '/proc' --exclude '*.iso' --exclude '/sys' --exclude '/home/holtzm/Documents/*.iso' --exclude '/media' /. /media/cf0a98ed-3c11-4107-b61e-f5139d024396/Jessie-laptop # rsync -vaHz --exclude '/proc' --exclude '/sys' --exclude '*.iso' -...
2002 Jul 25
2
rsync with --exclude files
HI, I'm trying to exclude some files & directories from a filesystem which I would like to copy to a different site. I did: # rsync -avz --exclude-file=/fs21/tmp/perl_scripts/exclude.txt /fs22/a/circuit_design mickey.willow.com:/cpu/store/design where file /fs21/tmp/perl_scripts/exclude.txt contains the following...
2002 Dec 10
2
include-exclude patterns
Hi, I just subscribe to ask you a question about patterns in exclude-include files. I just want some folders to be rsynced to a remote machine. What I tried is : IncludeFile ------------------------- /etc/ /var/lib/zope/ - /* ----------------------- result of $$ rsync -avvrn --delete --delete-excluded --include-from=/backup-include -e ssh / /backup is expand file_...
2016 Aug 27
2
'droplevels' inappropriate change
In R devel r71157, 'droplevels' documentation, in "Arguments" section, says this about argument 'exclude'. passed to factor(); factor levels which should be excluded from the result even if present. Note that this was implicitly NA in R <= 3.3.1 which did drop NA levels even when present in x, contrary to the documentation. The current default is compatible with x[ , drop=FALSE]. The part x...
2004 May 11
2
possible bug with exclude/exclude-from
Hi While trying to back up my homedir, i found what looks like a bug: from /home, i do: rsync -CWavP --delete --delete-excluded \ --exclude=".phoenix/default/*/Cache/" \ --exclude-from=rsync-excludes \ myusername/ targetserver:/backup/myusername/ rsync-excludes contains (without [] lines): [start] #comment **.xvpics** *.swp [end] This works as expected, the phoenix cac...
2008 Jan 26
2
--exclude patterns
Hi, I want to rsync a large number of files from A to B, but I need to exclude certain files. Specifically, A has /test/runs/{1,2,3,...,2500}, i.e., about 2500 directories here. However, I only want to transfer the directories that are numbered 2000 or higher, i.e., I want to exclude /test/runs/{1,2,3,...,1999}, so I tried this: rsync --include='/test/runs/***' \ -...
2009 Dec 16
4
rsync exclude
I am trying to backup my /home directory. A friend helped me with this script: #!/bin/sh #backup friday #"Spinning up backup drive and mounting it .." cd / mount /mnt/hd2 #"Starting backup procedures" rsync -avx --exclude="/home/gary/.thumbnails/" --exclude="/home/gary/tmp/" --delete --ignore-errors /home/gary /mnt/hd2/2010 umount /mnt/hd2 #END It backs up /home OK. However it does not exclude .thumbnails or tmp. I have read the manual and am confused on the use of --exclude. I am strictly...
2006 Feb 09
1
exclude an excluded file from being deleted by --delete-excluded
Hi, I have a particular directory in my exclude list, but I want it excluded from --delete-excluded. Is this possible. or maybe if I explain what I'm trying to do, someone will come up with a more suitable way. I am using rsync (2.6.6) to backup data from a Windows Server (cygwin) to an OpenBSD box. rsync -rtvz --delete-excluded --del -...
2005 Feb 23
2
What's wrong with my exclude rules?
So, given this (broken up for email - it's all one line in the script): /usr/bin/rsync -q -a -e ssh -H --delete --delete-excluded --ignore-errors --include "/" --exclude "/proc/*" --exclude "/proc/bus/usb/*" --include "/boot/*" --exclude "/dev/pts/*" --exclude "/dev/shm/*" --exclude '/tmp/*' --exclude '/var/tmp/*' --exclude '/usr/tmp/*...
2004 Apr 09
3
include/exclude bug in rsync 2.6.0/2.6.1pre1
As mentioned on the rsync home page, the --files-from=FILE option in rsync version 2.6.0 is a useful option that allows one to "specify a list of files to transfer, and can be much more efficient than a recursive descent using include/exclude statements (if you know in advance what files you want to transfer)". However, --files-from does not help one implement the --rsync-exclude=FILE option previously submitted to this list (see the up-to-date patch below). By definition this requires a recursive descent to determine the file l...