X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:in-reply-to:references:from:date :message-id:subject:to:content-type:content-transfer-encoding; q=dns; s=default; b=liweWjU/fsx20a3PRm/NdYzOBII/KQwL1pbac0IKFxy 2mkTa7jP61omcLM+906Hgvr8Rklj9Et2nvqYN2fWFTVxiyHKLlCLmmCIVoQ6ZbZ2 DXFduy8wXwjDDY4Ovg1VbF3xfZ7Y44o+hlzmN4eVHPDfEyyGsqHQXMXkIYV6Q0NQ = DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:in-reply-to:references:from:date :message-id:subject:to:content-type:content-transfer-encoding; s=default; bh=J7qFCZlhZY2eczUmJ8mSjbYfI9E=; b=waHx0W5kkqVPp81GY oA7tPhkalygjGU8xIcZHOe3W3/rQPkX80xtGnBKbHRHf7y0K1j8uS6nrjCpB3dTF d9ckM0484JZR107va50LVLwL3DNmljTzxYfrKocfzsAr3ZOZAZshO7EhB9mtYqfH WN6JO5auqQADR0ZtgQUWXxAoOw= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.5 required=5.0 tests=BAYES_20,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM autolearn=no version=3.3.2 spammy=wayne, Hx-languages-length:1362, D*mach.com.au, sk:shaun AT m X-HELO: homiemail-a55.g.dreamhost.com X-Gm-Message-State: AKaTC011yA+DmyDv5zhETayp/TK22+nvpo6EVe/yMtbtjhQdIaOnrxnP3llasBd+TrufJ/iw34qrJtmEvh0NCg== X-Received: by 10.31.74.65 with SMTP id x62mr6825570vka.146.1480360981466; Mon, 28 Nov 2016 11:23:01 -0800 (PST) MIME-Version: 1.0 In-Reply-To: References: From: Wayne Davison Date: Mon, 28 Nov 2016 11:22:41 -0800 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: Cygwin: 2.6.0, rsync 3.1.2, "file has vanished" To: cygwin Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id uASJNbIq015556 On Sun, Nov 27, 2016 at 11:07 PM, Shaun Maher wrote: > file has vanished: "BackUps(old)/Backup Pre-Rolled Payroll 2015"16-MBTT2016.zip" (in VSSG) Those file-has-vanished errors shouldn't be affected by the --iconv option because that is a sender-side error, and the rsync sender directly reads file names via readdir() and then tries to stat() those names (it is the receiving side that might get converted names via the --iconv translations). So, the question is: why is rsync getting a filename via readdir that it can't stat? Can you try out this C program: http://opencoder.net/list-and-stat.c You compile it with gcc ("gcc -o list-and-stat list-and-stat.c") and then run it with a directory name where one of your problem files exists. It will output things like this: 74 65 73 74 e2 b8 b1 66 69 6c 65 | test⸱file If you see a "FAILED to stat" message, send the byte sequence for that file to the list and mention what filesystem type it is mounted on. If it doesn't generate an error, what rsync version are you using? Is it the cygwin version or something else? The error indicates that an rsync daemon module is involved (the "in VSSG" bit), so you might try a manual rsync copy of a problem file and see if the issue is the daemon context or rsync in general. ..wayne.. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple