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

_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to