Can not make a 6.2 ISO image

Sergio Lenzi lenzi.sergio at gmail.com
Fri Aug 10 16:12:09 PDT 2007


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



More information about the freebsd-questions mailing list