<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Create Mirror Disk in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736979#M618366</link>
    <description>We have a HP rx2600 server and I need to create a root mirror disk.&lt;BR /&gt;&lt;BR /&gt;We have 2 disks - HP 36.4Gb 15K.  The mirror disk must be bootable.  &lt;BR /&gt;&lt;BR /&gt;How do i go about creating it?</description>
    <pubDate>Wed, 22 Feb 2006 09:01:16 GMT</pubDate>
    <dc:creator>Gurcharan Sahota_2</dc:creator>
    <dc:date>2006-02-22T09:01:16Z</dc:date>
    <item>
      <title>Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736979#M618366</link>
      <description>We have a HP rx2600 server and I need to create a root mirror disk.&lt;BR /&gt;&lt;BR /&gt;We have 2 disks - HP 36.4Gb 15K.  The mirror disk must be bootable.  &lt;BR /&gt;&lt;BR /&gt;How do i go about creating it?</description>
      <pubDate>Wed, 22 Feb 2006 09:01:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736979#M618366</guid>
      <dc:creator>Gurcharan Sahota_2</dc:creator>
      <dc:date>2006-02-22T09:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736980#M618367</link>
      <description>Gurcharn,&lt;BR /&gt;have you got the additional HP_UX Mirror product ?&lt;BR /&gt;If it is installed, just change the number of mirrors on the area you want to mirror.&lt;BR /&gt;I use SAM for this, nice and easy.</description>
      <pubDate>Wed, 22 Feb 2006 09:05:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736980#M618367</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-02-22T09:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736981#M618368</link>
      <description>Hi,&lt;BR /&gt;See attached doc.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Feb 2006 09:08:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736981#M618368</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2006-02-22T09:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736982#M618369</link>
      <description>Mirror the ROOT disk&lt;BR /&gt;Reference HP Doc ID: LVMKBRC00005103 &lt;BR /&gt;&lt;BR /&gt;Mirror root disk to a second disk drive while making sure the second drive is bootable. &lt;BR /&gt;I am going to assume that c2t2d0 is the main bootable drive and c1t2d0 will be our second, mirrored bootable drive we need to build. &lt;BR /&gt;The "-B" option is used to create a bootable Physical Volume: pvcreate -B /dev/rdsk/c1t2d0 &lt;BR /&gt;Make sure to use the character device file when using mkboot: mkboot -l /dev/rdsk/c1t2d0 &lt;BR /&gt;Make sure disks are not in a quorum. &lt;BR /&gt;The "-lq" indicates no quorum when two disks are used. When three or more are used you don't need "-lq". You also need to do this with the primary disk. Otherwise, when you boot normally to "pri" and the "alt" disk is not there for whatever reason, you will **NOT** be able to boot. The "pri" disk will "look" for the "alt" disk. No quorum???? To bad so sad, you loose. Ack! &lt;BR /&gt;So do this: &lt;BR /&gt;&lt;BR /&gt;mkboot -a "hpux -lq (;0)/stand/vmunix" /dev/rdsk/c1t2d0&lt;BR /&gt;&lt;BR /&gt;Don't forget the main boot drive: &lt;BR /&gt;mkboot -a "hpux -lq (;0)/stand/vmunix" /dev/rdsk/c2t2d0&lt;BR /&gt;&lt;BR /&gt;Add Diag to lif: &lt;BR /&gt;32 Bit:&lt;BR /&gt;mkboot -b /usr/sbin/diag/lif/updatediaglif  -p ISL -p AUTO -p HPUX -p PAD -p LABEL /dev/rdsk/c1t2d0&lt;BR /&gt;&lt;BR /&gt;64 Bit:&lt;BR /&gt;mkboot -b /usr/sbin/diag/lif/updatediaglif2 -p ISL -p AUTO -p HPUX -p PAD -p LABEL /dev/rdsk/c1t2d0&lt;BR /&gt;&lt;BR /&gt;Check the contents of the AUTO file: &lt;BR /&gt;lifls /dev/rdsk/c1t2d0 or this command:  lifcp /dev/rdsk/c1t2d0:AUTO -&lt;BR /&gt;&lt;BR /&gt;Add the Physical Volume to the root volume group: &lt;BR /&gt;vgextend /dev/vg00 /dev/dsk/c1t2d0&lt;BR /&gt;&lt;BR /&gt;Do this next command for each "lvol"...... &lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c1t2d0&lt;BR /&gt;&lt;BR /&gt;******* or ******* &lt;BR /&gt;for x in lvol1 lvol2 lvol3 lvol4 lvol5 lvol6 lvol7 lvol8&lt;BR /&gt;  do&lt;BR /&gt;    echo "\n******** Doing ${x} ********\n"&lt;BR /&gt;    lvextend -m 1 /dev/vg00/${x} /dev/dsk/c1t2d0&lt;BR /&gt;done ; banner All Done&lt;BR /&gt;&lt;BR /&gt;Don't forget any extra swap you added (like /dev/vg00/swap2). Do "swapinfo" and "bdf" to check for swap and any other lvols that may have been created. &lt;BR /&gt;Specify the root logical volume: lvlnboot -r /dev/vg00/lvol3 &lt;BR /&gt;Specify the swap logical volume: lvlnboot -s /dev/vg00/lvol2 &lt;BR /&gt;Specify the dump logical volume: lvlnboot -d /dev/vg00/lvol2 &lt;BR /&gt;Specify the boot logical volume: lvlnboot -b /dev/vg00/lvol1 &lt;BR /&gt;Recover any BDRA info: lvlnboot -R &lt;BR /&gt;Verify boot, root, swap and dump settings: lvlnboot -v &lt;BR /&gt;Display the Primary and Alternate boot paths that are currently set: setboot &lt;BR /&gt;Set alternate boot path to the new mirrored disk. &lt;BR /&gt;Use "ioscan -funC disk" to find out what the path should be: &lt;BR /&gt;setboot -a 0/0/1/1.2.0&lt;BR /&gt;Activate AutoSearch and AutoBoot: setboot -s on -b on &lt;BR /&gt;Run "setboot" again to confirm the change. &lt;BR /&gt;Do "shutdown -r 0" (or "reboot") to test. After halting the boot process, type in "bo alt" to boot from the alternate disk. &lt;BR /&gt;A good test would be to remove the primary and then boot to the alternate drive. After that test, place the primary back into the server, then remove the alternate to check that booting process as well. The server should boot from either the primary or alternate disk if no quorum was properly set.</description>
      <pubDate>Wed, 22 Feb 2006 09:08:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736982#M618369</guid>
      <dc:creator>Doug Burton</dc:creator>
      <dc:date>2006-02-22T09:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736983#M618370</link>
      <description>Since you have an rx2600, which is an Itanium machine, the above 2 procedures will NOT work for you.  The procedure for Itanium is quite different.&lt;BR /&gt;&lt;BR /&gt;Check out the following document in the knowledge base:&lt;BR /&gt;&lt;BR /&gt;Title: How to mirror vg00 using LVM on IA with 11.23&lt;BR /&gt;Document ID: KBRC00014526&lt;BR /&gt;&lt;A href="http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000082066576" target="_blank"&gt;http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000082066576&lt;/A&gt;</description>
      <pubDate>Wed, 22 Feb 2006 09:13:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736983#M618370</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2006-02-22T09:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736984#M618371</link>
      <description>I never used SAM to create a root mirror, but don't try the procedures above. This will create a mirror, but NOT a bootable one.&lt;BR /&gt;&lt;BR /&gt;Follow Patricks suggestion!&lt;BR /&gt;&lt;BR /&gt;Notice, the first step (idisk) is necessary to create partitions, &lt;BR /&gt;&lt;BR /&gt;EFI (boot) cxtydzs1 &lt;BR /&gt;OS         cxtydzs2&lt;BR /&gt;Diag       cxtydzs3&lt;BR /&gt;&lt;BR /&gt;You see the difference: the appended s1, s2, s3 to the "normal" devicefile.</description>
      <pubDate>Wed, 22 Feb 2006 10:11:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736984#M618371</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2006-02-22T10:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736985#M618372</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The procedure from Patrick is the valid for integrity servers running HPUX</description>
      <pubDate>Wed, 22 Feb 2006 10:13:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736985#M618372</guid>
      <dc:creator>Luk Vandenbussche</dc:creator>
      <dc:date>2006-02-22T10:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736986#M618373</link>
      <description>Yep - sorry about that. The info I gave was for a Risc box. I didn't know an rx2600 was an Itanium box. Should have checked first.</description>
      <pubDate>Wed, 22 Feb 2006 10:29:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736986#M618373</guid>
      <dc:creator>Doug Burton</dc:creator>
      <dc:date>2006-02-22T10:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736987#M618374</link>
      <description>Here's it is as I just did it for my rx2600:&lt;BR /&gt;&lt;BR /&gt;(couldn't embed - so I attached it...&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Wed, 22 Feb 2006 10:46:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736987#M618374</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2006-02-22T10:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736988#M618375</link>
      <description>This is the ioscan from the server;&lt;BR /&gt;&lt;BR /&gt;The boot disk already has an 's' number appended to it, what does it signify and why are there 3 separate entries for it?</description>
      <pubDate>Wed, 22 Feb 2006 11:27:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736988#M618375</guid>
      <dc:creator>Gurcharan Sahota_2</dc:creator>
      <dc:date>2006-02-22T11:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736989#M618376</link>
      <description>Read my previous post again!</description>
      <pubDate>Wed, 22 Feb 2006 11:36:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736989#M618376</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2006-02-22T11:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736990#M618377</link>
      <description>Hi Gurucharan,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;       Basically, in the itanium boxes, we have a different boot loader as opposed to PDC, called EFI(Extensible Firmware interface). This is a "fat" partition. &lt;BR /&gt;&lt;BR /&gt; "idisk" utility helps you create 3 slices namely "cxtxdxs1(EFI),cxtxdxs2(OS),cxtxdxs3(Diag)".&lt;BR /&gt;&lt;BR /&gt; If you feel the already create slices are not upto the doc standards ,submitted by Walleck,&lt;BR /&gt;&lt;BR /&gt;     just "rmsf" the s1,s2,s3 of second disk, and follow the link provided by patrick walleck.&lt;BR /&gt;&lt;BR /&gt;    The Doc is spot on for Itanium box, I used the same doc, in one of the rx2600 and even booted from the second disk successfully, without any issue's.&lt;BR /&gt;&lt;BR /&gt;    Best of luck and enjoy the exciting procedure.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Senthil</description>
      <pubDate>Wed, 22 Feb 2006 12:19:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736990#M618377</guid>
      <dc:creator>Senthil Kumar .A_1</dc:creator>
      <dc:date>2006-02-22T12:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736991#M618378</link>
      <description>thanks for your responses everyone, i'm in the process of working my way thru the document and I'll let you know how I get on.</description>
      <pubDate>Wed, 22 Feb 2006 12:38:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736991#M618378</guid>
      <dc:creator>Gurcharan Sahota_2</dc:creator>
      <dc:date>2006-02-22T12:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736992#M618379</link>
      <description>Hi;&lt;BR /&gt;&lt;BR /&gt;Do the following steps..&lt;BR /&gt;&lt;BR /&gt;#vgdisplay -v vg00 |more&lt;BR /&gt;&lt;BR /&gt;See the out put, if the alternet disk is present. Both the disk should similar in size.&lt;BR /&gt;Now..&lt;BR /&gt;&lt;BR /&gt;#lvextend -m 1 /dev/vg00/lvol1 &lt;PATH_ALTDISK&gt;&lt;BR /&gt;it take some time to complete the mirror&lt;BR /&gt;do it for all the LVs.&lt;BR /&gt;Now..&lt;BR /&gt;#mkboot -a "hpux -lq" &lt;PATH_ALTDISK&gt;&lt;BR /&gt;#setboot (see the output)&lt;BR /&gt;(use "setboot -p" &amp;amp; "setboot -a" interms of change the boot order.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;indrajit&lt;/PATH_ALTDISK&gt;&lt;/PATH_ALTDISK&gt;</description>
      <pubDate>Wed, 22 Feb 2006 19:04:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736992#M618379</guid>
      <dc:creator>Indrajit_1</dc:creator>
      <dc:date>2006-02-22T19:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736993#M618380</link>
      <description>Hit a slight problem, whilst in the process of intializing the LVM partition (s2) and adding it to vg00, I encountered the following error-&lt;BR /&gt;&lt;BR /&gt;root@bduxdv01:/&amp;gt; vgextend vg00 /dev/dsk/c2t1d0s2&lt;BR /&gt;vgextend: Warning: Max_PE_per_PV for the volume group (4238) too small for this&lt;BR /&gt;PV (4329).&lt;BR /&gt;         Using only 4238 PEs from this physical volume.&lt;BR /&gt;Volume group "vg00" has been successfully extended.&lt;BR /&gt;vgcfgbackup: Invalid LVMREC on Physical Volume /dev/rdsk/c2t1d0&lt;BR /&gt;&lt;BR /&gt;any suggestions?</description>
      <pubDate>Thu, 23 Feb 2006 05:39:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736993#M618380</guid>
      <dc:creator>Gurcharan Sahota_2</dc:creator>
      <dc:date>2006-02-23T05:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736994#M618381</link>
      <description>&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=942766" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=942766&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=841931" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=841931&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu</description>
      <pubDate>Thu, 23 Feb 2006 05:45:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736994#M618381</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-02-23T05:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736995#M618382</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Here is the official disk replacement guide describing root-mirroring for itanium systems in HPUx at page 26.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/5991-1236/When_Good_Disks_Go_Bad.pdf" target="_blank"&gt;http://docs.hp.com/en/5991-1236/When_Good_Disks_Go_Bad.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Devender&lt;BR /&gt;</description>
      <pubDate>Thu, 23 Feb 2006 06:16:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736995#M618382</guid>
      <dc:creator>Devender Khatana</dc:creator>
      <dc:date>2006-02-23T06:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736996#M618383</link>
      <description>In the process of lvextending vg00 and copying across all the lvols to the mirror disk but have encountered the following error - &lt;BR /&gt;&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c2t1d0s2&lt;BR /&gt;Usage: lvextend&lt;BR /&gt;        [-A Autobackup]&lt;BR /&gt;        {-l LogicalExtentsNumber |&lt;BR /&gt;         -L LogicalVolumeSize}&lt;BR /&gt;        LogicalVolumePath [ PhysicalVolumePath... | PhysicalVolumeGroupName... ]&lt;BR /&gt;"m": Illegal option&lt;BR /&gt;&lt;BR /&gt;I've read that I need to have the MirrorDisk product installed? the PA-RISC version is different from the itanium based version? is it downloadable or does it have to be paid for? are there any other workarounds?</description>
      <pubDate>Thu, 23 Feb 2006 08:46:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736996#M618383</guid>
      <dc:creator>Gurcharan Sahota_2</dc:creator>
      <dc:date>2006-02-23T08:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736997#M618384</link>
      <description>Yes, you have to buy Mirror Disk in order to use it.  &lt;BR /&gt;&lt;BR /&gt;Yes, Itanium version is different from PA-RISC version.&lt;BR /&gt;&lt;BR /&gt;Workarounds? None that I know of.</description>
      <pubDate>Thu, 23 Feb 2006 09:44:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736997#M618384</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2006-02-23T09:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mirror Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736998#M618385</link>
      <description>If you have the Enterprise OE (or Mission Critical)- then mirror disk is included - sounds like you have Foundation OE:&lt;BR /&gt;&lt;BR /&gt;swlist |grep OE&lt;BR /&gt;&lt;BR /&gt;You will have to purchase a license for Mirrordisk UX&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Thu, 23 Feb 2006 12:17:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mirror-disk/m-p/3736998#M618385</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2006-02-23T12:17:08Z</dc:date>
    </item>
  </channel>
</rss>

