X-Recipient: archive-cygwin AT delorie DOT com X-Original-To: cygwin AT cygwin DOT com Delivered-To: cygwin AT cygwin DOT com DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org AF0FA386549C Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=propfinancing.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=propfinancing.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=propfinancing.com; s=google; h=from:mime-version:thread-index:date:message-id:subject:to; bh=R/1bg4FcbdNwIwwhfXKiMlC57TdQPxrGwz80Kw2kQBc=; b=YD2+lMfoIg2+qDX/0qTC+HAUj+vBzkjcGk3KWpmw8mFuP3k1BLc+eq+yvErppKxAUq EGdm7n1q2cwDFmCqfLPUd+cbckXVvgyS638Snylmd+xLfV0IVHCI2jn8ZPKd1GekIHVW cpiN87xswrOKPzg0mTRDn4nQ/47oVQyVQWdiRzNuXGjJE9SWFbPqJ1jVaWW8tG3OG1pp FAC6quaERnVQLubBFEcsgw6jYvNyIliwJ4YU3ZbVwqNnW9IUgHOkde6/yHM4pmM0UAe+ rOigqgPBs/MVnHYNjLZXdyDAoB7qOw/ilRgmdfCK2eIkI6N2QH6Voz48J3PJcqyFSNCJ d+LA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:mime-version:thread-index:date:message-id :subject:to; bh=R/1bg4FcbdNwIwwhfXKiMlC57TdQPxrGwz80Kw2kQBc=; b=VHHp6VLqJftVTuErpZl14WrCl/2Vtw34We7fpI4dSNhcW46m6xvBwwKP2MNHvw/Lut lZJZy0gmS62AjIVm/gl7KqGVW/M6i4y3hwUZcvBxX9L5ZgMHgNdBGVvXMubcVRprFPhA yzxLJbWVDzgtEQ2ENbsu3O3STH7QEesnby1zLtt1W0OZD4wYw0zZmkXZMXQeX3WVHdm0 h5mFxZpAsl2ktH1izXAjOs1vOgXohzNrFAmRDe3yanVKwt7grw5AQ/mQ3iEMCy0dUimb zWgh+kEo6Bg7boN5KXM9A2lmx48ePXguBuKXvztowld3q3pkIJi3RJd9Y64f7jZBI7S3 34gw== X-Gm-Message-State: AOAM533JYTtO1lBbbRh5Oz67JQsnfsLrrS2P1DvUVa5HIr6RnXbk7Ak+ gYNVfEVcBscJn8TbfBRBzXt8mQNDTPSmbhHYWytKp8ILYLM= X-Google-Smtp-Source: ABdhPJzTBtTAoz/kB9u/viMsQYQe553130sAN2xAvoA7V0YapNajQ6YNQqtXIdS+4/zva4Ud9cXl07IytX7ZOjXDIB4= X-Received: by 2002:a02:ceb2:0:b0:314:f9b9:d420 with SMTP id z18-20020a02ceb2000000b00314f9b9d420mr1866378jaq.177.1648099334650; Wed, 23 Mar 2022 22:22:14 -0700 (PDT) From: Neil Aggarwal MIME-Version: 1.0 X-Mailer: Microsoft Outlook 14.0 Thread-Index: Adg/PalnBqSPORBDRYGuwFjV+S9b4g== Date: Thu, 24 Mar 2022 00:22:12 -0500 Message-ID: <0d373fe499f6e363740f3d3fa1dfd440@mail.gmail.com> Subject: rsync gives me error 12 To: cygwin AT cygwin DOT com X-Spam-Status: No, score=1.6 required=5.0 tests=BAYES_50, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, HTML_MESSAGE, KAM_NUMSUBJECT, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.4 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: cygwin AT cygwin DOT com X-Mailman-Version: 2.1.29 List-Id: General Cygwin discussions and problem reports List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Sender: "Cygwin" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by delorie.com id 22O5MssD010427 Hello: I am trying to use rsync to pull all backups from a linux server to my local Windows machine. I tried this rsync command: $ rsync --debug=ALL -e ssh root AT marketing DOT propfinancing DOT com:/var/www/svnDumps /cygdrive/c/Tmp Here is the output: opening connection using: ssh -l root marketing.propfinancing.com rsync --server --sender -e.LsfxCIvu . /var/www/svnDumps (10 args) rsync: connection unexpectedly closed (0 bytes received so far) [sender] rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.3] rsync: connection unexpectedly closed (0 bytes received so far) [Receiver] rsync error: error in rsync protocol data stream (code 12) at io.c(228) [Receiver=3.2.4dev] [Receiver] _exit_cleanup(code=12, file=io.c, line=228): about to call exit(12) From what I can find online, code 12 is insufficient disk space, missing remote rsync, or a connection error. I don’t think any of those are the case here and the debug output is not helping me. Any ideas what could be happening? Thank you, Neil -- Neil Aggarwal, (972) 834-1565, http://www.propfinancing.com We offer 30 year loans on single family houses! -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple