<?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 Re: mirrored a boot disk in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433084#M356085</link>
    <description>since your boot disk is not so much of *bootable*, it won't hurt to destroy it and start from scratch.&lt;BR /&gt;&lt;BR /&gt;raw=/dev/rdsk/c2t1d0&lt;BR /&gt;blk=/dev/dsk/c2t1d0&lt;BR /&gt;&lt;BR /&gt;pwcreate -B ${raw}&lt;BR /&gt;mkboot -a "hpux -lq (;0)/stand/vmunix" ${raw}&lt;BR /&gt;mkboot -l ${raw}&lt;BR /&gt;cd /usr/sbin/diag/lif&lt;BR /&gt;mkboot -b updatediaglif2 -p ISL -p AUTO -p HPUX -p LABEL ${raw}&lt;BR /&gt;&lt;BR /&gt;vgextend /dev/vg00 ${blk}&lt;BR /&gt;&lt;BR /&gt;# do your logical volume mirroring here&lt;BR /&gt;&lt;BR /&gt;lvlnboot -r /dev/vg00/lvol3 #root fs /&lt;BR /&gt;lvlnboot -s /dev/vg00/lvol2 #swap&lt;BR /&gt;lvlnboot -d /dev/vg00/lvol2 #swap/dump&lt;BR /&gt;lvlnboot -b /dev/vg00/lvol1&lt;BR /&gt;lvlnboot -R&lt;BR /&gt;lvlnboot -v&lt;BR /&gt;&lt;BR /&gt;Hope this helps</description>
    <pubDate>Thu, 04 Jun 2009 12:38:19 GMT</pubDate>
    <dc:creator>Mel Burslan</dc:creator>
    <dc:date>2009-06-04T12:38:19Z</dc:date>
    <item>
      <title>mirrored a boot disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433076#M356077</link>
      <description>Can anyone help me to create a mirrored disk. &lt;BR /&gt;first i have a boot disk (/dev/disk/c2t0d0) and secondary disk (/dev/disk/c2t1d0): &lt;BR /&gt;&lt;BR /&gt;#pvcreate -B /dev/rdsk/c2t1d0&lt;BR /&gt;#vgextend /dev/vg00 /dev/dsk/c2t1d0&lt;BR /&gt;#mkboot -l /dev/rdsk/c2t1d0&lt;BR /&gt;#lifcp/dev/rdsk/c2t1d0&lt;BR /&gt;#lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c2t1d0&lt;BR /&gt;(lvol1 to lvol8)&lt;BR /&gt;#lvextend -m 1 /dev/vg00/lvol8 /dev/dsk/c2t1d0&lt;BR /&gt;</description>
      <pubDate>Thu, 04 Jun 2009 11:12:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433076#M356077</guid>
      <dc:creator>taouw</dc:creator>
      <dc:date>2009-06-04T11:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: mirrored a boot disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433077#M356078</link>
      <description>but no boot disk have created</description>
      <pubDate>Thu, 04 Jun 2009 11:15:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433077#M356078</guid>
      <dc:creator>taouw</dc:creator>
      <dc:date>2009-06-04T11:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: mirrored a boot disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433078#M356079</link>
      <description>Here's my procedure:&lt;BR /&gt;&lt;BR /&gt;The steps to mirror your boot volume are (PA-RISC):&lt;BR /&gt;&lt;BR /&gt;1. Create a physical volume with a boot reserved area&lt;BR /&gt;"pvcreate -B /dev/rdsk/c1t6d0"&lt;BR /&gt;&lt;BR /&gt;2. Add the physical volume to the root VG&lt;BR /&gt;"vgextend /dev/vg00 /dev/dsk/c1t6d0"&lt;BR /&gt;&lt;BR /&gt;3. Use mkboot to place the boot utilities in the boot area and add the AUTO file&lt;BR /&gt;"mkboot /dev/rdsk/c1t6d0"&lt;BR /&gt;"mkboot -a "hpux -lq" /dev/rdsk/c1t6d0"&lt;BR /&gt;&lt;BR /&gt;4. Use mkboot to update the AUTO file on the primary boot disk&lt;BR /&gt;"mkboot -a "hpux -lq" /dev/rdsk/c0t6d0"&lt;BR /&gt;&lt;BR /&gt;5. Use lvlnboot to identify the root, boot, primary swap and dump lvols&lt;BR /&gt;"lvlnboot -r /dev/vg00/lvol3 /dev/vg00"  (lvol4 if you have secondary swap in lv&lt;BR /&gt;ol3)&lt;BR /&gt;"lvlnboot -b /dev/vg00/lvol1"&lt;BR /&gt;"lvlnboot -s /dev/vg00/lvol2 /dev/vg00"&lt;BR /&gt;"lvlnboot -d /dev/vg00/lvol2 /dev/vg00"&lt;BR /&gt;"lvlnboot -v"&lt;BR /&gt;&lt;BR /&gt;6. Mirror the stand, root and swap logical volumes in order&lt;BR /&gt;"lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c1t6d0"&lt;BR /&gt;"lvextend -m 1 /dev/vg00/lvol2 /dev/dsk/c1t6d0"&lt;BR /&gt;"lvextend -m 1 /dev/vg00/lvol3 /dev/dsk/c1t6d0"&lt;BR /&gt;&lt;BR /&gt;7. Then mirror the rest of your root logical volumes&lt;BR /&gt;"lvextend -m 1 /dev/vg00/lvol4 /dev/dsk/c1t6d0"&lt;BR /&gt;etc.&lt;BR /&gt;&lt;BR /&gt;8. Modify your alternate boot path&lt;BR /&gt;"setboot -a 8/8.6.0 # use the path of your new boot disk"&lt;BR /&gt;&lt;BR /&gt;9. Edit /stand/bootconf and add your new mirrored boot disk.&lt;BR /&gt;&lt;BR /&gt;That's all there is to it.  You may notice that I left out the&lt;BR /&gt;lvlnboot -R command. That is because it is not&lt;BR /&gt;necessary - see the man page:&lt;BR /&gt;&lt;BR /&gt;"This command should be run in recovery mode (-R)&lt;BR /&gt;whenever the configuration of the root volume group is&lt;BR /&gt;affected by one of the following commands: lvextend,&lt;BR /&gt;lvmerge, lvreduce, lvsplit, pvmove, lvremove, vgextend,&lt;BR /&gt;or vgreduce (see lvextend(1M), lvmerge(1M), lvreduce(1M),&lt;BR /&gt;lvsplit(1M), pvmove(1M), lvremove(1M), vgextend(1M), and&lt;BR /&gt;vgreduce(1M)). Starting with HP-UX Release 10.0, this is&lt;BR /&gt;done automatically."&lt;BR /&gt;&lt;BR /&gt;For Itanium architecture, follow this guide:&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-90950/ch06s02.html#cchgjafa" target="_blank"&gt;http://docs.hp.com/en/B2355-90950/ch06s02.html#cchgjafa&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;And, for 11.31, follow this:&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-90950/ch06s02.html#mrflv" target="_blank"&gt;http://docs.hp.com/en/B2355-90950/ch06s02.html#mrflv&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 04 Jun 2009 11:19:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433078#M356079</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2009-06-04T11:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: mirrored a boot disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433079#M356080</link>
      <description>try these in addition to what you have done:&lt;BR /&gt;&lt;BR /&gt;mkboot -a "hpux -lq (;0)/stand/vmunix" /dev/rdsk/c2t1d0&lt;BR /&gt;cd /usr/sbin/diag/lif&lt;BR /&gt;mkboot -b updatediaglif2 -p ISL -p AUTO -p HPUX -p LABEL /dev/rdsk/c2t1d0&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 04 Jun 2009 11:24:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433079#M356080</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2009-06-04T11:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: mirrored a boot disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433080#M356081</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.hpux.ws/?p=21" target="_blank"&gt;http://www.hpux.ws/?p=21&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Its all there and is somewhat more extensive.&lt;BR /&gt;&lt;BR /&gt;Also do a boot test so you know it works.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 04 Jun 2009 11:33:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433080#M356081</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-06-04T11:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: mirrored a boot disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433081#M356082</link>
      <description>when i write the command mkboot -a "hpux-lq" /dev/rdsk/c2t1d0 i have receive the message:&lt;BR /&gt;-a specified but no current boot area on /dev/rdsk/c2t1d0</description>
      <pubDate>Thu, 04 Jun 2009 11:50:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433081#M356082</guid>
      <dc:creator>taouw</dc:creator>
      <dc:date>2009-06-04T11:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: mirrored a boot disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433082#M356083</link>
      <description>are you sure your pvcreate -B command executed and completed successfully ?&lt;BR /&gt;&lt;BR /&gt;start from scratch and try following Pete's procedure step-by-step. Something you did while troubleshooting the problem might have messed up the LIF on this disk.</description>
      <pubDate>Thu, 04 Jun 2009 11:58:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433082#M356083</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2009-06-04T11:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: mirrored a boot disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433083#M356084</link>
      <description>yes, i'm sure to create a volume group with the command #vgcreate -B vg00...</description>
      <pubDate>Thu, 04 Jun 2009 12:30:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433083#M356084</guid>
      <dc:creator>taouw</dc:creator>
      <dc:date>2009-06-04T12:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: mirrored a boot disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433084#M356085</link>
      <description>since your boot disk is not so much of *bootable*, it won't hurt to destroy it and start from scratch.&lt;BR /&gt;&lt;BR /&gt;raw=/dev/rdsk/c2t1d0&lt;BR /&gt;blk=/dev/dsk/c2t1d0&lt;BR /&gt;&lt;BR /&gt;pwcreate -B ${raw}&lt;BR /&gt;mkboot -a "hpux -lq (;0)/stand/vmunix" ${raw}&lt;BR /&gt;mkboot -l ${raw}&lt;BR /&gt;cd /usr/sbin/diag/lif&lt;BR /&gt;mkboot -b updatediaglif2 -p ISL -p AUTO -p HPUX -p LABEL ${raw}&lt;BR /&gt;&lt;BR /&gt;vgextend /dev/vg00 ${blk}&lt;BR /&gt;&lt;BR /&gt;# do your logical volume mirroring here&lt;BR /&gt;&lt;BR /&gt;lvlnboot -r /dev/vg00/lvol3 #root fs /&lt;BR /&gt;lvlnboot -s /dev/vg00/lvol2 #swap&lt;BR /&gt;lvlnboot -d /dev/vg00/lvol2 #swap/dump&lt;BR /&gt;lvlnboot -b /dev/vg00/lvol1&lt;BR /&gt;lvlnboot -R&lt;BR /&gt;lvlnboot -v&lt;BR /&gt;&lt;BR /&gt;Hope this helps</description>
      <pubDate>Thu, 04 Jun 2009 12:38:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433084#M356085</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2009-06-04T12:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: mirrored a boot disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433085#M356086</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;its probably down to the fact you havent done the lvlnboot steps,&lt;BR /&gt;&lt;BR /&gt;do these as already stated&lt;BR /&gt;&lt;BR /&gt;Andy</description>
      <pubDate>Thu, 04 Jun 2009 21:03:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirrored-a-boot-disk/m-p/4433085#M356086</guid>
      <dc:creator>Andrew Rutter</dc:creator>
      <dc:date>2009-06-04T21:03:25Z</dc:date>
    </item>
  </channel>
</rss>

