First, I mounted the destination drive as /backup:
# mount /dev/wd1c /backup
I wanted to backup all of wd0. This consists of /, /usr,
and /var.
xymix (someone on IRC) told me about these two methods:
So here's what I did for the three slices I wanted to backup:
(cd / ; tar -cvlf - .) | (cd /backup/ ; tar xpf -)
(cd /var ; tar -cvlf - .) | (cd /backup/var ; tar xpf -)
(cd /usr ; tar -cvlf - .) | (cd /backup/usr ; tar xpf -)
|