backup and restore

I have successfully backed up and restored a system but am now looking to gzip this process.

My dump

Code:
dump -0Lauf - /dev/ad4s1a | gzip > /backup/dump.usr.gz

My restore

Code:
cd /usr
restore -xuf /backup/dump.usr.gz

I receive

Code:
Tape is not a dump tape

I see in the restore command I am not specifying that it is a zipped file. I would appreciate some help or direction with this.
 
Back
Top