search for: incfil

Displaying 7 results from an estimated 7 matches for "incfil".

Did you mean: incfile
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.
2005 Nov 05
1
iinclude/excludes and symbolic links
...exist at the remote site. I do not want any other part of the tree. I made an include file as follows: + /B/ + /B/2/ + /B/2/y/ + /B/2/y/** - * when I include this, nothing is transferred. The structure does not exist on the remote server. Here's the command-line: rsync -rvzd --include-from=incfile /top/level/dir remote::share If I remove the '- *' from the include, it transfers everything under /top/level/dir. If I use --from-file and list all the included paths as follows and use an exclude='*', I can get it to copy over. I've done tons of iterations on this, so fo...
2008 Mar 15
3
Incremental backups?
So I thought I'd get a head start for next week - I have a low-power Linux box that has a few samba shares mounted, and limited hard disk space. This box is connected to a tape library via SCSI card. I want to find the best way to create a full, then incremental backup of the samba mounts, directly to tape. Some of the samba mounts are appliances that cannot run any special
2005 May 19
3
[LLVMdev] [Cygwin] llvm 'make install' build errors
Reid, I think it is the first time it is run that the errors occcur !? Not sure but that would seem logical. Aaron
2008 Jan 03
2
[LLVMdev] Building LLVM on Windows
...$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir $(Echo) "Building $(<F) calling convention information with tblgen" - $(Verb) $(TableGen) -gen-callingconv -o $@ $< + $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $< clean-local:: -$(Verb) $(RM) -f $(INCFiles) -- Alain
2009 Aug 05
1
syntax-check changes
...| 1 - 11 files changed, 0 insertions(+), 11 deletions(-) diff --git a/appliance/Makefile.am b/appliance/Makefile.am index 8391b8b..d1338bf 100644 --- a/appliance/Makefile.am +++ b/appliance/Makefile.am @@ -146,4 +146,3 @@ CLEANFILES = $(APPLIANCE_FILES) packagelist kmod.whitelist supermin.incfiles clean-local: rm -rf $(top_builddir)/initramfs - diff --git a/appliance/debian/modules/y0_install-guestfsd b/appliance/debian/modules/y0_install-guestfsd index 17bbbdc..c95e4f0 100755 --- a/appliance/debian/modules/y0_install-guestfsd +++ b/appliance/debian/modules/y0_install-guestfsd @@ -30,4...
2008 Mar 15
0
Re: CentOS Digest, Vol 38, Issue 15
...gt; available. Google searching just now doesn't make rsync directly to > tape too hopeful. You can't do rsync to tape. > What are the simplest options for incrementals based on date/time modified? The one that gets it right is: cd /path/to/save tar --listed-incremental /path/to/incfile -c -f /dev/nst0 . where incfile is arbitrary filename that you choose for each run. If the file doesn't exist, you'll get a full run and create the file. If it does exist you get an incremental and the file is re-written in place for a subsequent incremental run. If you want all inc...