Re: rsync over ssh fails with --files-from

2023-12-21 Thread Alex via rsync
> The errors column is 0. The drop column is 18. The second bit number > is the number of packets which should grow. At least that is how I read > it. Column makes it more readable in a terminal but not so much in an > email. > Yes, my apologies. I even debated inserting a screenshot. errs was

Re: rsync over ssh fails with --files-from

2023-12-21 Thread Alex via rsync
67 0 0 0 The "errs" for ens18 are steadily increasing, but the "drop" column is steady. It's also curious the errors on loopback would also be increasing? Other ideas on how to troubleshoot this would be greatly appreciated. Thanks, Alex On Wed, Dec 20, 2023

Re: rsync over ssh fails with --files-from

2023-12-20 Thread Alex via rsync
It also happens when I'm pushing the files to the destination or pulling them from the remote to local. Thanks, Alex > > On 12/20/23 09:50, Alex via rsync wrote: > > Hi, I've been using rsync on fedora over ssh to sync directories for > > decades, but suddenly h

rsync over ssh fails with --files-from

2023-12-20 Thread Alex via rsync
Hi, I've been using rsync on fedora over ssh to sync directories for decades, but suddenly having a problem with transferring multiple files at a time to one specific host using --files-from. I can't think of what might have changed to have caused this. Using rsync to transfer a single file to this

Re: Use rsync's checksums to deduplicate across backups

2011-11-03 Thread Alex Waite
that the > system >  will only store one copy of the unique contents of each file, regardless of >  the file's name. This does look like what I was describing, though it seems it was never included into rsync. Is that correct? ---Alex -- Please use reply-all for most replies to avo

Re: Use rsync's checksums to deduplicate across backups

2011-11-03 Thread Alex Waite
um on top of what rsync already does. I imagine this would make performance noticeably worse than what I currently have, though I could be wrong. ---Alex -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubscribe or change options: https://lists.samba.org/mailm

Use rsync's checksums to deduplicate across backups

2011-11-02 Thread Alex Waite
time. I look forward to hearing your thoughts. ---Alex -- 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: Patch: Better handling for rsync temporary files

2011-10-26 Thread Alex Jurkiewicz
rs and even '.XX.rsynctmp' doesn't fit, error out. If we want to keep going, rsync could try fewer X's down to zero and eventually try the 9 char '.rsynctmp' filename. (Well, one problem with the above is the exclude pattern would have to be .*rsynctmp, so you could give up at

Re: Patch: Better handling for rsync temporary files

2011-10-25 Thread Alex Jurkiewicz
Any comments? On Thu, Oct 20, 2011 at 3:59 PM, Alex Jurkiewicz wrote: > Hi all, > These two patches change how rsync handles temporary files on the receiver > side. The first patch adds a static token to rsync's temporary filenames. > The second patch ignores files with this

Patch: Better handling for rsync temporary files

2011-10-19 Thread Alex Jurkiewicz
of rsync's temporary files will be "self-documenting" for users running `ls -la`. I've tested this patch on Linux, but am reasonably unfamiliar with C so feedback appreciated. Cheers, Alex -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubs

Re: Backing up resource forks

2011-03-11 Thread alex conway
THATS GREAT. ALL I NEED NOW IS CREDIT DEBIT DETAILS TO PROVE YOUR I.D On Fri, Mar 11, 2011 at 4:13 PM, David Allie wrote: > Mike, thanks for the clarification and for updating your instructions. > > -- David > > *On Mar 11, 2011, at 11:05 AM, Mike Bombich wrote:* > FWIW, I updated http://www.bo

Re: Multiple wildcards in source

2010-10-29 Thread Alex Cartwright
$ sudo ls -la /home/*/domains/* ls: cannot access /home/*/domains/*: No such file or directory Bash 3.2, Debian Lenny Hum. On Friday 29 October 2010 23:02:06 Steven Levine wrote: > In <201010292152.10643.alexc...@googlemail.com>, on 10/29/10 > > at 09:52 PM, Alex C

Re: Multiple wildcards in source

2010-10-29 Thread Alex Cartwright
Unfortunately I have tried it without the quotes as well, with no luck. $ sudo rsync -arv /home/*/domains/* /home/alex/foo/ [sudo] password for alex

Multiple wildcards in source

2010-10-29 Thread Alex Cartwright
this. rsync -arv '/home/*/domains/*' ~/ rsync: change_dir "/home/*/domains" failed: No such file or directory (2) I've been looking at doing it another way, using something mad such as: rsync -arv --exclude='*' --include='*/domains/*' home ~/ But

Re: backup option

2010-08-11 Thread Alex Ferrara
Would that not be done by omitting the --delete option? aF On 12/08/2010, at 9:52 AM, hce wrote: > Hi, > > I am using rsync to backup files. Is it possible to specify an option > not to delete files from backup directory if the files are deleted > from source? In that way, I can always keep som

Re: Ignoring "file has vanished" errors?

2010-07-24 Thread Alex
nning rsync on Linux, and using the link-dest option to create hard links. Thanks so much for your assistance. Best regards, Alex -- 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

Ignoring "file has vanished" errors?

2010-07-24 Thread Alex
the backup process shouldn't be enough to cause the backup to fail. Thanks, Alex -- 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: First Time Using Rsync

2010-07-23 Thread Alex Ferrara
On 23/07/2010, at 10:42 PM, Carlos Mennens wrote: > I did a search on the web and there are so many different methods / > variations of using this powerful tool. My question for you guys is > very simple and I would like to hear from people on the list who use > this daily what the best command

Re: Problem backing up read-only files

2010-07-22 Thread Alex Ferrara
Hi Gary, It looks like the problem occurs after rsync has transferred the file and is renaming the temporary file to the actual name. I am guessing that the HP media vault has Samba running on it, and it is actually denying access. As a long show, you could try --inplace, which will mean rsync

Rsync backup script with snapshot

2010-07-22 Thread Alex Ferrara
Hi guys, Many thanks with your help on getting my backup script working with relative paths and LVM snapshots. I have it working pretty well now, and I thought I would let everyone see the finished product. I have published it on my wiki at http://wiki.receptiveit.com.au/mediawiki/index.php/Li

Re: Rsync backup issues using relative paths and LVM snapshots

2010-07-15 Thread Alex Ferrara
Thanks for the reply, I did think about remotely executing a mkdir before the backup, but one blocker is that I will be using Thecus NAS boxes as some off-site locations and I don't have shell access. The local staging is a good idea. The servers all run Linux. I will post back with my results

Rsync backup issues using relative paths and LVM snapshots

2010-07-15 Thread Alex Ferrara
nually on the destination server is not desirable. I really want to put the logic in the script so it is easy to bring another backup location online easily. Thanks for your time. Alex Ferrara Director Receptive IT Soutions -- Please use reply-all for most replies to avoid omitting the mailing list.

Re: rsync with forced-command ssh and variable files

2010-04-26 Thread Alex
tion or authentication (since it's automated) will be possible. For the time being, I've renamed the file on the sending side so as to correspond with what I want it to be on the receiving side, and it's working okay. Why can't I have complete flexibility AND total security? :-)

rsync with forced-command ssh and variable files

2010-04-26 Thread Alex
If this isn't possible, how can I restrict it to be as secure as possible? What is the meaning of the 'e.is' arguments on the command line? Thanks, Alex -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubscribe or change options: https://lis

rsync give option mkdir -p

2010-03-25 Thread Alex
Hello how i can use rsync whith mkdir -p for nackup dirs ? when i use rsync / /backup/month/day i need automatic creation month and day dirs. mkdir -p can do that, but rsync can't -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubscribe or change options

Snapshot status

2010-03-19 Thread Alex
.7 clients? Thanks, Alex -- 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: Take2: rsync over ssh with --link-dest

2009-11-11 Thread Alex
DATE=$(date +%Y%m%d) > rsync ... /backup/seg/serverA/xxx.xxx.228/cdrive/$DATE It's part of a larger backup script with its own configuration file, actually. Thanks so much. Best regards, Alex -- Please use reply-all for most replies to avoid omitting the mailing list. To uns

Re: Take2: rsync over ssh with --link-dest

2009-11-10 Thread Alex
= root uid = root The client side command looks something like this: rsync -avz --delete --numeric-ids --exclude-from=/backup/exclude-file.txt \ --link-dest=/backup/seg/serverA/xxx.xxx.228/cdrive/20091109 \ rsync://serverA/cdrive/20091110/ \ /backup/seg/serverA/xxx.xxx.228/cdrive/

Re: Take2: rsync over ssh with --link-dest

2009-11-08 Thread Alex
p/serverA/usr/bin and exclude everything else. Instead, I have about eight sections of my rsyncd.conf to do this; one for each directory tree that I want to back up to a different location, primarily based on dates, to have multiple incrementals. Thanks, Alex -- Please use reply-all for most

Re: Take2: rsync over ssh with --link-dest

2009-11-08 Thread Alex
e the way to go. I've got it set up and running for a few days now, and it's working okay. I'm a bit disappointed that I can't do it by overriding the server command line, but it's okay. Thanks again, Alex -- Please use reply-all for most replies to avoid omitting th

RE: (Not retransferring files deleted from destination)

2009-06-21 Thread Low, Alex
e you can suggest an rsync solution which will help overcome our issue As outlined above. Thanks very much. Cheers. Alex. -Original Message- From: Matt McCutchen [mailto:m...@mattmccutchen.net] Sent: Monday, 22 June 2009 9:47 AM To: Low, Alex Cc: rsync@lists.samba.org Subject:

rsync is fantastic except for one usual feature we want from it .. please help ?

2009-06-21 Thread Low, Alex
witch rsync NOT to do step 4 above ? Our help much appreciated. Regards, Alex low Asgard Capital Management Limited Level 39, 152-158 St Georges Terrace, PERTH WA 6000 * (08) 9415 5758 * 0423 820 728 7 (08) 9481 8481 alex@asgardwealthsolutions.com.au www.asgard.com.au

wire protocol documentation

2008-12-27 Thread Alex P
hi all - can someone point me to any documentation (or the beginnings or snippets thereof) of the rsync wire protocol? i'm resuming work on a .net port of rsync, and need to formalize that piece before i continue. thanks, alex. -- Please use reply-all for most replies to avoid omittin

README file just references CVS repository

2008-04-15 Thread Alex Blewitt
The web pages might show GIT as being the way forward, but the README of the latest release still only refers to CVS: http://rsync.samba.org/ftp/rsync/README Alex -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr

Re: Diff problem

2007-11-21 Thread alex loutrbringa'
souly --modify-window doesn't apply on directories). I applied "-O" option (without understanding everything i should say) then i get nothing to synchronize (that was initally the target : since the synchronisation was done by checksum). All is working now. Thanks again and have a n

Re: Diff problem

2007-11-20 Thread alex loutrbringa'
Hi Matt, thank you for your answer, this is very useful. When i launch my rsync command with "-i" option, i see all my binary files like this : - : > > On Fri, 2007-11-16 at 16:37 +0100, alex loutrbringa' wrote: > > Until know i synchronize

Diff problem

2007-11-16 Thread alex loutrbringa'
Hi everybody, Until know i synchronized a few directories full of binaries with "--checksum" options, it took each time a lot of time since rsync "mdsum" each file contained in my directories. Then I decided to skip "--checksum" option to let rsync work only of files size and files mtime and speed

Problem with --exclude command

2007-11-15 Thread alex loutrbringa'
hanks very much for your help. Alex -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

To: The deducted Few, the disaffected Many, and our spiritual Leaders. Lunacy! The moon? Lunar? What do you mean by that?

2006-05-05 Thread Alex Janssen
ow software matters of this email forum. Anybody seen rsync anywhere? Alex -- Ourwoods.org Charlottesville, Virginia -- 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: Encryption

2006-04-16 Thread Alex Pedenko
have implemented in a backup scenario. If you’re interested, please email me directly.   Alex   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Julian Pace Ross Sent: Sunday, April 16, 2006 12:44 PM To: rsync@lists.samba.org Subject: Encryption   Hi all,   I

RE: Windows rsync without cygwin (looking for Unicode support).

2006-04-07 Thread Alex Pedenko
Title: Windows rsync without cygwin (looking for Unicode support). I posted here a few weeks ago. We wrote a port of rsync to .net, with unicode support. The binary is available at www.kolosy.com/downloads/NetSync.exe, the source code is available through subversion at svn://www.kolosy.co

Re: Rsync decides to copy all old files to WinXP based server

2006-04-04 Thread Alex Janssen
Wayne Davison said the following on 04/04/2006 12:49 AM: On Tue, Apr 04, 2006 at 12:12:32AM -0400, Alex Janssen wrote: The first backup I ran after the time change to Daylight Saving Time it wanted to copy all of the files regardless of the timestamp. Check out this excellent write

Rsync decides to copy all old files to WinXP based server

2006-04-03 Thread Alex Janssen
copy began as well. I am stumped. I don't know what the system time has to do with it seeing as it is comparing file timestamps. Thanks for any suggestions. Alex -- Ourwoods.org Charlottesville, Virginia -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rs

RE: Can rsync handle any type of file?

2006-03-31 Thread Alex Pedenko
Title: RE: Can rsync handle any type of file? The way the algorithm works, the answer to 1 is yes. i haven't used it enough to answer 2. From: Hamish Robertson [mailto:[EMAIL PROTECTED]Sent: Fri 3/31/2006 3:40 PMTo: Alex Pedenko; Robertson Technologies Ltd; rsync@lists.samba.orgSu

RE: Can rsync handle any type of file?

2006-03-27 Thread Alex Pedenko
Title: Can rsync handle any type of file? we use rsync to move encrypted files with no problems. i would say that's as "complex" as it gets, so you should be fine.   -alex From: [EMAIL PROTECTED] on behalf of Robertson Technologies LtdSent: Mon 3/27/2006 2:

RE: .net port

2006-03-19 Thread Alex Pedenko
I guess this is my attempt to do so. It's open source, I'm just trying to make sure that the right people are aware of it. -Original Message- From: Matthew Hannigan [mailto:[EMAIL PROTECTED] Sent: Sunday, March 19, 2006 6:04 PM To: Alex Pedenko Cc: rsync@lists.samba.org Subject

.net port

2006-03-19 Thread Alex Pedenko
far from clean, and far from perfect, but it works and can be a good starting point. Please let me know, Thanks, alex -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

filename paths different in server mode

2006-02-27 Thread Chan, Alex \(Exchange\)
)     bin     bin/toolkit   It should not have the bin prefixed there.  Tried rsync -vvv rsync://hpux1/app/bin/. and just app/bin they were the same.  It only works with app/bin/*   Rgds, Alex   *** Bear Stearns is not

hard links question

2005-02-06 Thread Alex Farid Aliev
this my scenario: all commands are local rsync -a file1 file2 cp -l file2 file3 chown some_other_existing_user:group file1 rsync -a file1 file2 now file2 and file3 are both hard links and permissions are shared in both, versus rsync creating new file2. Desired behavior is to create new file if p

passing ssh password to rsync without prompting it

2004-12-01 Thread jack alex
Greetings ! how to disable ssh password for rysnc without generating ssh keys, - then i tried using "--pa

Re: ports/65043: [patch] net/rsync: problems in client name lookup code

2004-04-01 Thread Alex Vasylenko
fail; I've solved both reported problems by using getaddrinfo, which sets ss.ss_len correctly, in place of other code which didn't set it. best regards, -- Alex. -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org

Re: ports/65043: [patch] net/rsync: problems in client name lookup code

2004-04-01 Thread Alex Vasylenko
Wayne, I'm changing the subject and keeping your text in an attempt to get this recorded in gnats. Wayne Davison wrote: On Thu, Apr 01, 2004 at 11:31:00AM -0500, Alex Vasylenko wrote: - detection of IPv6 via counting dots is plain silly and doesn't work; Thanks, I've tweaked

[patch] net/rsync: problems in client name lookup code

2004-04-01 Thread Alex Vasylenko
>Submitter-Id: current-users >Originator: Alex Vasylenko >Organization: >Confidential: no >Synopsis: [patch] net/rsync: problems in client name lookup code >Severity: non-critical >Priority: low >Category: ports >Class: sw-bug

Unexplained error (code 255)--Followup

2002-12-04 Thread Alex Kelly
/ rsync -avz --progress -e /usr/local/bin/ssh server:/path/to/file . The SSH daemon can still be running Sun_SSH on the server-side...As long as I use OpenSSH from rsync (client-side) , everything is working. Alex -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync

Unexplained error (code 255)

2002-12-04 Thread Alex Kelly
--progress -e ssh host:/path/to/file . I am sure that the problem is Sun's implementation of SSH on Solaris9. Does anyone have a fix/workaround? Thanks, Alex -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.tuxedo.

secrets file, reverse resolution problems

2002-08-12 Thread Alex Kramarov
a hosts file with a couple of hundreds of records. Of course, i need dns resolution to work on the server, so i cannot use anything that will stop the server from doing lookups at all. Thank you. Alex. -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before

rsync --password-file on cygwin

2002-08-12 Thread Alex Kramarov
Hi. As the man page explains, and this message http://www.mail-archive.com/rsync@lists.samba.org/msg04069.html summarizes from the different man pages rsync will not use the password file if it is world readable. Now, if the rsync team was so kind to add the "strict mode" option for the cygwin

RE: auth failed on module testshare

2001-03-16 Thread Alex Peyser
oring rsycd.secrets Alex Peyser -Original Message- From: Oliver Pitterling [mailto:[EMAIL PROTECTED]] Sent: Friday, March 16, 2001 1:56 PM To: [EMAIL PROTECTED] Subject: auth failed on module testshare Hi there, I have a RH7 testsystem setup with rsync -daemon. Now, I am trying to login via a FreeBS

RE: Peer reset

2001-03-16 Thread Alex Peyser
on a command line flagged basis. I'll try to take a look through the code... Thanks, Alex Peyser -Original Message- From: Alex Peyser [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 15, 2001 7:24 PM To: '[EMAIL PROTECTED]' Subject: Peer reset I've got rsync 2.4.6

Peer reset

2001-03-15 Thread Alex Peyser
de. Anyone have any idea ? Thanks, Alex Peyser

Moving files with rsync

2001-03-06 Thread Alex C
I'm working on a project where I need to automate the transfer of files securely over a dialup connection. Files need to be moved both ways with wildcard pattern matching needed on both sides to find the right files. I've got this working with ssh and scp, but this requires many separate ssh invo

unexpected EOF in the read_timeout

2001-02-12 Thread Monereau, Alex
Just installed rsync using openssh on a RS/6000 running AIX 4.3.3. When the following command is entered: rsync --verbose --progress --stats --compress --rsh=/usr/local/bin/ssh --recursive --times --perms --links /tmp/* servername:/tmp I get the following error: ksh: rsync: not found unexpected