From owner-freebsd-questions@FreeBSD.ORG Fri Aug 10 23:12:09 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 38F3E16A41A for ; Fri, 10 Aug 2007 23:12:09 +0000 (UTC) (envelope-from lenzi.sergio@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.228]) by mx1.freebsd.org (Postfix) with ESMTP id E3A8913C4D0 for ; Fri, 10 Aug 2007 23:12:08 +0000 (UTC) (envelope-from lenzi.sergio@gmail.com) Received: by wx-out-0506.google.com with SMTP id i29so610187wxd for ; Fri, 10 Aug 2007 16:12:08 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:subject:from:to:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer; b=Ectb12JMmzvy9Q5JAPER+TrKTjG9gNZVdRUCQNMQwri8zUva9OhS9g/4jJ/vg4XY/FhkaF6oESEpu0/1Yzlv5b+YA+g2sRVFfZE1ErKuMc7ftFuR2jAO56SdPuwyj/eGaU7gKUbrIvyU4iEHenQ38Bdr9DtnElGt/yqs2ijDit0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:subject:from:to:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer; b=svOZSgfd2ut2H3YKmtX80iKJUcIbJIa90RH+sJ2f9m9v6cjBw6aEb4quGBfajvJ9E6P/1ypPC7aFjiqjPjoUeg4X/BMaQ64Ce0k6OuzAo0Allb1GwucU8KTocWSAzmTRneu74JZ0lsI6ZqzoywDVuxq03Pa/NbwmGaroHpS+acE= Received: by 10.70.49.1 with SMTP id w1mr5323403wxw.1186785987063; Fri, 10 Aug 2007 15:46:27 -0700 (PDT) Received: from ?192.168.32.240? ( [201.47.3.162]) by mx.google.com with ESMTPS id i20sm6296689wxd.2007.08.10.15.46.24 (version=SSLv3 cipher=RC4-MD5); Fri, 10 Aug 2007 15:46:26 -0700 (PDT) From: Sergio Lenzi To: doug@safeport.com, questions In-Reply-To: <20070810133045.B99453@fledge.watson.org> References: <20070810133045.B99453@fledge.watson.org> Date: Fri, 10 Aug 2007 19:46:20 -0300 Message-Id: <1186785980.71492.6.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.10.3 FreeBSD GNOME Team Port Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Can not make a 6.2 ISO image 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: Fri, 10 Aug 2007 23:12:09 -0000 The problem is in the rescue directory of the CD/DVD the directory have hard links that when copied with tar, transforms in full files without the links.... I think the problem is in libarchive.. as the old 5.4 FreeBSD does copy the rescue as expected.... a small script fix the rescue links is: assume that your freebsd directory is in /mnt ========================== #!/bin/sh cd /mnt/rescue lista=`ls | grep -v \\\[` for i in $lista do ln -f [ $i done echo done ======================== Sergio