I am trying to grow a stripped volume of 10 disks by an additional 10 disks.
Does know what the process is ?
Thanks
Printable View
I am trying to grow a stripped volume of 10 disks by an additional 10 disks.
Does know what the process is ?
Thanks
Add the disks to the diskgroup first
(use vxdiskadm option 1, or vxdiskadd or vxdg adddisk)
See how much the volume can grow:
vxassist -g <dg_name_comes_here> maxgrow <vol_name_comes_here>
This will return a size (in blocks)
Then grow the volume
vxassist -g <dg_name_comes_here> growby <length_from_previous_command>
<volume_name_comes_here>
Then you have to grow the filesystem as well (use fsadm)
Or do the volume and the filesystem together with the vxresize command
Piush Shah wrote:[color=blue]
> I am trying to grow a stripped volume of 10 disks by an additional 10 disks.
> Does know what the process is ?
> Thanks[/color]