ADSM-L

Re: Non rootvg VG's

1999-08-02 10:44:52
Subject: Re: Non rootvg VG's
From: "Wu, Jie" <JWu AT NCTR.FDA DOT GOV>
Date: Mon, 2 Aug 1999 09:44:52 -0500
I may be wrong, but this is what man page describes:
        /image.data, created by the mkszfile command, contains information
describing the image installed during the BOS installation process. This
info includes the sizes, names, maps, and mount points of lv'ss and fs's in
the rootvg.
If you want info about none-roovg, a few lines of script should do it (the
following only gives you the vg list):
        $cmd = "lsvg";
        open(OUT, "-|") || exec $cmd;
        $i = 0;
        while($line = <OUT>) {
                if($line != "roovg) {
                        $vg[$i] = $line;
                        $i++;
                }
        }
        .......
Add a few lines to get lists of lv's and fs's.

Jie Wu
System and Storage Administrator
ROW Sciences Inc @NCTR FDA
phone: 870-543-7958
fax: 870-543-7382


> > -----Original Message-----
> > From: Brandon W.Moore [SMTP:mooreb1 AT US.IBM DOT COM]
> > Sent: 29 July 1999 16:59
> > To:   ADSM-L AT VM.MARIST DOT EDU
> > Subject:      Re: Non rootvg VG's
> >
> > Mark:
> >
> > That information is included in a file called image.data, it should be
> on
> > the
> > root AIX filesystem.  This contains information that you seek...Make
> sure
> > that
> > file is backed up because within it you change any parameters of
> > filesystem
> > mounting...
> >
> > Brandon W. Moore
> > I/T Specialist
> > Large Scale ADSM: AIX/SUN/IRIX/HPUX/NT Setup and Implementation
> >
> >
> > Mark Smith <msmith AT TTANK DOT COM> on 07/28/99 04:45:16 PM
> >
> > Please respond to "ADSM: Dist Stor Manager" <ADSM-L AT VM.MARIST DOT EDU>
> >
> > To:   ADSM-L AT VM.MARIST DOT EDU
> > cc:
> > Subject:  Non rootvg VG's
> >
> >
> >
> >
> >
> > Fellow ADSM'ers
> > I'm in the process of designing a disaster recovery plan for AIX.  We
> use
> > ADSM
> > to backup our files, and I'm looking for a solution on rebuilding our
> > non-root
> > volume groups.  I want just the volume group, logical volume, and
> > filesystem
> > information without the data.  I could probably script it (in time), or
> I
> > thought someone
> > out there probably already has a solution.
> >
> > Thanks
> >
> > Mark
> **********************************************************************
> This email and any files transmitted with it are confidential and
> intended solely for the use of the individual or entity to whom they
> are addressed. If you have received this email in error please notify
> the system manager.
>
> This footnote also confirms that this email message has been swept by
> MIMEsweeper for the presence of computer viruses.
>
> www.mimesweeper.com
> **********************************************************************
<Prev in Thread] Current Thread [Next in Thread>