Re: config

2021-06-25 Thread Joe via rsync
take a little longer. Joe > > Am 25.06.2021 um 17:34 schrieb Knight, Dave: >> The rsync stdout typically lists directories "considered" with a "/" >> at the end and lists those files that actually get copied/sync'd by >> name with no "/" at the

Re: config

2021-06-25 Thread Joe via rsync
easier as long as the required patterns aren't too complex. Joe > Rsync by default displays nothing. There are more than one options that > tell it to display the files it is touching. There are other (and > duplicate) options that tell it to show everything. You didn't say what >

Back-up differences. Raspberry Pi and Fedora

2020-09-29 Thread joe--- via rsync
D= BACKUPDIR=`date +%A` OPTS="--force --ignore-errors --delete-excluded --exclude-from=/home/joe/Documents/exclude.txt   --delete --backup --backup-dir=/$BACKUPDIR -a" export PATH=$PATH:/bin:/usr/bin:/usr/local/bin # the following line clears the last weeks i

Re: Syncing from two sources to one target and deleting files not in either source

2020-07-21 Thread Joe via rsync
instead of rm! Joe On 7/21/20 7:14 AM, @lbutlr via rsync wrote: > Given three servers where Server 1 has several GB of files and Server 2 has > several GB of files and Server 3 has all the files from both Server 1 and > Server 2 in a single directory, how can I remove files on Server

Re: Seemingly impossible bug: -v not always listing every copied file

2019-10-30 Thread Joe via rsync
(not a newline). It's probably smart enough to handle it, but if it isn't, the current log line might be overwritten by the next one. Joe On 10/30/19 1:24 AM, raf via rsync wrote: > Thanks. I'll try that. But I agree that it'll be > something else. It's unlikely that whole trace files >

Re: rsync many processes and slow backup

2019-07-12 Thread Joe via rsync
miliar with fuzzy searching, but using that in places like /var seems odd. One of the constant refrains on this list is that using checksums is almost never a good idea. In combination with fuzzy, it seems even more tenuous. Joe -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: [Bug 13901] New: Empty quotes adds cwd to SRC directories

2019-04-17 Thread Joe via rsync
I brought this up on the list years ago and was told it's a feature, not a bug. Even if some other GNU or Linux commands have this "feature", it still violates the principle of least surprise. It's also pretty hard to discover because a null argument is literally invisible. Joe On 4/

Re: [Bug 13735] Synchronize files when the sending side has newer change times while modification times and sizes are identical on both sides

2019-01-22 Thread Joe via rsync
While a solution using rsync would be ideal, if you don't have a huge number of files  or lots of huge files which meet this special case, it probably wouldn't be prohibitively difficult to write your own special case script. It could be set to ignore all files that rsync will handle normally

Re: rsync time machine backup permissions

2018-03-19 Thread Joe via rsync
of this problem and ways to avoid it. Joe On 03/19/2018 06:22 AM, Andre Althoff via rsync wrote: Dear rsync users, I'm trying to copy my Time Machine Backup from my old USB hard drive to a new one. I got error messages, because rsync don't create group and other permissions. I use rsync

Re: How to set absolute path for rsync?

2017-08-15 Thread Joe Qiao via rsync
Thanks so much for the quick reply, Kevin! I tried with ssh and --partial-dir, it looks the partial file still will be stored in local dir, but not in /tmp. Every 1.0s: ls -al /home/joe/rsync/ /tmp/ Tue Aug 15 17:29:30 2017 /home/joe/rsync/: total 408840 drwxr-xr-x 2 root root

How to set absolute path for rsync?

2017-08-15 Thread Joe Qiao via rsync
server is joe28, client is joe27. And here is the config on server. root@joe28:~# cat /etc/rsyncd.conf # Global settings address = 10.148.34.28 numeric ids = yes uid = 0 read only = no reverse lookup = no dont compress = * timeout = 10 [JOE] path = /home/joe/rsync comment

Re: which rsync command?

2017-02-22 Thread Joe
I'm probably missing something, but it looks like your first requirement rules out using --delete, but your third requirement seems to imply the need for it because you want the source and target to be identical - and it won't be if there are any files on the target which are not on the source.

Re: -e escape rule

