DSL Ideas and Suggestions :: Frugal Install suggestion



Just thought I would make a suggestion, as this is a change I needed to make.

Make the following change to the frugal_install.sh

Replace the following line:
cp -af $IMAGE/* /mnt/$TARGET

With:
(cd $IMAGE; tar cf - ./*) | (cd /mnt/$TARGET; tar xvf -)

Edit:
bah... stupid double post... Sorry.


original here.