Operating System - HP-UX
1823252 Members
3378 Online
109648 Solutions
New Discussion юеВ

RAID 0 Stripe set and mirror UX

 
Tim Killinger
Regular Advisor

RAID 0 Stripe set and mirror UX

Hello,

Is it possible to make a 72gb stripe set with two 36gb disks and mirror/ux? Or is mirror/ux just that - you can create 1 or 2 mirror copies of a logical volume. If you can do raid 0, what is the syntax?

Thanks in advance!
2 REPLIES 2
Patrick Wallek
Honored Contributor

Re: RAID 0 Stripe set and mirror UX

Mirror/UX is not required to stripe across disk.

Have a look at the '-i' and '-I' options to lvcreate.

For example to create 30GB LV striped across 2 disks, with a 64KB stripe size:

lvcreate -L 30720 -i 2 -I 64 /dev/dsk/c1t2d0 /dev/dsk/c1t3d0
Tim Killinger
Regular Advisor

Re: RAID 0 Stripe set and mirror UX

Thanks!