2016-11-20 Thread Joe
ar the one for -e. Francis A couple of years ago I was having somewhat similar problems building an rsync command in bash and someone on this list suggested exactly the same solution. It really makes things simpler - and easier to read/maintain. Joe -- Please use reply-all for most replie

Re: rsync script for snapshot backups

2016-06-19 Thread Joe
hat you want it to. I didn't put the whole command together because until you understand how it works, you don't want to try something that might delete a bunch of things beyond what you actually want deleted. Joe On 06/19/2016 08:22 AM, Dennis Steinkamp wrote: Hey guys, i tried to create a s

Re: rsync stopped working

2016-01-20 Thread Joe
something goes wrong. I'm sure some of the experts on this list can explain the /. issue way better than I did, but this may be enough to get you unstuck. HTH Joe On 01/20/2016 03:11 AM, Bob Holtzman wrote: Running Debian 8.2, xfce 4.10, rsync 3.1.1-3. I just edited my backup script as follows

Re: What does the group "DEFAULT"?

2015-10-23 Thread Joe
Looking at man rsyncd.conf, it appears that there should be no white space between the percent (%) sign and the format specifiers. Joe On 10/23/2015 01:43 PM, Дугин Сергей wrote: Hello. option %G --log-file-format = "|% i |% B |% U |% G |% l | [% M] |% n" What does the grou

Re: rsync always try change owner and group of symlink in --fake-super mode

2015-10-11 Thread Joe
. Joe On 10/11/2015 06:17 AM, Pavel Alexeev wrote: Hi all. I long time discover strange to me behavior. If I add --fake-super option on both sides rsync start always set owner and group of symlink. What interesting there no error, but it done each time as it has been changed. Simple reproduce

Re: Error with paths with ()'s

2015-08-17 Thread Joe
- as the file name so it uses the output of the find command as input to rsync. Once you get that sorted, any remaining errors should be a lot easier to fix. Joe On 08/17/2015 02:13 AM, @lbutlr wrote: I was trying to process a bunch of folders to sync them to another drive and ran across an error I

Re: Question on folder sync with directory name translation

