Try

iostat -x | grep VxVM

The output of this shows VxVMnnnnn where nnnnn corresponds to the minor device number of the block device.

Using nnnnn with a find command will tells us the block device…

find /dev/vx/dsk -type b -exec ls {} \; | awk '{print " ",$6,$10}'" | grep " nnnnn "

Display in megabytes per second only active devices and retain the header with…

iostat -mxz 1 | egrep "Device:|VxVM"

About troyski

I'm a freelance UNIX engineer working in the UK. I'm married to Tina and between us we have six children. I'm a bit of an Apple fan boy, and all the Windows machines in the house are a thing of the past now.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Post navigation