Operating System - Tru64 Unix
1752290 Members
5361 Online
108786 Solutions
New Discussion юеВ

read a content of the tape

 
SOLVED
Go to solution
malay boy
Trusted Contributor

read a content of the tape

Hi,
I do a backup on the tape using dump command :

dump -0un -f /dev/tape/tape_d1 /oracle

After the backup,how to read the content of the tape.

Sorry :-) I'm very-very new to Tru64.

regards
mB
There are three person in my team-Me ,myself and I.
2 REPLIES 2
Ralf Puchner
Honored Contributor

Re: read a content of the tape

# man dump
at the bottom of the man-page:
"see also commands restore"

so it seems "restore" is the command you are looking for ;-)


Help() { FirstReadManual(urgently); Go_to_it;; }
Mohamed  K Ahmed
Trusted Contributor
Solution

Re: read a content of the tape

I have to tell you that dump/restore commands are not supported anymore. You have to use vdump/vrestore.

Any way, if you checked the man pages (man vrestore), you will find that you can get into an interactive shell and look at the files on the tape and choose which to restore:
#vrestore -i -f tape_device
commands you can use in the vrestore interactive shell are: ls , add , extract , exit ......

HTH

Mohamed