Joey Kelly <joey@joeykelly.net> writes:
> When I say "copy", this might be more involved than "cp -R". I moved a
> partition once, and it wasn't fun. YMMV.
# (cd /old/partition; tar cf - .) | (cd /new/partition; tar xf -)
Or, for extra geek points, you could use cpio.
# (cd /old/partition; find . -type f -print0 | cpio -0o ) |
(cd /new/partition; cpio -i -d)
Mark.
-- Peace is only better than war if peace isn't hell, too. -- Walker Percy, "The Second Coming" ___________________ Nolug mailing list nolug@nolug.orgReceived on 11/04/03
This archive was generated by hypermail 2.2.0 : 12/19/08 EST