Yup!
Even nicer, if you have ssh setup (or rsh, yuck) you can actually dump
it to another machine:
dd if=/dev/whatever | bzip -9 | ssh otherhost "dd
of=/bigdrive/mydisk.dd.bz2"
I'm not sure that slice2 on a sun machine will include the boot sector,
but it will include the partition table, so you'll want to get details
for whatever system you're running. I'm not sure that you'll want to
use the raw device name there however.
Another choice would be ufsdump or whatever it's called on your system
(possibly fsdump or just dump.)
Richard wrote:
In article <459C5D4E.4050802 at
arachelian.com>,
Ray Arachelian <ray at arachelian.com> writes:
dd if=/dev/zero of=/mnt/junk bs=65536
rm /mnt/junk
umount /mnt
dd if=/dev/dsk/c0t1d0s2 | bzip2 -9 >/somewhere-else/disk.dd.gz
Nice!
Presumably this can be done by taking the disk out of the existing
system and attaching it to a SCSI bus on another system?
Also, presumably I'd use the device name that is the "raw" disk
device. Isn't that what unix typically called it?