2015-06-08 Thread Joe
around to actually testing it. Joe On 06/08/2015 03:40 PM, Gionata Boccalini wrote: Thanks Joe for the reply: 1) why do you say to use fuzzy twice? Do you mean in both directions? 2) I have to mention that the remote system is a Synology NAS, which for whatever reason (I can't think about

Re: Question on folder sync with directory name translation

2015-06-07 Thread Joe
I'm sure one of the experts will have a better answer, but two things come to mind as options to explore: 1) Use --fuzzy twice so files which are the same but possibly with different names and locations are synced 2) Use some sort of symlinks on the destination so the names actually match

Re: great feature idea (well, hopefully)

2015-02-12 Thread Joe
I haven't used it yet, but take a look at --fuzzy specified once or twice. I think it does what you want or at least something very similar. Joe On 02/11/2015 09:03 AM, QUBE RUBBIK wrote: Hello I was just thinking about a killer feature for rsync, the ability to detect files name changes

Re: [Bug 11067] New: add --min-depth and --max-depth options

2015-01-22 Thread Joe
Maybe a bit off topic. (I don't deal with any data even remotely that large.) How would you use these new options - just as a way to break large tasks into smaller batches? If rsync stops in the middle, then the target would be in a sort of limbo where it might not be fully usable. Joe On 01/22

Re: [Bug 2294] Detect renamed files and handle by renaming instead of delete/re-send

2015-01-07 Thread Joe
Isn't this pretty much what specifying --fuzzy --fuzzy (twice) is supposed to do? Joe On 01/03/2015 04:23 PM, samba-b...@samba.org wrote: https://bugzilla.samba.org/show_bug.cgi?id=2294 --- Comment #22 from elatl...@gmail.com --- Wow 10 years. Maybe one reason this has not been implemented

Re: [Bug 10963] rsync to multiple destinations

2014-11-25 Thread Joe
results, but this would probably also be the case with the requested option. If there was some advantage to running them in parallel, throwing an ampersand on the end of the command line would probably do it. Joe On 11/25/2014 06:00 PM, samba-b...@samba.org wrote: https://bugzilla.samba.org

Re: [Bug 10951] New: Emtpy parameter triggers unwanted behavior, but no error message

2014-11-21 Thread Joe
and maintain. I am using this technique in other applications as well. Joe On 11/21/2014 02:46 AM, samba-b...@samba.org wrote: https://bugzilla.samba.org/show_bug.cgi?id=10951 Bug ID: 10951 Summary: Emtpy parameter triggers unwanted behavior

Re: Using --fuzzy

2014-11-17 Thread Joe
wrote: On 11/16/2014 03:53:12 PM, Joe wrote: I have a lot of files (and directories) (up to a few hundred at a time) that I get from various sources. Some time after I get them (after they are already backed up), I often have to move them around and normalize their names. When I do

Using --fuzzy

2014-11-16 Thread Joe
I have a lot of files (and directories) (up to a few hundred at a time) that I get from various sources. Some time after I get them (after they are already backed up), I often have to move them around and normalize their names. When I do this, rsync sees them as unrelated to the copies of these

Re: Using --fuzzy

2014-11-16 Thread Joe
Great idea which I will keep in mind for other cases! In this case, however, the backups are on separate partitions on external USB drives (I have a notebook), so hard links won't work. Joe On 11/16/2014 07:38 PM, Karl O. Pinc wrote: On 11/16/2014 03:53:12 PM, Joe wrote: I have a lot of files

Re: RFC: slow-down option

2014-04-03 Thread Joe
/throttle HTH Joe On 04/03/2014 07:41 AM, Marian Marinov wrote: Hello, I've been using rsync on some backup servers for years. In 2011 we had a situation where the FS of the backup server was behaving strange, even thou there was enough available I/O, the fs(ext4 on 16TB partition with a lot

Re: Strangely fast run without error

2014-01-06 Thread Joe
This is what it looks like when rsync thinks everything is up to date on the target. It didn't transfer anything. that's why it was so fast. You would need to post your rsync command and other relevant data for anyone to be able to diagnose this further. Joe On 01/06/2014 05:14 AM, Fabian

Re: map destination files files based on meta data

2013-09-30 Thread Joe
general purpose application) would probably be less flexible. A Google for linux get exif turned up lots of URLs that look good. Joe On 09/30/2013 10:22 AM, Cary Lewis wrote: I am in the process of designing a photo synchronization application - basically I want to be able to copy all

Re: need help with an rsync patch

2013-08-13 Thread Joe
to elevated permissions on your system, then backup is the least of your problems. Joe On 08/13/2013 03:00 AM, Sherin A wrote: On Tuesday 13 August 2013 12:23 PM, Joe wrote: Is there any way at all to say which is the original file and which is the hard link? I'll bet there isn't, although I' m

Re: getting problems with lsyncd.

2013-05-25 Thread Joe
Love your analogy! Joe On 05/24/2013 05:09 PM, Brian K. White wrote: On 5/23/2013 1:28 AM, garvit sharma wrote: Please help i have tried many times but i did not found the reason behind not syncing up. What do you expect anyone here to do? This is the rsync mail list not the lsync mail

Re: Is there a howto/tutorial on backups/rsync that covers the use of hard and soft links?

2013-02-01 Thread Joe
Thanks. I'm taking a look at it. May take awhile to see if it fits my needs. It sounds promising. Joe On 01/31/2013 04:36 PM, Henri Shustak wrote: You may be interested in having a look at LBackup http://www.lbackup.org, an open source (released under the GNU GPL) backup system

rsync parameters errors

2013-01-24 Thread Joe
.) BTW, when I first ran this, my log file did not exist and rsync said it would ignore it because it didn't exist. In the past, this worked fine. If it wasn't there, rsync just created it (which is the expected behavior - at least to me). TIA Joe kubuntu precise (12.04), 64-bit i5 notebook

Re: Is there a howto/tutorial on backups/rsync that covers the use of hard and soft links?

2013-01-22 Thread Joe
how they work in more detail. Joe On 01/22/2013 02:48 AM, Tony Abernethy wrote: This may help: (man ln) A hard link to a file is indistinguishable from the original directory entry; any changes to a file are effectively independent of the name used to reference the file. Hard links may

Re: Is there a howto/tutorial on backups/rsync that covers the use of hard and soft links?

2013-01-22 Thread Joe
Thank you! I will read it and see where to go from there. Joe On 01/22/2013 12:44 PM, Kevin Korb wrote: Here is one I wrote up for a LUG presentation that is specifically about doing it yourself: http://sanitarium.net/golug/rsync_backups_2010.html On 01/22/13 02:31, Joe wrote

