From owner-freebsd-hackers@FreeBSD.ORG Sun Oct 31 04:12:57 2010 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 75E81106564A for ; Sun, 31 Oct 2010 04:12:57 +0000 (UTC) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (agora.rdrop.com [IPv6:2607:f678:1010::34]) by mx1.freebsd.org (Postfix) with ESMTP id 536F68FC12 for ; Sun, 31 Oct 2010 04:12:57 +0000 (UTC) Received: from agora.rdrop.com (66@localhost [127.0.0.1]) by agora.rdrop.com (8.13.1/8.12.7) with ESMTP id o9V4CuN8097434 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 30 Oct 2010 21:12:56 -0700 (PDT) (envelope-from perryh@pluto.rain.com) Received: (from uucp@localhost) by agora.rdrop.com (8.13.1/8.12.9/Submit) with UUCP id o9V4CuZY097433; Sat, 30 Oct 2010 21:12:56 -0700 (PDT) Received: from fbsd61 by pluto.rain.com (4.1/SMI-4.1-pluto-M2060407) id AA24856; Sat, 30 Oct 10 21:06:00 PDT Date: Sat, 30 Oct 2010 21:05:36 -0700 From: perryh@pluto.rain.com To: cronfy@gmail.com Message-Id: <4ccceb10.4n2iAQ/sY/YrDSI2%perryh@pluto.rain.com> References: In-Reply-To: User-Agent: nail 11.25 7/29/05 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-hackers@freebsd.org Subject: Re: Slow disk access while rsync - what should I tune? X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Oct 2010 04:12:57 -0000 cronfy wrote: > And also, maybe there are other ways to create incremental backups > instead of using rsync/hardlinks? Yes. Use dump(8) -- that's what it's for. It reads the inodes, directories, and files directly from the disk device, thereby eliminating stat() overhead entirely. Any replication mechanism -- rsync, tar, even dd -- can be used as a backup mechanism, but dump was specifically designed for the purpose.