From owner-freebsd-questions@FreeBSD.ORG Wed Nov 2 15:26:34 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FF3F16A41F for ; Wed, 2 Nov 2005 15:26:34 +0000 (GMT) (envelope-from youshi10@u.washington.edu) Received: from mxout7.cac.washington.edu (mxout7.cac.washington.edu [140.142.32.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2D2143D66 for ; Wed, 2 Nov 2005 15:26:30 +0000 (GMT) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) by mxout7.cac.washington.edu (8.13.5+UW05.10/8.13.5+UW05.09) with ESMTP id jA2FQUAB024687 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 2 Nov 2005 07:26:30 -0800 X-Auth-Received: from [192.168.0.20] (c-24-18-246-211.hsd1.wa.comcast.net [24.18.246.211]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.5+UW05.10/8.13.5+UW05.09) with ESMTP id jA2FQTO1003339 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NOT) for ; Wed, 2 Nov 2005 07:26:30 -0800 Mime-Version: 1.0 (Apple Message framework v746.2) In-Reply-To: References: Message-Id: <73D76351-1187-430A-A309-60AE2850BDEB@u.washington.edu> From: Garrett Cooper Date: Wed, 2 Nov 2005 07:26:28 -0800 To: FreeBSD Questions X-Mailer: Apple Mail (2.746.2) X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='HTML_70_90 0.1, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __CTYPE_MULTIPART_ALT 0, __HAS_MSGID 0, __HAS_X_MAILER 0, __MIME_HTML 0, __MIME_VERSION 0, __SANE_MSGID 0, __TAG_EXISTS_HTML 0' Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: tarring over ssh question - pulling from the source to tarfiles 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: Wed, 02 Nov 2005 15:26:34 -0000 On Nov 1, 2005, at 11:20 PM, user wrote: > > I do that like this: > > tar cf - /files | ssh user@10.0.0.10 "cat > > /usr/home/user/file_data2.tar" > > or if I want to split it into multiple files: > > tar cf - /files | ssh user@10.0.0.10 "split - -b 1024m > /usr/home/user/file_data2.tar" > > This works just fine. > > ----- > Have you tried using scp as opposed to SSH? I'm not sure if the piping of output would work correctly, but it's a thought. -Garrett