From owner-freebsd-questions@FreeBSD.ORG Tue Nov 15 13:59:10 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 88B2B16A41F for ; Tue, 15 Nov 2005 13:59:10 +0000 (GMT) (envelope-from sequethin@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B84943D45 for ; Tue, 15 Nov 2005 13:59:09 +0000 (GMT) (envelope-from sequethin@gmail.com) Received: by wproxy.gmail.com with SMTP id i5so932654wra for ; Tue, 15 Nov 2005 05:59:09 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:subject:message-id:mail-followup-to:references:mime-version:content-type:content-disposition:in-reply-to:sent-from-pda:user-agent; b=ilnoQMKLfHOzmmq2Lp8sMIdrmPdApNaO44EdeGZRPTmIa9f4yArNyynKFAwDugbzSshupQn05wz394qtQ9hTPauX2PimM+Gb+gRwl1Xd4iQfMgqLaKss+7iYfH0btoRDIHE+iJeZuq7sFhjDzJ5YNRb5XMtcBlBooGuJeFYuahU= Received: by 10.65.233.8 with SMTP id k8mr7159533qbr; Tue, 15 Nov 2005 05:52:50 -0800 (PST) Received: from localhost ( [204.107.76.229]) by mx.gmail.com with ESMTP id e13sm3570290qbe.2005.11.15.05.52.49; Tue, 15 Nov 2005 05:52:50 -0800 (PST) Date: Tue, 15 Nov 2005 08:52:45 -0500 From: Mike Hernandez To: freebsd-questions@freebsd.org Message-ID: <20051115135244.GA23813@dementia.beyondnormal.net> Mail-Followup-To: freebsd-questions@freebsd.org 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> Sent-From-PDA: Yes User-Agent: Mutt/1.5.9i 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 13:59:10 -0000 On Tue, Nov 15, 2005 at 05:47:55AM -0800, Joshua Lewis wrote: > 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. Thanks ahead of time for > any help. You said the easiest way in your subject, just use scp :) You could also install samba on the bsd box and use mac os x's smb support, or you can set up nfs. I suggest scp, it's the easiest since you already have an ssh server running. quick example: scp local_file.txt user@remotehost: Good luck :) Mike H