Operating System - HP-UX
1753797 Members
7340 Online
108799 Solutions
New Discussion юеВ

Re: make_net_recovery exclude

 
Dan Matlock_1
Regular Advisor

make_net_recovery exclude

Can someone tell me which/where can I put the list of logical volumes I want to 'exclude' during my ignite. Unfortunetly years past someone put sybase raw devices on vg00, and I want to exclude them to get ride of the warnings.
4 REPLIES 4
D Block 2
Respected Contributor

Re: make_net_recovery exclude

-x exclude=/dev/vg00/xyz

the exclude flag works for file and or directories, but not certain for special files.

did you try ?
Golf is a Good Walk Spoiled, Mark Twain.
Jeff Schussele
Honored Contributor

Re: make_net_recovery exclude

Hi Dan,

Or if you have a *lot* of excludes then use
-f /full/path/to/contents/file

and in it put

exclude dir_name1
exclude dir_name2
exclude dir_name3
etc.....

But if you use the -f then you can't use -x for any other excludes OR includes.

HTH,
Jeff
PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!
HGN
Honored Contributor

Re: make_net_recovery exclude

Hi Dan

You can use what Jeff has mentioned or if you want it in a single line you could use like this

/opt/ignite/bin/make_tape_recovery -A -x exclude=/usr/lmn -x exclude=/var/tmp -x exclude=/tmp -x exclude=/efg -x exclude=/abc -d /dev/rmt/0m

Rgds

HGN
Dan Matlock_1
Regular Advisor

Re: make_net_recovery exclude

OK