From owner-freebsd-questions@FreeBSD.ORG Fri Jul 11 12:36:44 2003 Return-Path: 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 2576937B401 for ; Fri, 11 Jul 2003 12:36:44 -0700 (PDT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 374F943F75 for ; Fri, 11 Jul 2003 12:36:43 -0700 (PDT) (envelope-from freebsd-questions-local@be-well.no-ip.com) Received: from be-well.ilk.org (be-well.no-ip.com[66.30.200.37]) by comcast.net (sccrmhc13) with ESMTP id <20030711193642016000sk85e>; Fri, 11 Jul 2003 19:36:42 +0000 Received: from be-well.ilk.org (lowellg.ne.client2.attbi.com [66.30.200.37] (may be forged)) by be-well.ilk.org (8.12.9/8.12.9) with ESMTP id h6BJaalA064633; Fri, 11 Jul 2003 15:36:36 -0400 (EDT) (envelope-from freebsd-questions-local@be-well.no-ip.com) Received: (from lowell@localhost) by be-well.ilk.org (8.12.9/8.12.6/Submit) id h6BJaZ3l064630; Fri, 11 Jul 2003 15:36:35 -0400 (EDT) X-Authentication-Warning: be-well.ilk.org: lowell set sender to freebsd-questions-local@be-well.ilk.org using -f Sender: lowell@be-well.no-ip.com To: freebsd-questions@freebsd.org References: <20030710210010.GD27617@teddy.fas.com> <5.2.0.9.0.20030711085656.00a2e410@127.0.0.1> From: Lowell Gilbert Date: 11 Jul 2003 15:36:35 -0400 In-Reply-To: <5.2.0.9.0.20030711085656.00a2e410@127.0.0.1> Message-ID: <447k6oj1oc.fsf@be-well.ilk.org> Lines: 17 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: How do you transfer a file. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Jul 2003 19:36:44 -0000 Roger Merritt writes: > This is helpful. I have a similar, but somewhat more complex > problem. I want to backup the entire /usr/home directory to another > machine on the network. FTP has not been disabled (yet) and I have > NcFTP installed. ssh is also set up between the two machines, so scp > is available. The first machine has very little disk space available, > so I don't think I can tar the directory tree on the native > machine. I've also installed the rsync port. I don't have a time > problem, I could leave the job running overnight. > > Any suggestions or recommendations would be welcome. Doesn't sound very complex to me. Something like tar -cf - /path/to/back/up |ssh other-host 'cat > new.tar' will do it.