Sponsored Content
Full Discussion: dispaly vg's and pv's?
Operating Systems AIX dispaly vg's and pv's? Post 302233193 by bakunin on Saturday 6th of September 2008 04:41:39 PM
Old 09-06-2008
Just a minor observation:

Quote:
Originally Posted by Rob Kerrr
MyID=`lspv $MyPV|grep 'PV IDENTIFIER'|awk '{ print $3}'`
Don't let era, our local "herder of useless cats", see that ;-)) :

.... awk '{ /PV IDENTIFIER/ print $3 }'....

would do the same as "....grep ...| awk ....", yes?

I have long given up on pointing out that backticks are considered harmful in the Korn shell and "`...`" should be replaced by "$(....)".

And for the audience: please use [ code ]...[ /code ]-tags when posting code. The difference is:

with code-tags:
Code:
for MyVG in `lsvg`
do
     echo "\n\n Volume Group: $MyVG\n------------------"
     for MyPV in `lsvg -p $MyVG|grep -v -e $MyVG -e PV_NAME|awk '{ print $1 }'`
     do
          MyID=`lspv $MyPV|grep 'PV IDENTIFIER'|awk '{ print $3}'`
          echo $MyPV $MyID
     done
done

and the same without:
for MyVG in `lsvg`
do
echo "\n\n Volume Group: $MyVG\n------------------"
for MyPV in `lsvg -p $MyVG|grep -v -e $MyVG -e PV_NAME|awk '{ print $1 }'`
do
MyID=`lspv $MyPV|grep 'PV IDENTIFIER'|awk '{ print $3}'`
echo $MyPV $MyID
done
done

bakunin

Last edited by bakunin; 09-06-2008 at 05:47 PM..
 

2 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Issue with dispaly of special character like 'TM'

Hi, I've an xml file with special characetr 'TM' (trade mark sign). The issue is that I am not able to get the symbol 'TM'(trade mark sign) on unix. It displays '?' instead. I've searched the solution on net. Wht I've found is that the symbol 'TM' does not come under ISO-8859-1 char set. So I... (0 Replies)
Discussion started by: vbehal
0 Replies

2. Solaris

Dispaly IP address

How to display the IP address in authlog and sulog? (1 Reply)
Discussion started by: Burhan
1 Replies
VGDISPLAY(8)						      System Manager's Manual						      VGDISPLAY(8)

NAME
vgdisplay - display attributes of volume groups SYNOPSIS
vgdisplay [-A|--activevolumegroups] [-c|--colon|-s|--short|-v|--verbose] [-d|--debug] [-h|--help] [--ignorelockingfailure] [--nosuffix] [-P|--partial] [--unitshHbBsSkKmMgGtTpPeE] [--version] [VolumeGroupName[VolumeGroupName...]] vgdisplay --columns | -C [--aligned][-d|--debug][-h|-?|--help] [--ignorelockingfailure][--noheadings][--nosuffix] [-o|--options[+]Field[,Field]] [-O|--sort[+|-]Key1[,[+|-]Key2[,...]]] [-P|--partial] [--separatorSeparator] [--unbuffered] [--unitshHbB- sSkKmMgGtTpPeE] [-v|--verbose] [--version] [VolumeGroupName[VolumeGroupName...]] DESCRIPTION
vgdisplay allows you to see the attributes of VolumeGroupName (or all volume groups if none is given) with it's physical and logical vol- umes and their sizes etc. vgs (8) is an alternative that provides the same information in the style of ps (1). OPTIONS
See lvm for common options and vgs for options given with --columns. -A, --activevolumegroups Only select the active volume groups. -c, --colon Generate colon separated output for easier parsing in scripts or programs. N.B. vgs (8) provides considerably more control over the output. The values are: 1 volume group name 2 volume group access 3 volume group status 4 internal volume group number 5 maximum number of logical volumes 6 current number of logical volumes 7 open count of all logical volumes in this volume group 8 maximum logical volume size 9 maximum number of physical volumes 10 current number of physical volumes 11 actual number of physical volumes 12 size of volume group in kilobytes 13 physical extent size 14 total number of physical extents for this volume group 15 allocated number of physical extents for this volume group 16 free number of physical extents for this volume group 17 uuid of volume group -s, --short Give a short listing showing the existence of volume groups. -v, --verbose Display verbose information containing long listings of physical and logical volumes. If given twice, also display verbose runtime information of vgdisplay's activities. --version Display version and exit successfully. --columns|-C Display output in columns, the equivalent of vgs. Options listed are the same as options given in vgs (8). SEE ALSO
lvm(8), vgs(8), pvcreate(8), vgcreate(8), lvcreate(8) Sistina Software UK LVM TOOLS 2.02.95(2) (2012-03-06) VGDISPLAY(8)
All times are GMT -4. The time now is 12:21 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy