Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 Aug 2007 19:46:20 -0300
From:      Sergio Lenzi <lenzi.sergio@gmail.com>
To:        doug@safeport.com, questions <freebsd-questions@freebsd.org>
Subject:   Re: Can not make a 6.2 ISO image
Message-ID:  <1186785980.71492.6.camel@localhost>
In-Reply-To: <20070810133045.B99453@fledge.watson.org>
References:  <20070810133045.B99453@fledge.watson.org>

next in thread | previous in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1186785980.71492.6.camel>