search for: mrubel

Displaying 11 results from an estimated 11 matches for "mrubel".

Did you mean: rubel
2003 Jun 02
1
--link-dest when target and compare_dir both have file
...ource/ backup.1/ $ # Now backup.1 has the newer version of a, and backup.0 has the original $ # version; this would normally be the state after the rotation. Wait $ # another minute or so. $ touch source/b $ # this updates the timestamp on source/b $ ls -l * backup.0: total 0 -rw-rw-r-- 1 mrubel mrubel 0 Jun 1 18:57 a -rw-rw-r-- 1 mrubel mrubel 0 Jun 1 18:58 b backup.1: total 0 -rw-rw-r-- 1 mrubel mrubel 0 Jun 1 18:58 a -rw-rw-r-- 1 mrubel mrubel 0 Jun 1 18:58 b source: total 0 -rw-rw-r-- 1 mrubel mrubel 0 Jun 1 18:5...
2003 Jan 03
1
[Fwd: Re: rsync windows -> unix still hanging :(]
...ssage didn't include rsync@lists.samba.org in the reply, and I think this message is in topic. -------- Original Message -------- Subject: Re: rsync windows -> unix still hanging :( Date: Mon, 30 Dec 2002 17:24:47 -0800 From: Jim Kleckner <jek_subs@kleckner.net> To: Mike Rubel <mrubel@galcit.caltech.edu> CC: cygwin@cygwin.com References: <Pine.GSO.4.10.10212301618100.1820-100000@betz.galcit.caltech.edu> The msleep(100) call is not checked into version 1.156 of main.c. I would recommend trying this one-line patch to see if it helps. I haven't personally delved i...
2002 Apr 09
0
possibly new rsync trick: rotating snapshots
...ial Circle, Suite D Longmont, CO 80501 Available via SameTime Connect within Philips, n9hmg on AIM perl -e 'print pack(nnnnnnnnnnnn, 19061,29556,8289,28271,29800,25970,8304,25970,27680,26721,25451,25970), ".\n" ' "There are some who call me.... Tim?" Mike Rubel <mrubel@galcit.caltech.edu> Sent by: rsync-admin@lists.samba.org 04/09/2002 12:23 AM To: Martin Pool <mbp@samba.org> cc: rsync@samba.org (bcc: Tim Conway/LMT/SC/PHILIPS) Subject: Re: possibly new rsync trick: rotating snapshots Classification:...
2003 Jun 03
1
Rsync: --link-dest when target and compare_dir both have file
...forwarding this directly > to you. If you'd rather wait until the list restarts, that's fine too. I'm CCing the list. > > Best regards, > Mike > > ---------- Forwarded message ---------- > Date: Mon, 2 Jun 2003 09:56:50 -0700 (PDT) > From: Michael Rubel <mrubel@galcit.caltech.edu> > To: rsync@lists.samba.org > Subject: --link-dest when target and compare_dir both have file > > Hi J.W. et al, > > Kevin Everets was kind enough to inform me about some strange behavior in > his backup script, which seems to be the result of --link-de...
2008 Dec 22
1
rsync --link-dest option with the destination directory containing old files.
Way back: > > ---------- Forwarded message ---------- Date: Mon, 2 Jun 2003 > > 09:56:50 -0700 (PDT) From: Michael Rubel <mrubel at > > galcit.caltech.edu> To: rsync at lists.samba.org Subject: > > --link-dest when target and compare_dir both have file > > > > Hi J.W. et al, > > > > Kevin Everets was kind enough to inform me about some strange > > behavior in his backup script,...
2003 Jan 03
0
[Fwd: Re: rsync windows -> unix still hanging :(]
...age didn't include rsync@lists.samba.org in the reply, and I think this message is in topic. -------- Original Message -------- Subject: Re: rsync windows -> unix still hanging :( Date: Mon, 30 Dec 2002 16:10:32 -0800 From: Jim Kleckner <jek-cygwin@kleckner.net> To: Mike Rubel <mrubel@galcit.caltech.edu>, cygwin@cygwin.com Mike - Greger Cronquist and I have been using a patched rsync successfully. This was patched from two published patches, one for buffering which seems to cause severe performance problems under cygwin while only mild under Linux. The is for the hang d...
2003 Mar 24
1
Rsync snapshots problem.
From: http://lists.samba.org/pipermail/rsync/2002-December/009101.html >Well, I followed this link: http://www.mikerubel.org/computers/rsync_snapshots/ > >and implemented it (with a bit of tweaking) on my home network. It is >used to make snapshots of two Windows PC's over samba. On one of the >machines (and not the other, from what I can tell) it deletes files from >the
2002 May 22
2
rsyncing read-only files
Hi guys, I have a simple question regarding using rsync when one has read-only files on the src machine. My situation is the following: I have two machines, call then A and B. I'm using rsync on B to download from A (I'm running rsync in daemon mode on A from inetd.conf). The rsyncing on B works fine except for one problem: when I run rsync on B to do the downloading from A, I get
2002 Apr 22
3
no output from perl script
Here is the first Perl script I've tried to write to run rsync. It seems to work, but I don't see the progress like I should. I apologize if it's sloppy, I should add that it's not only the first perl script I've written for rsync, it's the first perl script I've written at all. ___________________________ #!/usr/bin/perl -w print " This command will DELETE
2002 Mar 27
2
rsync-2.5.4:backup.c possible bug
Hello, I suspect a minor bug in the file rsync-2.5.4/backup.c line 206. To identify too-long pathnames, it makes the following test: if (strlen(backup_dir) + strlen(fname) > (MAXPATHLEN - 1)) I think that the constant subtracted off should be 2, to account both for the forward-slash and for the trailing zero in the following snprintf statement, line 211: snprintf(keep_name, sizeof
2003 Apr 25
1
suggest warning for nonexistant compare_dest
Hello rsync developers, The string compare_dest (in options.c) is set whenever the --compare-dest or --link-dest options is called. However, if the directory specified by compare_dest does not exist, then the target files (which should have been in compare_dest) are not found, and every transfer is a full transfer. I can't imagine that would ever be the user's intent. Perhaps a