Display basic information about Physical Volumes

# Small script to display some interesting information about Physical Volumes


DISP="1"; ls -l /dev/hdisk* | awk '{print $10 " " $5 $6}' | sed -e "s:/dev/::" -e "s/,/ /"  | while read DISK MAJOR MINOR
do
   SIZE=$(bootinfo -s $DISK)
   LUN=$(lscfg -l $DISK | sed -e "s/^.*L//" -e "s/ .*$//" | cut -c-2)
   VG=$(lspv | awk -vSDISK=$DISK '$1 == SDISK {print $3}')
   [ "$DISP" == "1" ] && echo -e "DISK \t SIZE \t LUN \t MAJOR \t MINOR \t VG" && DISP="0"
   echo -e "$DISK \t $SIZE \t $LUN \t $MAJOR \t $MINOR \t $VG"
done


DISK     SIZE    LUN     MAJOR   MINOR   VG
hdisk0   76800   81      17      0       rootvg
hdisk1   13312   82      17      3       rootvg
hdisk2   20480   83      17      4       None
hdisk3   10240   84      17      2       None
0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
30 Handy Bash Shell Aliases For Linux / Unix / MacOS
Viewed 4543 times since Thu, Feb 11, 2021
Linux / UNIX: Convert Epoch Seconds To the Current Time
Viewed 2971 times since Fri, May 25, 2018
O’Reilly’s CD bookshelf
Viewed 12346 times since Wed, Jun 27, 2018
How to sort IP addresses in Linux
Viewed 3793 times since Thu, May 24, 2018
Unix - eval command example
Viewed 1936 times since Fri, Jun 8, 2018
10 Xargs Command Examples in Linux / UNIX
Viewed 3803 times since Fri, Jun 1, 2018
Adding a range of IPs in Linux
Viewed 2548 times since Mon, May 21, 2018
10 Awk Tips, Tricks and Pitfalls
Viewed 5862 times since Wed, Aug 19, 2020
Linux and Unix xargs command tutorial with examples
Viewed 3795 times since Fri, Jun 1, 2018
The Ultimate Bash Array Tutorial with 15 Examples
Viewed 13189 times since Sun, Sep 30, 2018