Re: man page

2016-07-28 Thread Tony Reed
gt; another. As a rule, getting rid of extra words makes > for clearer sentences. The sticking point is in what is > considered "extra". > > On Thu, 28 Jul 2016 14:15:51 -0400 > Tony Reed wrote: > > > Nah, this is the first time I've posted here in

Re: man page

2016-07-28 Thread Tony Reed
So I guess you're the bully of the community here. Strong opinions without > understanding, talk shit, and nothing useful to contribute. > > > 27.07.2016, 21:54, "Tony Reed" : > > I would rather the maintainers would spend their time improving the > application, and not wo

Re: man page

2016-07-27 Thread Tony Reed
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 > -- Tony Reed anthony.r...@gmail.com -- Please use r

RE: Dealing with an unreliable remote

2014-11-25 Thread Tony Abernethy
(until a better answer comes along) The killed rsync process should leave a temporary file .. If you rename the temporary to the real file name, rsync should continue from about where it left off. -Original Message- From: rsync-boun...@lists.samba.org [mailto:rsync-boun...@lists.samba.org]

RE: speedup is always 0.99

2013-02-22 Thread Tony Abernethy
Check the TIMESTAMPS on both source and target. (you probably want -av or such (instead of -vr) to include ...) -Original Message- From: rsync-boun...@lists.samba.org [mailto:rsync-boun...@lists.samba.org] On Behalf Of Grant Sent: Friday, February 22, 2013 3:24 PM To: rsync@lists.samba.or

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

2013-01-21 Thread Tony Abernethy
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 not normally refer to directories and may not span file systems. Assuming you do many bac

RE: rsync in daemon mode

2012-09-05 Thread Tony Abernethy
>From man rsyncd.conf max connections This parameter allows you to specify the maximum number of simultaneous connections you will allow. Any clients connecting when the maximum has been reached will receive a message telling them to t

RE: Rsyncing huge file, timeout on rsyncd

2012-08-02 Thread Tony Abernethy
--timeout=SECONDS set I/O timeout in seconds I think this timeout must be set big enough so that data actually gets transferred during the window. Having the target verify that nothing has changed yet seems to not qualify as resetting the timeout. Figure on enough time so that t

Patches for OS X.

2012-05-14 Thread Tony Reed
, btw, with the fileflags and crtimes and hfs-compression patches applied; I just wondered if the others that he mentioned are needed. http://www.bombich.com/rsync.html This is a very useful site that Mr. B. has maintained for several years -- thanks! -- Tony Reed anthony.r...@gmail.com -- Pleas

RE: disable interpretation of trailing slash

2012-01-07 Thread Tony Abernethy
If the directories are large enough, /path/* becomes too long. My own opinion is that that syntax is a very small price to pay for the flexibility and power. > -Original Message- > From: rsync-boun...@lists.samba.org [mailto:rsync- > boun...@lists.samba.org] On Behalf Of Kevin Korb > Sent

RE: restoring system

2011-04-24 Thread Tony Abernethy
Until you get responses from people who actually know what they are talking about. ?1 what is the file system on the usb drive. Fat32 cannot preserve owner/group or their permissions. ?2 preserving hard links end-to-end a3 rsync will use whatever targets are currently existing and their underlyin

RE: files not moved immediately to final destination from temp location after rsync returns with success

2011-04-20 Thread Tony Abernethy
OK, I'll bite. With all file system designs, there is a tradeoff between speed and safety. This tradeoff occurs at all levels where there might be something that buffers information. Writing into the middle of a structure can be incredibly slow if everything is done safely. Enter disk caches (Op

RE: weird result when using --link-dest

2011-03-29 Thread Tony Abernethy
Thanks for the detail. Try du -s /tmp/full_20110329_122743 /tmp/20110329_122743 du -s /tmp/20110329_122743 /tmp/full_20110329_122743 du -s /tmp/full_20110329_122743 du -s /tmp/20110329_122743 Technically, the directories have entries which point to the inodes which are in fact the files. When yo

RE: rsync errors

2010-09-21 Thread Tony Abernethy
Robert Holtzman wrote: > > Running Ubuntu 10.04.1 and rsync 3.0.7-1. Used rsync successfully for > over a year for backups. Recently there was a kernel upgrade to > 2.6.32-25. Don't know if that has any bearing. When I tried to run a > backup today rsync failed with the error message: > > sending

RE: strange behavier after finished backup

2010-08-20 Thread Tony Abernethy
balearenin...@gmx.net wrote: > > Hola, > > new to the list and maybe having problems with english I ask for a > friendly and a not too difficult answer. > > Using Windows 7 Pro, > D-link DNS-323 NAS-Storage > rSync: actual Version (just downloaded) > > Here is the stange behavier: > I use > rsy

RE: rsync --link-dest, --delete and hard-link count

2010-02-06 Thread Tony Abernethy
Grarpamp wrote: > Yes, hardlinks save data block duplication... yet on filesystems with > millions > of files / long pathnames, just the directory entries alone can take up > gigs > per image. Multiply that out by frequency and it can quickly add up. Huh? -- Please use reply-all for most replies

RE: Ignoring parts of stat(2)

2010-01-05 Thread Tony Abernethy
Matthias Schniedermeyer wrote: > On 05.01.2010 05:36, grarpamp wrote: > > > That option can be easily missed it's: --size-only > > > > That seems like at least part of what would be useful :) > > Certainly it covers the most common case of modtimes. > > > > However, it doesn't seem to work :( > >

RE: Option to create ancestors of destination, like "mkdir -p

2009-12-16 Thread Tony Abernethy
henri wrote: > >> > I agree with everyone else that it would be incredibly useful for > rsync to > >> > either adopt such behaviour by default (assuming always doing > 'mkdir -p' isn't > >> > harmful in any way), or have a tunable to enable it. > >> > >> I also agree the suggested behavior makes a

Re: rsync exclude

2009-12-16 Thread Tony
try: --exclude=.thumbnails/*** --exclude=tmp/*** On Dec 16, 2009, at 1:40 PM, Gary Montalbine wrote: > > > Tony Abernethy wrote: >> Gary Montalbine wrote: >>> I am trying to backup my /home directory. A friend helped me with this >>> script: >

RE: rsync exclude

2009-12-16 Thread Tony Abernethy
Gary Montalbine wrote: > I am trying to backup my /home directory. A friend helped me with this > script: > > #!/bin/sh > #backup friday > #"Spinning up backup drive and mounting it .." > cd / > mount /mnt/hd2 > #"Starting backup procedures" > rsync -avx --exclude="/home/gary/.thumbnails/" > --exc

RE: retransfer fail of large files with inplace and broken pipe

2009-12-13 Thread Tony Abernethy
Tom wrote: > to make things more clear > > 1.) > first transfer is done either a initial setup or with a usb hdd to get > sender and receiver in sync. > > 2.) > transfer does not stop because rsync had a timeout, it stops because > the dsl > line is broken (which i could see at dyndns) > > 3) >

RE: retransfer fail of large files with inplace and broken pipe

2009-12-12 Thread Tony Abernethy
tom raschel wrote: > Hi, > > i have to tranfer large files each 5-100 GB (mo-fri) over dsl line. > unfortunately dsl lines are often not very stable and i got a broken > pipe error. > (dsl lines are getting a new ip if they are broken or at least after a > reconnect every 24 hours) > > i had a sc

Re: OS X 10.6 (Snow Leopard) HFS+ File Compression

2009-11-01 Thread Tony
tion. Mike On Oct 27, 2009, at 11:08 PM, Matt McCutchen wrote: On Tue, 2009-10-27 at 23:38 -0400, Tony wrote: When rsync 3.0.6 copies files with HFS+ File Compression, the new extended attribute decmpfs is not preserved, and the UF_COMPRESSED flag is not set on the destination and the

Re: OS X 10.6 (Snow Leopard) HFS+ File Compression

2009-10-28 Thread Tony
g rsync compress the destination files would probably have to copy the relevant code from afsctool. This could be shared as a patch; I feel quite sure it would not be adopted in the main version of rsync. On Tue, 2009-10-27 at 23:38 -0400, Tony wrote: When rsync 3.0.6 copies files with HFS+ File

Re: OS X 10.6 (Snow Leopard) HFS+ File Compression

2009-10-28 Thread Tony
ell, the compression is handled entirely by the filesystem with no intervention from applications needed. -- Matt On Tue, 2009-10-27 at 19:31 -0400, Tony wrote: Are there any patches (or planned updates) to rsync v3.0.6 to handle the HFS+ File Compression that Apple introduced with Snow Leopard?

OS X 10.6 (Snow Leopard) HFS+ File Compression

2009-10-27 Thread Tony
Are there any patches (or planned updates) to rsync v3.0.6 to handle the HFS+ File Compression that Apple introduced with Snow Leopard? -- 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

RE: Rsync completed successfully, but files are not identical

2009-08-16 Thread Tony Abernethy
Mark, Oren wrote: > On 16.08.2009 11:38, Mark, Oren wrote: > > Hi All, > > > > I came into a strange issue running rsync on directory with > ~500,000 files. > > Some of the file, although with same time stamps and size > on source and destination, were different on the destination. > > The desti

RE: Handling spaces in filenames

2009-08-11 Thread Tony Abernethy
FILE NAME WITH SPACES -- this is 4 different space-separated parameters fed from the shell to the program "FILE NAME WITH SPACES" -- this is one parameter fed from the shell to the program FOLDER-NAME/ -- this is one parameter and means all the files in the directory FOLDER-NAME/ FOLDER-NAME -- th

RE: How to make big MySQL database more diffable/rsyncable? (aka rsyncing big files)

2009-07-14 Thread Tony Abernethy
Carlos Carvalho wrote: > > Ryan Malayter (malay...@gmail.com) wrote on 14 July 2009 17:00: > >On Mon, Jul 13, 2009 at 4:54 PM, Jamie > Lokier wrote: > >> > >> Remembering hashes doesn't make any difference to speed, if the > >> bottleneck is the sending side. > > > >Except that in the rsync

RE: How to make big MySQL database more diffable/rsyncable? (aka rsyncing big files)

2009-07-10 Thread Tony Abernethy
-Original Message- > From: rsync-bounces+tony=servacorp@lists.samba.org > [mailto:rsync-bounces+tony=servacorp@lists.samba.org] On > Behalf Of Krzysztof Nosek > Sent: Friday, July 10, 2009 7:48 AM > To: malay...@gmail.com; rsync@lists.samba.org > Subject: Re: How

RE: rsync Windows to opensolaris or linux

2009-07-08 Thread Tony Abernethy
going to anything that cannot handle users and groups (including SMB shares) Keep in mind that the easiest (only?) way to ensure consistency is to destroy all conflicting/inconsistent information. > -Original Message- > From: rsync-bounces+tony=servacorp@lists.sam

RE: How to get first level folder names with rsync commands?

2009-06-30 Thread Tony Abernethy
Something like ls -d NetBackup/* | wc should be informative. (assuming something unixy, of course -- cygwin stuff might work) > -Original Message- > From: rsync-bounces+tony=servacorp@lists.samba.org > [mailto:rsync-bounces+tony=servacorp@lists.samba.org] On &g

RE: what kind attrs are going to be transfered by rsync?

2009-06-04 Thread Tony Abernethy
of universal file system, but I'd bet on snake oil. If you can limit yourself to what is in common, you can make it look like it works. -Original Message- From: rsync-bounces+tony=servacorp@lists.samba.org [mailto:rsync-bounces+tony=servacorp@lists.samba.org] On Behalf Of Dani

RE: Difference between rsync -r S1 S2 T and cp -r S1 S2 T

2009-06-02 Thread Tony Abernethy
what cp will do. These differences increase in importance with distance between the source and destination. > -Original Message- > From: rsync-bounces+tony=servacorp@lists.samba.org > [mailto:rsync-bounces+tony=servacorp@lists.samba.org] On > Behalf Of Nobuko Three >

RE: rsync to SAMBA mount or NTFS tutorial?

2009-05-14 Thread Tony Abernethy
... ;-) Windows creates/updates the directory entry and then eventually (most of the time) fills in the actual file contents. This applies also to windows accessing SAMBA shares. (That's why I backup my SAMBA servers at 3:33 AM) Good luck. _ From: rsync-bounces+tony=serv

RE: Local disk rsync

2009-04-10 Thread Tony Abernethy
listserv.traf...@sloop.net wrote: > > I've done quite a bit of looking, but I haven't found an answer that > answers this question. > > Environment: > cygwin on Windows > rsync 3.0.4 > > I know that rsync isn't optimzed for speed on local copies - that's > clear in my testing. I'm attemting to s

RE: Backing up from fat32 to ext3

2008-11-28 Thread Tony Abernethy
Thomas Ebert wrote: > > Hi, > > I have a problem backing up my music collection, that is stored on a > fat32 formated hard drive to my ext3 formated backup drive > (ext3 to ext3 > works like a charm :) ). > > The problem is, that rsync always transfers all of the files and not > only the one

Re: rsync over stdin/stdout

2008-06-02 Thread Tony Mantler
On Mon, 2008-06-02 at 15:08 -0700, Matt McCutchen wrote: > On Mon, 2008-06-02 at 14:59 -0700, Tony Mantler wrote: > > What I need to do is turn this whole thing inside out, so that my > > program launches rsync rather than rsync launching my program. The > > reason for th

Re: rsync over stdin/stdout

2008-06-02 Thread Tony Mantler
On Mon, 2008-06-02 at 14:49 -0700, Matt McCutchen wrote: > On Mon, 2008-06-02 at 14:29 -0700, Tony Mantler wrote: > > On Mon, 2008-06-02 at 13:45 -0700, Matt McCutchen wrote: > > > On Mon, 2008-06-02 at 11:27 -0700, Tony Mantler wrote: > > > > Basically I need to se

Re: rsync over stdin/stdout

2008-06-02 Thread Tony Mantler
On Mon, 2008-06-02 at 13:45 -0700, Matt McCutchen wrote: > On Mon, 2008-06-02 at 11:27 -0700, Tony Mantler wrote: > > Basically I need to set up the socket beforehand and then hand it to > > rsync somehow. This seems to be possible on the 'remote' end, but I > > ha

rsync over stdin/stdout

2008-06-02 Thread Tony Mantler
So I've got this situation where I have two systems connected via a protocol that looks nothing at all like IP, and I'd like to be able to rsync between them. I can, though, open a perfectly normal looking socket through various magic and trickery. I've managed to get rsync to work by using the "

RE: Wrong uptodate

2008-03-02 Thread Tony Abernethy
Matt McCutchen wrote: > Sent: Sunday, March 02, 2008 3:14 PM > To: [EMAIL PROTECTED] > Cc: rsync@lists.samba.org > Subject: Re: Wrong uptodate > > On Sun, 2008-03-02 at 17:43 +0100, > [EMAIL PROTECTED] wrote: > > Rsync claims files to be uptudate, but they are not ... > > > > From the log: > >

RE: rsync-3.0.0pre10 and iconv

2008-02-27 Thread Tony Abernethy
Thankee! Thankee! Thankee! I am definitely switching to 3.0 or the next pre. (currently anything like that that actually gets to the other side is "gravy") (not all that bad since anything that actually matters is supposed to be in english not chinese ;-) This is on/to/through computers

RE: Rsync 2.6.9 does not skip any files based on modification time

2008-02-08 Thread Tony Abernethy
Paul Slootman wrote: > > I think you mean file owner? Of file times? > "cannot set file names" seems unlikely :-) File OWNER File GROUP and DOS/Windows complains Me, I let it complain --- much more complaining with cp than with rsync DOS and Windows have different ideas of what file attrib

RE: Rsync 2.6.9 does not skip any files based on modification time

2008-02-08 Thread Tony Abernethy
Are you preserving the times? There are many combinations. Me, I always use -a and then add stuff. Copying or Rsyncing windows stuff always seems to have stuff (essential to Linux/Unix) missing from the windows side. But nothing in that parameter list looks like it would preserve the modificati

RE: Windows Trouble with --link-dest set: "file not found" whenrsync tries to create hard link

2008-02-06 Thread Tony Abernethy
Thanks. Paul Johnson wrote: > > soft link is totally different from hard link. that junction on > directory is not the same meaning of hard link in Unix concept. > Windows can (maybe) come close to doing a soft link, directories/drives at least somewhat (but try following the l

RE: rsyncing files that might change

2007-10-31 Thread Tony Abernethy
Flames/Cluestick invited if I've got this wrong. I would expect: rsync checks blocks on source to see if they are the same. blocks which seemed to be the same (past tense) are not sent. blocks which seemed to be different will be sent with whatever the current content of the block happens to be. t

RE: Rsync and opened files

2007-09-26 Thread Tony Abernethy
The short answer is "It depends" Egoitz Aurrekoetxea wrote: > > Hello, > > I'm trying to determine if rsync is a sure method of backing > up servers (Linux and Windows) whose files are constantly > being accesed and are not able to be stoped they're services > for backing up purposes... I wou

RE: Data corruption check

2007-09-19 Thread Tony Abernethy
Fabian Cenedese wrote: > At 15:15 18.09.2007 -0400, Matt McCutchen wrote: > >On 9/18/07, Fabian Cenedese <[EMAIL PROTECTED]> wrote: > >> I was wondering what happens if a file that is regularly > synched but > >> seldom changes gets corrupted in the copy. > > > >Are you referring to rsync writing

RE: File bit synchronization?

2007-09-17 Thread Tony Abernethy
Stephen Zemlicka wrote: > > No idea why it's not. I usually use the -v -rlt -z --delete > options. You > could try the -c switch. I believe that will ignore the mod > time and size > and skip based on the checksum only. Though I would think > you need a switch > that does the opposite of th

RE: File changed during save....

2007-09-16 Thread Tony Abernethy
[EMAIL PROTECTED] wrote: > > > Note that back-to-back rsyncs make the window of opportunity much > > much smaller for things to change during transit. > > yes, but it still leaves room for corrupted transfers nobody > would probably know about !? > With UNIX file semantics, Loop until nothing i

RE: File changed during save....

2007-09-16 Thread Tony Abernethy
Matt McCutchen wrote: > > On 9/15/07, roland <[EMAIL PROTECTED]> wrote: > > what`s the rsync equivalent to this? > > how can i see which files changed while rsync was > transferring them ? > > Handling of concurrent changes to source files is one of rsync's > weaknesses. The rsync sender naivel

RE: Looking inside device files

2007-08-22 Thread Tony Abernethy
Andre Majorel wrote: > > On 2007-08-21 05:55 -0400, Matt McCutchen wrote: > > On 8/20/07, Andre Majorel <[EMAIL PROTECTED]> wrote: > > > Is there a way to make rsync look inside device files ? > The goal is > > > to copy the contents of a block device to a regular file > > > incrementally. > >

RE: Option --numeric-ids not the default?

2007-08-12 Thread Tony Abernethy
Darryl Dixon wrote: > > Hi All, > > I've browsed the history of the list, but can't seem to find > an answer to something that I find quite surprising - why > isn't --numeric-ids the default when rsync is told to > preserve permissions? It seems to me that the current > behaviour runs against

RE: Rewritten rsync man page

2007-08-07 Thread Tony Abernethy
Wayne Davison wrote: > > On Sat, Aug 04, 2007 at 07:26:19PM -0400, Matt McCutchen wrote: > > What do you all think so far? Am I going in the right direction? > > I'll hopefully have some time to check into it more later on, > but I did give your pages a look and they look pretty good. > One t

RE: Local disk to disk Rsync taking an hour longer than disk to remote

2007-07-16 Thread Tony Abernethy
>From an old old old-timer The first disks that IBM came out with were effectively the same speed as card readers and line printers. For unblocked records. Disks are NOT asynchronous. They spin at a very predictable Rate and timing are extremely different based on whether the Head is in the right

RE: Might hanging bugs remain in rsync 3.0.0?

2007-07-16 Thread Tony Abernethy
Matt McCutchen wrote: > > On 7/16/07, Wayne Davison <[EMAIL PROTECTED]> wrote: > > On Sun, Jul 15, 2007 at 11:09:57PM -0400, Matt McCutchen wrote: > > > Furthermore, from April 27 to July 10, about 2.5 months passed > > > without any hanging bugs being found; then, on July 11, > Warren Oates >

RE: Archive parameter doesn't preserve owner:group property!

2007-06-01 Thread Tony Abernethy
root, uid=root...I have tried --numeric-ids parameter...and nothing... So if you know another tool which do that... 2007/5/31, Tony Abernethy <[EMAIL PROTECTED]>: The uid and gid are numbers. These numbers **MIGHT** correspond to one or more names. As a convenience and courtesy, rsync at

RE: Archive parameter doesn't preserve owner:group property!

2007-05-31 Thread Tony Abernethy
The uid and gid are numbers. These numbers **MIGHT** correspond to one or more names. As a convenience and courtesy, rsync attempts to preserve names across the transfer Who ever is running the rsync daemon must have the rights to make the changes or there is nothing possible for rsync to do. To

RE: Problem with shared xls file. Could it be blamed on rsync?

2007-03-16 Thread Tony Abernethy
Before you trust this always-up-to-date, try it on some relatively large files. I suspect you get some nasty surprises. The basic problem is that Windows writes the directory entry and then sometime later writes the file contents. If you only rsync files that are say at least 10 minutes Old, you

RE: Problem with shared xls file. Could it be blamed on rsync?

2007-03-15 Thread Tony Abernethy
Microsoft tends to write its intentions into the directory and then eventually write the file contents to the file itself. Rsync depends on the directory contents not being premature. Shared files: (This assumes the Windows stuff is same as DOS.) The stuff for what portions of the file are locked

RE: owner and group

2007-02-08 Thread Tony Abernethy
-a gets several options you probably want (in particular -o and -g) (from man rsync) -a, --archive archive mode, equivalent to -rlptgoD -r, --recursive recurse into directories -l, --links copy symlinks as symlinks -p, --pe

RE: bug with --link-dest ?

2007-01-22 Thread Tony Abernethy
[EMAIL PROTECTED] wrote: > > Hi! > > I am running rsync 2.6.4 (on Debian sarge) and I am experiencing a > strange behaviour. > > I am trying to create an identical filetree on the same filesystems with > the single files being hardlinks to the source like this: > > rsync -vaH --progress --delet

rsnapshot

2007-01-17 Thread tony . chamberlain
y with weekly. I have to give weekly an interval of 4 (or 5). Sometimes there are 4 weeks in a month and sometimes 5 (by "weeks" I mean days that a backup is done. For instance, if I do daily on Sundays, some months have 4 Sundays and some 5. I would lose data there too). What do yo

RE: rsync over smb share

2007-01-10 Thread Tony Abernethy
The modify-window switch (actually 1 is supposed to be enough) is because DOS cannot store odd seconds and an even number and an odd number are never the same number. If I am understanding you right, the ssh should NOT be there. (flames invited if I'm wrong) You are rsyncing from a local source to

Re: --link-dest

2007-01-02 Thread tony . chamberlain
I hope this is responding to the several people who responded. Thanks for responding. You all had the same question, whether all the characteristics of the files are the same. To know for sure I have to wait till I get back to work tomorrow, Basically I did cp -r source dest this was to make an ex

--link-dest

2007-01-02 Thread tony . chamberlain
Has anyone else had problems using the --link-dest flag? I do what it says in the example rsync -a --delete --link-dest=/home/chamberl/oldbk/ /home/chamberl/source/ /home/chamberl/backup/ I make sure that /home/chamberl/source has some files exactly the same as in /home/chamberl/oldbk/ but ev

RE: rsync not updating files even with checksum flag

2006-11-06 Thread Tony Abernethy
Cheap shot that might be effective.  Something like this might work.   On the samba share, after the rsync has finished, run a script that touches any file that was last modified in the last few minutes. This marks files that should be retransmitted because they might have     their co

RE: Damaged source medium during rsync

2006-08-30 Thread tony
flames invited if I've got this wrong. UNLESS --inplace is specified, the error will be detected and the update aborted before the target file is touched. >- --- Original Message --- - >From: [EMAIL PROTECTED] >To: rsync@lists.samba.org >Sent: Wed, 30 Aug 2006 12:30:11 > >What hap

RE: Rsync over samba mounts (bad file descriptor)

2006-07-07 Thread Tony Abernethy
.samba.org; [EMAIL PROTECTED] > Subject: RE: Rsync over samba mounts (bad file descriptor) > > > Hi Tony > > Thanks for the speedy reply. > > Yes, the windows server is mounted on the BSD machine like you explained. > > I don't really mind to preserve date / time stamps

RE: Rsync over samba mounts (bad file descriptor)

2006-07-07 Thread Tony Abernethy
Some things fast off the top of my head (flames invited where I'm wrong;) I am assuming: Files live on the Window server. smb mounted onto the BSD server (It does what it can, but it's a few cards shy of a full deck) There is a buch of whatever in Windows ACLs, but there is enough UNIX permission

RE: no true incrementals with rsync?

2006-06-28 Thread Tony Abernethy
Tim H wrote: > > wayne, ok i wish it worked the way you say it did. > maybe im stupid and im missing something, this is what i did: > > (using rsync 2.5.7) OUCH! Dunno how old that is, but probably predates a lot of stuff related to playing games with links. (where you tend to want the very la

RE: Re: Can rsync monitor a file system?

2006-06-27 Thread tony
[EMAIL PROTECTED] wrote: > >[EMAIL PROTECTED] wrote... > >> How would you set a cron to run every 30 seconds? >Otherwise it could work >> for me. > >With a start every 30 seconds you're in the high >risk an an overrun. Possibly saved by max connections =1 or such. >Don't do cron, use a simple shel

RE: Can rsync monitor a file system?

2006-06-26 Thread Tony Abernethy
To monitor the file system, you have to have something down inside the file system. Unless you know what you are doing, you don't really want to mess around with any such. Any slipup "copy each others data" Now if this means "an update to one implies an update to the other" that should be doa

RE: no true incrementals with rsync?

2006-06-26 Thread Tony Abernethy
(Flames invited if I've got this wrong or misleading;) Traditional backup. (call this DOS-style backup) Base: (full backup) (and turn all the archive bits off) Incremental: copy files with archive bit on (and turn them off) Backup Files. Add something (suffix) to indicate backup copies. v

RE: some errors

2006-06-26 Thread Tony Abernethy
/sys  ( also /proc , probably others ) some things that looks like directories and files, do not make sense to copy to another computer. generally, these give some kind of access to running kernel-type things. I think some of these "files" are write-only  or would give information about som

RE: Rsync fails to rename on Windoze2003

2006-06-25 Thread Tony Abernethy
he DOS 8.3 filenames. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Corey Wirun - personalSent: Sunday, June 25, 2006 12:40 PMTo: rsync@lists.samba.orgSubject: Re: Rsync fails to rename on Windoze2003 Hi Tony,   I understood.   I though

RE: Rsync fails to rename on Windoze2003

2006-06-25 Thread Tony Abernethy
, June 25, 2006 12:40 PMTo: rsync@lists.samba.orgSubject: Re: Rsync fails to rename on Windoze2003 Hi Tony,   I understood.   I thought you were referring to possible confusion between two files on the source - like RICHED~2.cab and RICHED~1.cab getting copied to the target and the

RE: Rsync fails to rename on Windoze2003

2006-06-25 Thread Tony Abernethy
, June 25, 2006 10:16 AMTo: rsync@lists.samba.orgSubject: Re: Rsync fails to rename on Windoze2003 Thanks Tony,   The source only has one file:  RICHED~1.cab, so my guess is that the short name business isn't what is biting me here.   Corey. - Original Me

RE: Rsync fails to rename on Windoze2003

2006-06-25 Thread Tony Abernethy
This is mostly wild guesses (with luck you get some more knowledgeable answers) From what I have observed ... file of the form .RICHED~1.cab.IEKJmo  is an rsync temporary of file RICHED~1.CAB Trying to rename the temporary file to its permanent name, it ran into trouble on the name RICHED

RE: rsync and mysql with users connected

2006-06-23 Thread Tony Abernethy
With the usual caveats of "Your Mileage May Vary", this may give you an idea of how far you can push things and get away with it. In practice, I back up production MySQL databases when they are running. Not that big a deal.   Some notes on improving the odds (of getting away with it): One

RE: Windows rsync

2006-06-06 Thread Tony Abernethy
This is the kind of place where EVERY piece of punctuation matters. -delete    is very unlikely. You probably mean --delete  (two dashes before a "meaningful" parameter)     (-delete would be something wierd following a -d)   192.168.1.152    might be some kind of anonymous I would expect

RE: rsync shows poor throughput vs. scp

2006-05-24 Thread Tony Abernethy
Marty Mulligan  wrote:    Thanks for your suggestions.  I'll try to put together an rsync call with a more explicit set of options, although I was under the impressions that by having the "dont compress" option set in the conf file on the server, the -z option in the call from the host was

RE: rsync shows poor throughput vs. scp

2006-05-24 Thread Tony Abernethy
You should get some better answers, but a couple of points jump out at me. If the files are already compressed, "small" changes result in very different files, so the business of reading both the target and the source to find common stuff is kinda counterproductive.   Also the -z (compres

RE: rsync speed

2006-05-23 Thread Tony Abernethy
 Excuse the "humor", but it sounds like you have a virus. One of the virus that is called "anti". ( Case of the "cure" being worse than the disease? ;) -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Julian Pace RossSent: Tuesday, May 23, 20

RE: ignoring file times - but still examining content

2006-05-23 Thread Tony Abernethy
Assuming the problem is Windows and time zones and daylight savings etc. man rsync --modify-window=NUM compare mod times with reduced accuracy. Windows still uses the old DOS method of storing times, which can't put the value of the seconds into a 32-bin number, so can only represent even seco

RE: Issue with hard links, please help!

2006-05-14 Thread Tony Abernethy
100Mbps is about 10MBps so 4GB would take about 400 seconds or a bit under 7 minutes. BOTH sides will have to read the 4GB file and compare results. Comparing results will be almost instantaneous over 100Mbps LAN. Getting the results to compare will depend on disk speed and CPU speed. It doesn't ha

RE: Issue with hard links, please help!

2006-05-14 Thread Tony Abernethy
nt: Sunday, May 14, 2006 6:56 PM > To: Tony Abernethy; rsync@lists.samba.org > Subject: RE: Issue with hard links, please help! > > > > > Number of files: 50285 > > > Number of files transferred: 38 > > > Total file size: 16193254538 bytes > > > T

RE: Issue with hard links, please help!

2006-05-14 Thread Tony Abernethy
Max Kipness wrote: > > > You could of course (right after an rsync run) do a > > "cd newdir; find . -type f -links 1 -print" and then randomly check a > > couple and compare all their attributes such as mtime, permissions to > > the previous dir. (I still recommend using the --link-dest thing over

RE: random file corruption on NTFS

2006-05-11 Thread Tony Abernethy
s.samba.orgSubject: Re: random file corruption on NTFSHi Tony,the volume was previously a FAT32 before it was reformatted to NTFS.  I've wonderedabout the drive being dodgy, is it that FAT32 is more leanient in terms of file errors?thanks.Darrin. On 5/12/06, Ton

RE: random file corruption on NTFS

2006-05-11 Thread Tony Abernethy
Wild guess, but that sounds a lot like a disk drive going bad. An error message like The file or directory is corrupted and unreadable. There is essentially no way that an application (including rsync) can cause that kind of thing. You probably can cause that by messing with the controller

RE: rsync ok with open files?

2006-05-10 Thread Tony Abernethy
Fundamental difference between unix and windows. Windows locks against simultaneous whatever. Unix assumes you know what you're doing. Unix allows deleting a file while someone is writing to it. Also, you will likely need to stop BOTH outlooks. There's usually one running that you do not see. > -

RE: Rsync via ssh hangs on same file repeatedly

2006-05-09 Thread Tony Abernethy
Flames invitied if I'm wrong, but I think you're looking at the last file successfully transferred as opposed to the first file unsuccessfully transferred. I think I saw a /var in there You get something ungodly long trying to rsync the file that is logging the rsync. something like rsync -av --ex

RE: "file has vanished" Chinese characters...

2006-05-04 Thread Tony
This is entirely guesswork, but maybe, just maybe >From something unixy, do an smb mount of the Windows share (Cygwin does the incredible, but it's still not unix) There is probably some kind of option so that you see the filenames and do the rsync from the unixy side. I think I ran into it do

RE: Filename too long

2006-04-27 Thread Tony
Me, I'd move to a current version. Source, ./configure ; make; make install seems to work fine for me on RedHat 6.2, 7.1 assorted Fedora Core. Workaround is probably to tar the file and rsync the tar. (If slow connection, tar both ends) If it's one file of many, easiest whould be to upgrade. > ---

RE: how safe is it to rsync databases?

2006-04-14 Thread Tony
Caveat: Your Mileage may vary etc. etc. Daily and more often than daily.   If you make just one backup, I'd have to advise against it. If you make several (and can stand living "dangerously"), it can be very effective.   Basic strategy for running a backup from a live server 1) mysqladmin

RE: transfer files only once

2006-03-21 Thread Tony
Hermann Gausterer wrote: > > hi > > i have a question. is there an easy way to remember transfered > files to a specific destination host. > > little example: > 1) host A: with files a, b, c > 2) rsync-transfer them to host B > 3) add a new file d to host A > 4) delete file c from host B > 5) a

RE: Question about rsync and BIG mirror

2006-03-03 Thread Tony
Flames invited if I'm wrong on any of this, but: Some (long overdue) backups indicate that network speed should be much more important than cpu speed. Your results will depend heavily on your exact mix and I cannot think of any reasonable way to quantify it. That said, this may help give you a clu

RE: rsync to completely mirror an entire machine

2006-02-04 Thread Tony
Christer Edwards wrote: > > I do apologize if this has been discussed previously. Looking thru > some of the archives I wasn't able to clearly answer my question, only > find bits & pieces. > > Situation: > I have a web & mail server (production) and a backup machine. The two > machines are nea

RE: Re: ftp:// error

2005-12-02 Thread tony
[EMAIL PROTECTED] wrote: > >On Fri, 2005-12-02 at 17:41 +, Manuel >López-Ibáñez wrote: >> I am sorry, the rsync algorithm needs to execute >rsync on the server. >> Since ftp does not allow executing remote >programs (as ssh does), even >> if there exists a rsync executable installed in >the s

  1   2   >