From owner-freebsd-questions@FreeBSD.ORG Thu May 11 02:27:28 2006 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 A890616A40E for ; Thu, 11 May 2006 02:27:28 +0000 (UTC) (envelope-from on@cs.ait.ac.th) Received: from mail.cs.ait.ac.th (mail.cs.ait.ac.th [192.41.170.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11AF143D53 for ; Thu, 11 May 2006 02:27:19 +0000 (GMT) (envelope-from on@cs.ait.ac.th) Received: from banyan.cs.ait.ac.th (banyan.cs.ait.ac.th [192.41.170.5]) by mail.cs.ait.ac.th (8.13.1/8.12.11) with ESMTP id k4B2RIDI045945 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 11 May 2006 09:27:18 +0700 (ICT) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.13.3/8.12.11) id k4B2RItS085960; Thu, 11 May 2006 09:27:18 +0700 (ICT) Date: Thu, 11 May 2006 09:27:18 +0700 (ICT) Message-Id: <200605110227.k4B2RItS085960@banyan.cs.ait.ac.th> From: Olivier Nicole To: don@lizardhill.com In-reply-to: <005a01c67498$a54a2a70$0300020a@mickey> (don@lizardhill.com) References: <005a01c67498$a54a2a70$0300020a@mickey> X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Cc: freebsd-questions@freebsd.org Subject: Re: Copying a file system w/ tar - symbolic links not copied right. 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: Thu, 11 May 2006 02:27:34 -0000 > I'm trying to move a file system from one disk to another, and when I do > this: I think that the way to go is: tar cf - /source/* | ( cd /destination && tar xfvBp - ) Note the Bp at the end of the extract tar. olivier