From owner-freebsd-isp@FreeBSD.ORG Wed Jul 30 14:46:09 2003 Return-Path: Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F211537B401 for ; Wed, 30 Jul 2003 14:46:08 -0700 (PDT) Received: from web1.nexusinternetsolutions.net (web1.nexusinternetsolutions.net [206.47.131.12]) by mx1.FreeBSD.org (Postfix) with SMTP id CA41643F85 for ; Wed, 30 Jul 2003 14:46:07 -0700 (PDT) (envelope-from dave@hawk-systems.com) Received: (qmail 11617 invoked from network); 30 Jul 2003 21:46:04 -0000 Received: from unknown (HELO ws1) (65.49.236.97) by web1.nexusinternetsolutions.net with SMTP; 30 Jul 2003 21:46:04 -0000 From: "Dave [Hawk-Systems]" To: Date: Wed, 30 Jul 2003 17:46:03 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Importance: Normal Subject: dump directly to remote HDD over ssh X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2003 21:46:09 -0000 Number of smaller servers, current doing dumps to secondary drives each night. Extra copies are then rsync'd to a big storage server for long term archive <-- currently --> dump -0u -a -f /backup/usr /usr rsync -v /backup/usr \ destination.server:/backups/server1/usr.0.`date +%Y%m%d`.dump What we want to do is eliminate the need for the secondary drive if need be, and do the dump directly over to the big storage server where we can then archive all the "images" from the one drive. Am lookiung at something like this, can someone sanity check the syntax for me please? <--untested code --> dump -0 -u -f- /usr | ssh server1@destination.server \ cat - > /backups/server1/usr.0.`date +%Y%m%d`.dump thanks Dave