Datacentre Support Reference Guides
Visit our online shop for ALL your parts, components,
laptops, electronics and gadgets Veritas: Creating new disk groups | |
| To create a new disk group under Veritas, you can either:
For example, to create a new disk group, doug, and add three disks to it:
for disk in c3t0d0 c3t0d1 c3t0d2
do
vxdisksetup -i ${disk} # Uses default private area length
done
vxdg init doug doug01=c3t0d0
for x in 1 2
do
y=((x+1))
vxdg -g doug adddisk doug0${y}=c3t0d${x}
done
| |