Displaying 20 results from an estimated 20000 matches similar to: "Proposed enhancements to rsync filters"
2006 Feb 24
1
Fwd: Re: How to use multiple link-dest directories?
I forward Maynard's suggestions to the list.
-------- Forwarded Message --------
From: Maynard Handley <name99@name99.org>
To: Matt McCutchen <hashproduct@verizon.net>
Subject: Re: How to use multiple link-dest directories?
Date: Thu, 23 Feb 2006 19:31:56 -0800
Great. That's exactly the sort of answer I wanted. I'll try it tonight.
(BTW, I guess maybe it got lost since I
2006 Mar 31
1
logging problem
Yep I tried those two options, and nothing...
Even if the pre-user conf files have a log file in the same directory,
which I touch before trying, messages keep going to syslog... I tried
with 666 permissions on rsyncd.log too just to make sure...
The following is one of the user's conf file, hope theres a clue. Thanks!
log file = /home/pluto/rsyncd.log     <<< This is the problem!!
2006 Feb 24
1
get_local_name
Wayne,
I have redone get_local_name again (patch attached), this time to enable
rsync to remove a file to make way for a destination directory; this
resolves the "surprise" noted in David Tonhofer's diagram 2.  I also
made it obey --keep-dirlinks when looking for a destination directory
and made various rearrangements.  Tell me what you think, and if you
decide to commit my code,
2005 Oct 13
1
Worrisome race condition involving half-transferred files
Rsync people,
Tell me if I'm wrong, but rsync seems to have a very serious race
condition that would make it risky to transfer files into a directory
writable by someone you don't trust if permissions are going to be
granted to other people on those files.
The rsync receiver creates a half-transferred file with 600 or 700
permissions; then the receiver writes the data and finalizes the
2007 Mar 04
1
Problem using callNextMethod() in S4
Dear all,
Maybe, I am doing something wrong, but using R-2.5.0 on my Intel-Mac, I 
have problems
using function callNextMethod() in method initialize.
I am loading the following code as file "testS4.R":
setClass("baseClass",
   representation(myname = "character",
                  mydir  = "character",
                  "VIRTUAL"),
  
2003 Feb 28
2
File opening error after 1020 files opened
Hi,
I am trying to use "read.pnm" from the package "pixmap" to read more 
than 10 thousand image files in "mydir".
 > file.list <- dir( "mydir", full=T)
 > for( i in 1:length(file.list) ) {
    print(i)
    x <- read.pnm(file.list[i])
}
In the beginning it was fine. But after reading 1020 images or so, the 
read.pnm function
seems to crash on
2006 Feb 27
1
Copying many sources to different places inside a destination
Rsync people,
I am preparing to overhaul my Web site's build system, and I am looking
for a convenient way to collect files and directories from various
places on my computer and put them at various locations inside a
destination directory to be posted to my Web site.  So far, my script
has been running rsync once for each source, but this is too slow.  Is
there a way to get rsync to collect
2005 Sep 11
1
Possibility of merging rsync and tar
Hey rsync people,
Here's a really radical idea and a possible future direction for the
rsync project to explore.
It occurs to me that tar and rsync are closely related in their
purposes.  "tar -c (blah) | tar -x" can be used to copy files; rsync's
setup with a sender process and a receiver process is strikingly
similar.
The only major conceptual difference is that the rsync
2006 Feb 24
0
Improvements to man page for --no-implied-dirs and --keep-dirlinks
Wayne,
Attached is a patch worth of suggested man page improvements for
--no-implied-dirs and --keep-dirlinks.  I think new users would find my
explanations clearer and more complete, although you may want to make
additional changes.  I regenerated rsync.1 and the patch includes
changes to it, but my yodl is somewhat weird, so I suggest you run yodl
again yourself.
-- 
Matt McCutchen
2002 Mar 12
2
problem with environment detecting
Hello!
I want  to detect some environment on a remote host (in C program, getenv()), 
but it is failed. Here is a little program which I try to run on a remote 
host with command:  "#ssh myhost myecho"
/* myecho */
#include <stdio.h>
main (){
        char *dir;
        if ((dir = getenv("MYDIR")) != NULL)
                printf ("environment is %s\n",dir);
   
2006 Aug 01
2
deleting a directory
Hi, all,
I'm looking a utility for removing a directory from within R. Currently, 
I'm using:
foo <- function(...) {
   mydir <- tempdir()
   dir.create(mydir, showWarnings = FALSE, recursive = TRUE)
   on.exit(system(sprintf("rm -rf %s", mydir)))
   ## do some stuff in "mydir"
   invisible()
}
However, this is assumes "rm" is available. I know of
2013 May 21
1
R CMD check: unknown option ?--outdir==RCHECK?
Hi,
I believe this is kind of a long standing bug though. In R-3.0.1, but this
also happened in previous versions, the long version '--outdir' is not
recognised:
For `R CMD check --outdir=mydir pkg_0.1.tar.gz` we get:
Warning: unknown option ‘--outdir=mydir’
But with `R CMD check -o mydir pkg_0.1.tar.gz` we get:
* using log directory ‘/home/renaud/Documents/projects/mydir/pkg.Rcheck’
2010 Apr 02
1
DO NOT REPLY [Bug 7321] New: Extend "p" filter modifier to make source dirs prunable
https://bugzilla.samba.org/show_bug.cgi?id=7321
           Summary: Extend "p" filter modifier to make source dirs prunable
           Product: rsync
           Version: 3.1.0
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: enhancement
          Priority: P3
         Component: core
        AssignedTo: wayned at samba.org
        ReportedBy:
2009 Aug 03
1
the protect flag - P doesn't work with --relative option ?
Hi,
Basically, I want to preserve some of directories on destination side
conditionally and hence, I choose to use --filter option mentioned in rsync
man pages. I noticed that --filter option works as expected when I don't
have --relative option used but in below case it doesn't work.
rsync  -avz  --relative --delete  --filter='H /mydir2' --exclude='-
/preserve'  mydir1/.
2012 Feb 15
1
Passing date as parameter while retrieving data from database using dbGetQuery
Hi All,
This might be simple question, I need to retrive data for modelling from the
databases. Eveytime date values changes so I countnot fix date value in the
code, it is required to pass as parameter.
When I pass the date as parameter, it throws error.
(ERROR: column "start_dt" does not exist  Position: 285)
My script is as below, please guide me where am I going wrong?
All parameters
2001 Dec 03
1
New package: g.data
A new package "g.data" is available on CRAN, to create and maintain databases
that work more like the S-Plus model.
Here's the official Description for g.data (v1.2):
  Create and maintain delayed-data packages (DDP's).  Data stored in
  a DDP are available on demand, but do not take up memory until requested.
  You attach a DDP with g.data.attach(), then read from it and assign
2001 Dec 03
1
New package: g.data
A new package "g.data" is available on CRAN, to create and maintain databases
that work more like the S-Plus model.
Here's the official Description for g.data (v1.2):
  Create and maintain delayed-data packages (DDP's).  Data stored in
  a DDP are available on demand, but do not take up memory until requested.
  You attach a DDP with g.data.attach(), then read from it and assign
2002 Feb 11
1
problem getting just a single dir !
I am trying to fetch a single dir using the following command but all I
get is a empty dir:
rsync -av www.myServer.com::myStuff --include=myDir --exclude=* .
Here is the rsync output:
receiving file list ... done
myDir/
./
wrote 119 bytes  read 392 bytes  92.91 bytes/sec
total size is 0  speedup is 0.00
The command looks simple and straight forward but somehow I am not
getting the expected
2016 Dec 27
2
Help with httpd userdir recovery
I lost my harddrive on my little personal webserver that only serves 
some private files from my userdir.
So I am trying to build this from notes on a new Centos7.3 installation 
(well really Centos7.3-arm, but supposedly same sources).
Right now the server is running on a test subnet, not the production, 
but I have set up the hostname and my standard httpd edits.  I have 
enabled userdir and
2011 Mar 19
1
Can't disable chroot to 'empty' dir, but need to... how to do it?
Hello all...
I've installed dovecot on my ISP's shell server, and am using SSH tunnelling
so that I can retrieve my mbox-format mail from procmail-processed mailboxes
on that server (normally I just ssh there and read them locally with pine,
but now that I have a phone with an IMAP client, I wanted to be able to read
it more easily there).
The problem I'm having is, although it's