From owner-freebsd-questions@FreeBSD.ORG Fri Mar 16 17:00:54 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 295D916A401 for ; Fri, 16 Mar 2007 17:00:54 +0000 (UTC) (envelope-from jeremy.gransden@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.250]) by mx1.freebsd.org (Postfix) with ESMTP id DA37D13C459 for ; Fri, 16 Mar 2007 17:00:53 +0000 (UTC) (envelope-from jeremy.gransden@gmail.com) Received: by an-out-0708.google.com with SMTP id c24so628007ana for ; Fri, 16 Mar 2007 10:00:53 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=tbmt8s0Q3aQtfwlZuFbypsZR2yOZuvGm1+kzCAXDpHrCUuVjr5JPJjAHfJaq1Gw/3x8V5oweBu8H5M4TFjDD0wwJtT3mp/1qRpuLqs7YMMpVgk8Qh+KpyBXlmWBmL2Hxp6FaH5QfuxfN5mNPWXNaq3wi7NdLTNcWOtJ73Iq/lbs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=P+gu0kMJf4LcNHUvvPyb0ZX9iqS2WdwmvLGlTWxQS0jC0/UaVOtBF0cfm22qi9Y1Und1rVfvSO8lGkD/kFa3fnOtnoDeo9uYKRWu3xBgdl+P782SjqaG5vEUxcn2hcrgQ4VCrMo3hlTgipZwAQ846hQC5SmIKaxO9q/6NmAxnBk= Received: by 10.100.139.9 with SMTP id m9mr1715171and.1174064453252; Fri, 16 Mar 2007 10:00:53 -0700 (PDT) Received: by 10.100.142.13 with HTTP; Fri, 16 Mar 2007 10:00:53 -0700 (PDT) Message-ID: <87f7f4170703161000le63a6c2i5e7d671bdb8beb5d@mail.gmail.com> Date: Fri, 16 Mar 2007 13:00:53 -0400 From: "Jeremy Gransden" To: "Chris Maness" In-Reply-To: <45FAC664.2040606@chrismaness.com> MIME-Version: 1.0 References: <45FAC664.2040606@chrismaness.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Rsync w/ Windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Mar 2007 17:00:54 -0000 On 3/16/07, Chris Maness wrote: > > I need to sync a directory with my freebsd box. In linux/bsd I use the > command rsync -vaur chris@foo.com:/home/chris/beer /home/chris/beer and > this works perfectly for me. However, using the cwrsync package in > windows with this syntax does not work. > > Pleas help! > Thanks... > > -- > Chris Maness > (909) 223-9179 > http://www.chrismaness.com > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to freebsd-questions-unsubscribe@freebsd.org You have to tell windows the full path including drive letter. This is what i use to sync Xp laptop to freebsd server: rsync.exe -r /cygdrive/c/z-test/ jeremy@xxx.xxx.xxx.xxx:/home/jeremy/backup/ thanks, jeremy