richard wrote:
> 
> Dear all,
>   Thanks. You are right. After I have rewinded the tape by:
> mt -f /dev/nst0 rewind
>   It does not show the following error any longer.

Wonderful. I like success reports :-)

> /sbin/restore: Tape is not a dump tape
> 

That's why I asked you what "DUMP" program you have specified in the
dumptype for /usr, dump or tar. It seems that you use tar, not dump.

> have also tried:
> tar -zxvf 202.85.165.88._operator
> tar (child): 202.85.165.88._operator: Cannot open: No such file or directory

Of course ;-)

First, you typed the wrong file name: 202.85.165.88._operator, instead
of 202.85.165.88._operator_usr.20001215.0.

Second, you must skip the first 32K, which is the file header, then pipe
the rest to gzip (if you used compression) and then to tar. Try

dd if=202.85.165.88._operator_usr.20001215.0 ibs=32k obs=32k skip=1 |
gzip -dc | tar -xvf -

(don't forget the "-" after "-xvf")

This should work fine. 

-- 
Regards

Chris Karakas
Don´t waste your cpu time - crack rc5: http://www.distributed.net

Reply via email to