Re: Is there a howto/tutorial on backups/rsync that covers the use of hard and soft links?

2013-01-22 Thread Joe
Thanks. Will read. Joe On 01/22/2013 05:31 PM, François wrote: Hi Joe, If you want to understand hard-links, just take a look at Wikipedia : http://en.wikipedia.org/wiki/Hard_link#Example I think it's pretty easy to understand. To understand how hard-links (and rsync) can help you make

Is there a howto/tutorial on backups/rsync that covers the use of hard and soft links?

2013-01-21 Thread Joe
. (I did experiment with areca (I think it uses rsync libraries under the hood) which would probably do everything I want, but I got stuck too many times and couldn't get enough support on their forum to keep going.) TIA Joe -- Please use reply-all for most replies to avoid omitting the mailing

Re: threaded rsync to improve performance over long distance ?

2013-01-20 Thread Joe
with better bandwidth and use their connection (hopefully faster as well - with their permission/service agreement) to send it the rest of the way. Joe On 01/20/2013 02:47 PM, Markus Moeller wrote: I try to rsync a lot of data over a long distance AU to UK and get a slow data rate because of the known

Re: Invoking rsync from a script with null parameters

2012-11-05 Thread Joe
On 11/05/2012 03:22 AM, Voelker, Bernhard wrote: Joe wrote (Monday, November 05, 2012 4:23 AM): To avoid having a number of slightly different rsync commands, I would like to use shell variables as part of the rsync command. I.e.: DRYRUN=-n rsync ${DRYRUN} more parameters ... Just omit

Re: Invoking rsync from a script with null parameters

2012-11-05 Thread Joe
which shouldn't have any impact at all unless it is explicitly referenced in the parameters. Your approach gets all the substitutions done before rsync gets to see it, so sometimes a blank is really just a blank ;) . Joe On 11/05/2012 11:06 AM, Kevin Korb wrote: Very interesting. It does appear

Invoking rsync from a script with null parameters

2012-11-04 Thread Joe
what problems that might cause for other people. TIA Joe -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Invoking rsync from a script with null parameters

2012-11-04 Thread Joe
awhile to find. Sorry I didn't include more details in my original post. On the bright side, this is what caused me to join this list. I've learned a lot - mostly by lurking. Thanks. Joe On 11/04/2012 10:35 PM, Kevin Korb wrote: I suspect you are missing a space somewhere and are ending up with 2

Rsync recently modified files first

2008-04-13 Thread Joe Henning
files first and then work backwards in time. From what I've read in the documentation, I don't think rsync can do this for me. Can it? If not, is it an easy modification to make? How would one go about doing it? Thanks. Joe

Re: Rsync stalls

2007-11-28 Thread Joe Demeny
On Wednesday 28 November 2007 02:41:30 am Fabian Cenedese wrote: At 16:33 27.11.2007 -0500, Joe Demeny wrote: I am trying to rsync a machine running CYGWIN_NT-5.2 server 1.5.24(0.156/4/2) to another which runs FreeBSD 6.2-STABLE; both with rsync 2.6.9. I'm trying to pull the files from

Rsync stalls

2007-11-27 Thread Joe Demeny
is ESTABLISHED. The connections seem to be hanging around indefinitely. If I push the files from the Cygwin machine, rsync runs fine and exits with no error. How can I resolve this problem? -- Joe Demeny -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting

re: rsyncing as root when root login is disabled?

2006-09-16 Thread Joe Ruby
Joe Ruby wrote: I'm trying to do a simple rsync: rsync -av admin at mydomain.com:/backup . But a number of files in /backup are readable only by root, and hence rsync gives these errors: sync: send_files failed to open /backup/etc/mail/virtusertable.db: Permission denied (13) Since

rsyncing as root when root login is disabled?

2006-09-10 Thread Joe Ruby
all the files are readable and the existing permissions get preserved (e.g. not having to do 'chmod -R a+r /backup'. Thanks, Joe __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Re: WARNING: file failed verification -- update discarded (will try again).

2005-12-11 Thread Joe Peterson
-Let_Me_Try_Again.flac host:/tmp) Let me know if I can help to track this down, or I could send you the files (new and old) in question. Thanks, Joe Wayne Davison wrote: On Wed, Dec 07, 2005 at 11:38:25AM -0700, Joe Peterson wrote: WARNING: jukebox/Frank_Sinatra

Re: WARNING: file failed verification -- update discarded (will try again).

2005-12-11 Thread Joe Peterson
BTW, my test case is a sending rsync version 2.6.4-3 (Fedora FC4) and a receiving rsync 2.6.3-1 (Fedora FC3). Within a range of 25 or so minutes of --checksum-seed values (unix time stamps), I see the warning for 3 times. -Joe Joe Peterson wrote: Wayne, I just did some more testing

Re: WARNING: file failed verification -- update discarded (will try again).

2005-12-07 Thread Joe Peterson
messages are seen other than that warning. -Joe Chris Shoemaker wrote: On Wed, Dec 07, 2005 at 11:38:25AM -0700, Joe Peterson wrote: WARNING: jukebox/Frank_Sinatra/The_Main_Event/04-Let_Me_Try_Again.flac failed verification -- update discarded (will try

Re: WARNING: file failed verification -- update discarded (will try again).

2005-12-07 Thread Joe Peterson
it is). -Joe -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: WARNING: file failed verification -- update discarded (will try again).

2005-12-07 Thread Joe Peterson
:) Yeah, I noticed that too! A little too coincidental for comfort! Mike Daws wrote: On Wed, 2005-12-07 at 13:50 -0500, Chris Shoemaker wrote: On Wed, Dec 07, 2005 at 11:38:25AM -0700, Joe Peterson wrote: WARNING: jukebox/Frank_Sinatra/The_Main_Event/04-Let_Me_Try_Again.flac failed

