Author: dordal
Date: 01-08-05 21:18
Just a quick note to let you know that the procedure contributed by Dean at
the bottom of the page on http://www.freebsddiary.org/driveswap.php no
longer works in FreeBSD 5.X.
The nice folks have updated the options that tar takes, and the correct
command is of the form:
tar --one-file-system -c -f - -C / . | tar xpvf - -C /mnt
E.g.
tar --one-file-system -c -f - -C / . | tar xpvf - -C /mnt
tar --one-file-system -c -f - -C /var . | tar xpvf - -C /mnt/var
tar --one-file-system -c -f - -C /tmp . | tar xpvf - -C /mnt/tmp
tar --one-file-system -c -f - -C /usr . | tar xpvf - -C /mnt/usr
|
|