Operating System - HP-UX
1830622 Members
2313 Online
110015 Solutions
New Discussion

make_recovery tape listing

 
SOLVED
Go to solution
Joe Profaizer
Super Advisor

make_recovery tape listing

I copied some files from one mount pt. to a new one, then deleted the source mt. pt. I don't think the permissions of the files stayed the same during the copy, so I need a listing of my last make_recovery tape of those respective files and their permissions. How do I list the files from the tape and see their permissions?

Thanks,

..Joe
2 REPLIES 2
Praveen Bezawada
Respected Contributor
Solution

Re: make_recovery tape listing

Hi
To check the contents of your ignite tape do

# mt -t /dev/rmt/0mn fsf 1

// This above jumps over the boot part

# tar -tvf /dev/rmt/0m > file.lst

This will list the tape contents into a file.

Hope this helps
...BPK...
Magdi KAMAL
Respected Contributor

Re: make_recovery tape listing

Hi,

1. Skip the lif area by :

#mt -f /dev/rmt/#mn fsf 1

2. List the catalog from the Ignite-UX tape :

#tar -tvf /dev/rmt/#m


Notice :

"#" in the avove examples stands for the tape number ( could be 0, 1, 2 or .... ).


Magdi