On May 8, 2005, at 12:06 PM, Gus Wirth wrote:
Then just copy everything over, something like this:
cp -av /mnt/hda1/* /mnt/hdb1/
I tend to use rsync to do wholesale copies like that nowadays:
rsync -av /mnt/hda1/ /mnt/hdb1/
There are some other flags you can give rsync to preserve things like sparse files and hard links which cp is not aware of.
-a
-- [email protected] http://www.kernel-panic.org/cgi-bin/mailman/listinfo/kplug-list
