[plug] Backup to DAT
Andrew Barbara
Andrew at mmtnetworks.com.au
Tue Feb 5 12:03:29 WST 2002
How would i restor from these?
Andrew Barbara, MCP
MMT Networks Pty Ltd
http://www.mmtnetworks.com.au
>>> leon at brooks.fdns.net 02/04/02 07:10PM >>>
On Monday 04 February 2002 17:37, Andrew Barbara wrote:
> Whats the best solution for backing up all data to a Sony DDS 9000 SCSI DAT
> Drive?
This is the fastest:
dd if=/dev/hda of=/dev/st0
This is the simplest that compresses well:
bzip2 -9 </dev/hda >/dev/st0
If you have SCSI hard drives you may need to use /dev/sda instead of
/dev/hda; multiple drives can be catered for like this:
cat /dev/hda /dev/hdb | bzip2 -9 >/dev/st0
The following solution is boring and slower but doesn't back up unused space
and for some reason (probably ~30 years of history) works well:
tar cvjf /dev/st0 /
Cheers; Leon
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: TEXT.htm
URL: <http://lists.plug.org.au/pipermail/plug/attachments/20020205/5b9bbea5/attachment.ksh>
More information about the plug
mailing list