meta data stored in separate file?

2005-08-09 Thread Joe Pruett
i found a couple messages in the archives relating to backups vs. distribution and ownership issues without root privs that kinda touched on the idea of storing meta info (ownership, modes, acls) in a separate file. has anyone else looked at storing meta data in a side file of some sort? it

Re: meta data stored in separate file?

2005-08-09 Thread Joe Pruett
I recommend using a program such as fakeroot (when used with the -s option to save the meta data) or pretendroot (which I haven't personally used). For instance, either run something like this for a daemon setup: fakeroot -s /path/fakeroot.data rsync --daemon --port=8873 \

Re: meta data stored in separate file?

2005-08-09 Thread Joe Pruett
There's something called backuppc (i think backuppc.sourceforge.net) which uses some sort of db backend and has multiple possible transports, rsync is one option. I think it might do what you're looking for. interesting tool, but it is not what i need. it doesn't do acls. it is a pull

Re: rsync crashing under centos 4

2005-03-11 Thread Joe Pruett
A similar problem was reported back in February: http://www.mail-archive.com/rsync@lists.samba.org/msg12557.html that manifested itself after an upgrade to Fedora Core 2. It had worked fine previously (on FC1, presumably). That user (David Blunkett) provided an strace log that showed

rsync crashing under centos 4

2005-03-10 Thread Joe Pruett
the rsync in centos 4 (a recompile of rhel4) is version 2.6.3. and under certain circumstances it will segfault when run in daemon mode. i have tracked it down to the nss code in libc. so this could be a general libc bug, but it is possible that rsync is doing things that don't help matters

Re: rsync crashing under centos 4

2005-03-10 Thread Joe Pruett
i should have run my test first. this code segfaults: #include sys/types.h #include pwd.h main() { struct passwd *p; chroot(/tmp); chdir(/); p = getpwuid(666); if (p) { printf(%s\n, p-pw_name); } exit(0); } so i guess

RE: group change causing failure

2004-10-05 Thread Joe Eiler
guess it is back to the drawing board. Thanks again, Joe -Original Message- From: Wayne Davison [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 2:26 PM To: Joe Eiler Cc: [EMAIL PROTECTED] Subject: Re: group change causing failure On Tue, Oct 05, 2004 at 01:02:57PM -0500, Joe

Ways of further restricting rsync.

2004-09-30 Thread Joe Smith
=rrsync -ro results ssh-rsa B3NzaC1yc2EBIwAAAIEAmkHG1WCjC... http://www.inwap.com/mybin/miscunix/?rrsync -Joe -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart

Rsync Performance

2004-07-16 Thread Joe Eckstrom
-mod? Thanks a lot for your help! Joe Eckstrom DaVita Inc. -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Professional grade rsync?

2004-05-28 Thread Joe Batt
Since this keeps coming up, how difficult would it be to add an option to use a memory mapped file for the file list as temporary storage? (I don't think that will work on Windows, because (at least in Java) the whole file gets loaded in at once.) Joe On Fri, 2004-05-28 at 14:44, Wayne Davison

Re: (fwd from psdasilva@esoterica.pt) rsync: Request for a feature

2004-05-03 Thread Joe Batt
I currently do this with zlibc Transparently access compressed files. 0.9e. The files are compressed on the disk, but appear uncompress to all apps including rsync. Joe On Sun, 2004-05-02 at 19:55, Martin Pool wrote: - Forwarded message from Paulo da Silva [EMAIL PROTECTED] - From

Re: mirroring without a network

2004-02-10 Thread Joe Batt
backup 750MB/minute nightly on a 128kB/second cable uplink (a complete windows 2000 machine (3.8GB used) used mostly for quicken, web and email). Joe -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart

-vn doesn't list empty directories, -v does

2004-01-14 Thread Joe Harrington
I'm using rsync-2.5.7-2 on an updated Fedora Core 1 athlon system. The -vn option lists all files to be copied or deleted, including symlinks, but it does not appear to list empty directories to be copied, even tough it copies them. It does list empty directories to be deleted. The -v option

Re: daily back (incremental backup )

2003-11-18 Thread Joe Batt
On Tue, 2003-11-18 at 13:21, Bipinchandra Ranpura wrote: Hello,... I have taken script from rsync examples, and made changes. . But it doesn`t work can someone help me. ... Here is my script. It copies $1 to $2/date/ and deletes the mod(today, $3) version from $3. The clean up scheme leaves

Re: an unwanted chroot() call

2003-11-13 Thread Joe Batt
rsync defaults to very safe use for root. Maybe more warnings to stderr would help. Joe On Thu, 2003-11-13 at 09:15, Lao Coon wrote: Daniel Ortmann wrote: Ok, I figured out the answer, and as a result I have a suggestion: The rsyncd.conf documentation for use chroot should specify

multi-stream rsync?

2002-08-19 Thread Rizzo, Joe
for transferring files between systems with high bandwidth but also high latency? Thanks, Joe

(no subject)

2002-07-31 Thread JOE PUJEH
REPLY TO: [EMAIL PROTECTED] FROM: MR JOE PUJEH TELEPHONE: 00229-981587 FAX: 00229-338466 COUNTRY: (BENIN REPUBLIC) I am MR JOE PUJEH from SIERRA LEONE, a Country in WEST AFRICA. My father is MR MOMOH PUJEH, former MINISTER of TRANSPORT and COMMUNICATIONS and one time DEPUTY

Re: include exclude help please.

2002-03-21 Thread Joe Rice
and animated in/with Flash. Thanks for all your help, joe -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.tuxedo.org/~esr/faqs/smart-questions.html

rsync on SunOS4.1.3_U1 and 4.1.4

2002-02-13 Thread Joe Manning
) at util.c(232) There is free memory on the system. Thankis, joe. begin:vcard n:Manning;Joe tel;cell:+46-70-5262695 tel;work:+46-8-568 61695 x-mozilla-html:FALSE version:2.1 email;internet:[EMAIL PROTECTED] org;quoted-printable:Ericsson Global IT Services;=C4L/GIS/O/KAU adr;quoted-printable:;;G

Re: how to ssh in cron

2001-02-12 Thread Joe Rice
The easiest way would be to use the public/private key mechanisms. man ssh-keygen i use rsync -e ssh in cron for most of the things i do with rsync and it works well. joe Jay Moore([EMAIL PROTECTED])@Mon, Feb 12, 2001 at 04:02:45PM +: How do I call rsync with -e ssh in a shell script run

--rsh=COMMAND and ssh -o 'options'

2000-12-18 Thread Joe Rice
t:/ FATAL: Connecting to yes' failed: No address associated to the name unexpected EOF in read_timeout any help would be appreciated. Thanks, joe rice

rsync specific files

2000-11-10 Thread Joe D'Andrea
A reality-check question, as I continue plundering the documentation vaults. :-) I want to rsync a list of files (relative paths), not entire directory trees. I know I can pass the list on the command line like so: cd /parent/dir rsync -v -R relative/path/to/file.ext host:/parent/dir I want