From owner-freebsd-questions@FreeBSD.ORG Tue Nov 15 14:19:35 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 4D11716A41F for ; Tue, 15 Nov 2005 14:19:35 +0000 (GMT) (envelope-from m@MHoerich.de) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 2FA8443D9E for ; Tue, 15 Nov 2005 14:19:08 +0000 (GMT) (envelope-from m@MHoerich.de) Received: (qmail invoked by alias); 15 Nov 2005 14:19:07 -0000 Received: from p548B7582.dip.t-dialin.net (EHLO localhost) [84.139.117.130] by mail.gmx.net (mp004) with SMTP; 15 Nov 2005 15:19:07 +0100 X-Authenticated: #5114400 Date: Tue, 15 Nov 2005 15:19:06 +0100 From: Mario Hoerich To: Joshua Lewis Message-ID: <20051115141905.GA27364@Pandora.MHoerich.de> References: <006301c5e9eb$2ea4b620$340a10ac@buzz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <006301c5e9eb$2ea4b620$340a10ac@buzz> User-Agent: Mutt/1.4.2.1i X-Y-GMX-Trusted: 0 Cc: freebsd-questions@freebsd.org Subject: Re: Secure File Copy 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: Tue, 15 Nov 2005 14:19:35 -0000 # Joshua Lewis: > I have a FreeBSD 5.4 system and I have no way to back up the data. I don't > have a burner and I can't get one anytime soon. I do however have a burner > on my wifes G4 laptop. I have enabled SSH on the FreeBSD system and I can > SSH into the box from the Mac, However I do not know how to copy the files I > need to back up from the FreeBSD system to the Mac. With scp. From your mac type: $ scp -r user@BSD.machine:/remote/path /local/path which copies the directory /remote/path on the BSD machine to /local/path on the mac. There are also graphical frontends for this, e.g. Fugu . If you need to do this frequently (and your wife doesn't mind keeping your files on her book) it's probably better to use rsync, i.e. $ rsync -vatz --delete user@BSD.machine:/remote/path /local/path (see the man page for details). HTH, Mario