similar to: Expressions in --exclude-from file

Displaying 20 results from an estimated 1000 matches similar to: "Expressions in --exclude-from file"

2014 Aug 22
1
problem with exclude
I've tried all of the permutations of exclude I can think of, so presumably I have some fundamental misunderstanding. The goal here is to exclude the file tv11.html in the ftp directory. rsync -avvvv -n --verbose --one-file-system -exclude='ftp/tv1.html' /usr/local/src /Media/sata/usr/local > /tmp/rsync (Server) Protocol versions: remote=30, negotiated=30 cmd=xclude=ftp/tv1.html
2007 Feb 24
4
Overwriting symlinks on OSX
I'm trying to rsync files to a set of symlinked directories on an XServe running OS X. The directories look like this: tna@csx:~/2/2006$ l total 80 lrwxr-xr-x 1 tna tna 39 Feb 24 13:18 2006-01 -> /Volumes/CSArchiveArray001/2006/2006-01 lrwxr-xr-x 1 tna tna 39 Feb 24 13:18 2006-02 -> /Volumes/CSArchiveArray001/2006/2006-02 When I run rsync from Linux in --dry-run mode,
2012 Aug 18
1
How to remove files at source present on destination without transferring them
Does rsync provide a way to remove files at the source that are present on the destination, without first transferring the files? I run the same task on several computers that copy the results to a server. Once the material is copied, it should be deleted at the source on all the machines. Say A and B run the same task. A finishes first and copies the result to server C. When B finishes, the
2019 Sep 28
0
[PATCH nbdkit v2 1/4] common/include: Add function for subtracting struct timeval.
--- common/include/test-tvdiff.c | 75 +++++++++++++++++++++++++++++------- common/include/tvdiff.h | 13 ++++++- 2 files changed, 74 insertions(+), 14 deletions(-) diff --git a/common/include/test-tvdiff.c b/common/include/test-tvdiff.c index 9cbcfc0..abefb2e 100644 --- a/common/include/test-tvdiff.c +++ b/common/include/test-tvdiff.c @@ -36,7 +36,6 @@ #include <stdlib.h> #include
2019 Sep 28
2
[PATCH nbdkit 1/2] common/include: Add function for subtracting struct timeval.
--- common/include/test-tvdiff.c | 75 +++++++++++++++++++++++++++++------- common/include/tvdiff.h | 13 ++++++- 2 files changed, 74 insertions(+), 14 deletions(-) diff --git a/common/include/test-tvdiff.c b/common/include/test-tvdiff.c index 9cbcfc0..abefb2e 100644 --- a/common/include/test-tvdiff.c +++ b/common/include/test-tvdiff.c @@ -36,7 +36,6 @@ #include <stdlib.h> #include
2013 May 02
0
[LLVMdev] Handling Masked Vector Operations
> >> For DIV/MOD you can blend the inputs BEFORE the operation. You can >> place ones or zeros depending on the operation. > > Quick follow-up on this. What about using "undef" as the input for > false items: > > tv1 = select mask, v1, undef > tv2 = select mask, v2, undef > tv3 = div tv1, tv2 > v3 = select mask, tv3, undef > > I'm
2013 May 02
0
[LLVMdev] Handling Masked Vector Operations
On Thu, May 2, 2013 at 10:31 AM, <dag at cray.com> wrote: > Nadav Rotem <nrotem at apple.com> writes: > > > > > For DIV/MOD you can blend the inputs BEFORE the operation. You > > can > > place ones or zeros depending on the operation. > > > > Quick follow-up on this. What about using "undef" as the input
2011 Mar 23
2
system.file() to read a text file from a vignette
[Env: R 2.12.2, WinXp] In a vignette for the vcdExtra package, I had a text file, tv.dat under data/, that I used in the vignette as <<tv1,results=verbatim>>= tv.data<-read.table(system.file("data","tv.dat",package="vcdExtra")) head(tv.data,5) @ I was told that this now generates a warning for non-Rdata files in R CMD check. But I'm now
2013 May 02
2
[LLVMdev] Handling Masked Vector Operations
Nadav Rotem <nrotem at apple.com> writes: > For DIV/MOD you can blend the inputs BEFORE the operation. You can > place ones or zeros depending on the operation. Quick follow-up on this. What about using "undef" as the input for false items: tv1 = select mask, v1, undef tv2 = select mask, v2, undef tv3 = div tv1, tv2 v3 = select mask, tv3, undef I'm always confused
2013 May 02
4
[LLVMdev] Handling Masked Vector Operations
Nadav Rotem <nrotem at apple.com> writes: > > For DIV/MOD you can blend the inputs BEFORE the operation. You > can > place ones or zeros depending on the operation. > > Quick follow-up on this. What about using "undef" as the input for > false items: > > tv1 = select mask, v1, undef > tv2 = select
2006 Apr 20
0
Tvs Plasma notebboks E-gold apy
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script> <!-- document.write(unescape("<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <script language="JavaScript"><!-- var hellotext="
2004 Sep 29
0
Rsynch question
Can a linux box running rsynch as either a client or server backup a remote windows mssql database without having to run mssql on the linux box via wine? -- My "Foundation" verse: Isa 54:17 No weapon that is formed against thee shall prosper; and every tongue that shall rise against thee in judgment thou shalt condemn. This is the heritage of the servants of the LORD, and their
2020 May 21
1
RPM package builds backed by nbdkit
Context: https://bugzilla.redhat.com/show_bug.cgi?id=1837809#c28 https://rwmj.wordpress.com/2020/03/21/new-nbdkit-remote-tmpfs-tmpdisk-plugin/ http://libguestfs.org/nbdkit-tmpdisk-plugin.1.html https://github.com/libguestfs/nbdkit/blob/0632acc76bfeb7d70d3eefa42fc842ce6b7be4f8/plugins/tmpdisk/tmpdisk.c#L182 I did a bit of testing to try to see if this is really feasible, and yes I think it is.
2020 Oct 17
0
[PATCH nbdkit] common/include/tvdiff.h: Add formal specification.
This commit adds a formal specification of tvdiff_usec and a partial specification of subtract_timeval. These may be proved using Frama-C. The existing functions ignored overflow, but it is possible to call the functions with parameters that will cause overflow. So to create a formal specification I had to modify the functions to signal overflow. Luckily GCC and Clang have convenient
2009 Dec 04
1
fedora-ds and smb4 (a9)
hi i'm trying to start testing samba4 i used: http://wiki.samba.org/index.php/Samba4/LDAP_Backend/Samba_4_alpha_9_with_Fedora_DS as a start... so far so good, but i get stuck with th provision.. ------------ setup/provision \ --host-name=dev --root=root \ --domain=JORDAN --realm=JORDAN.NET \ --server-role="domain controller" \ --ldap-backend-type=fedora-ds \
2010 Jan 26
1
samba4 HEAD: unable to provision
I'm trying to install samba4 with openldap, as from http://wiki.samba.org/index.php/Samba4/LDAP_Backend/OpenLDAP, I have got the yesterday realease, last git commit: commit 2024d4fb27514869d78e9bb39085f98e80413529 Date: Mon Jan 25 12:41:48 2010 +0100 My system is GNU/Debian Linux Lenny. ./configure --prefix=/opt/samba4 make sudo make install all worked ./setup/provision from the source4
2002 Aug 01
1
2 errors when running rsync
I'm kinda new to rsync, and decided to mirror openssl.org. When running the command below, as suggested by openssl.org, I get the following.. rsync -rztpv --delete rsync://ftp.openssl.org/openssl-ftp/ /home/ftp/pub/openssl/ I get the output: ----------------- receiving file list ... opendir(incoming): Permission denied done IO error encountered - skipping file deletion send_files failed to
2019 Mar 29
0
samba 4.9.5 - joining Samba DC to existing Samba AD failed (ldbsearch has not -U and -V)
On Wed, 27 Mar 2019 13:11:08 +0000 Rowland Penny via samba <samba at lists.samba.org> wrote: > On Wed, 27 Mar 2019 13:00:42 +0100 > Franta Hanzlík <franta at hanzlici.cz> wrote: > > > Yes, is no difference between '-UAdministrator' and '-U > > Administrator'. But it seems, as ldbsearch in 4.9.5 is different than > > 4.9.4-. (I was furious
2016 Mar 11
2
Re: [virt-tools-list] [libvirt] Usability Enhancement: Import/Export VMs GUI
On 2016-03-10 15:43, Cole Robinson wrote: > On 03/10/2016 02:29 AM, Martin Kletzander wrote: >> On Fri, Mar 04, 2016 at 04:23:18PM +0000, bancfc@openmailbox.org >> wrote: >>> The single most important usability feature missed by our less >>> technical >>> users who migrate from VirtualBox is a one click import/export of >>> VMs >>>
2010 Mar 18
2
Rsync behaviour on harddisc crash
I was just pondering: Lets look at Server A with one extra harddisc hdb, where hdb1 is mounted at /mnt/folder. /mnt/folder is the folder which should be mirrored on Server B. So Server B rsyncs rsynch -a -delete server::folder /folder from Server A and gets all the new files and deletes all the files, which doesn't exist on Server A's /mnt/folder anymore. What would happen,