<?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: bootable disk replacement in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543541#M369698</link>
    <description>Ok you may try this &lt;BR /&gt;&lt;BR /&gt;c1t1d0 free disk as an example &lt;BR /&gt;&lt;BR /&gt;1. Create a new VG vgroot with c1t1d0:&lt;BR /&gt;# pvcreate -B /dev/rdsk/c1t1d0 (donâ  t forget the â  B option!)&lt;BR /&gt;# mkdir /dev/vgroot&lt;BR /&gt;# ll /dev/*/group (check for unused minor number)&lt;BR /&gt;# mknod /dev/vgroot/group c 64 0x010000&lt;BR /&gt;# vgcreate vgroot /dev/dsk/c1t1d0&lt;BR /&gt;2. Create LVs for boot, swap and root (in that order). Use at least the same size as in&lt;BR /&gt;your original root VG:&lt;BR /&gt;# lvcreate -C y -r n vgroot&lt;BR /&gt;# lvextend -L 100 /dev/vgroot/lvol1 (e.g. 100 MB for /stand)&lt;BR /&gt;# lvcreate -C y -r n vgroot&lt;BR /&gt;# lvextend -L 512 /dev/vgroot/lvol2 (e.g. 512 MB pri. swap)&lt;BR /&gt;# lvcreate -C y -r n vgroot&lt;BR /&gt;# lvextend -L 200 /dev/vgroot/lvol3 (e.g. 200 MB for /)&lt;BR /&gt;3. Configure LIF and BDRA on c1t1d0 (see the LIF/BDRA Configuration Procedure).&lt;BR /&gt;4. Create LVs for /usr, /opt, /var, /tmp, /etc, /home, etc. Use at least the same size&lt;BR /&gt;as in your original root VG:&lt;BR /&gt;# lvcreate vgroot&lt;BR /&gt;# lvextend -L 500 /dev/vgroot/lvol4&lt;BR /&gt;...&lt;BR /&gt;5. Create the file systems:&lt;BR /&gt;# newfs -F hfs /dev/vgroot/rlvol1&lt;BR /&gt;# newfs -F vxfs /dev/vgroot/rlvol3&lt;BR /&gt;# newfs -F vxfs /dev/vgroot/rlvol4&lt;BR /&gt;...&lt;BR /&gt;6. Mount the file systems:&lt;BR /&gt;# mkdir /new_root /new_usr /new_stand â ¦ (Create mount points)&lt;BR /&gt;# mount /dev/vgroot/lvol1 /new_stand&lt;BR /&gt;# mount /dev/vgroot/lvol3 /new_root&lt;BR /&gt;# mount /dev/vgroot/lvol4 /new_usr&lt;BR /&gt;...&lt;BR /&gt;7. Copy the data, e.g. using find(1) with cpio(1):&lt;BR /&gt;# cd /&lt;BR /&gt;# find . -xdev -depth | cpio -pvdlmax /new_root&lt;BR /&gt;# cd /stand&lt;BR /&gt;# find . -xdev -depth | cpio -pvdlmax /new_stand&lt;BR /&gt;# cd /usr&lt;BR /&gt;# find . -xdev -depth | cpio -pvdlmax /new_usr&lt;BR /&gt;...&lt;BR /&gt;Chapter 16 LVM&lt;BR /&gt;July 2003 Chapter 16 / Page 39&lt;BR /&gt;8. Modify the fstab in /new_root/etc. Replace occurences of vg00 with vgroot:&lt;BR /&gt;# vi /new_root/etc/fstab&lt;BR /&gt;/dev/vgroot/lvol1 /stand hfs defaults 0 0 (new boot LV)&lt;BR /&gt;/dev/vgroot/lvol3 / vxfs delaylog 0 0 (new root LV)&lt;BR /&gt;/dev/vgroot/lvol4 /usr vxfs delaylog 0 0 (new /usr LV)&lt;BR /&gt;9. Change the device files for the root disk in /stand/bootconf to c1t1d0:&lt;BR /&gt;# vi /stand/bootconf&lt;BR /&gt;l /dev/dsk/c1t1d0&lt;BR /&gt;10. Configure disk c1t1d0 as boot path in stable storage and boot from it:&lt;BR /&gt;# setboot -b &lt;HW path="" of="" c1t1d0=""&gt;&lt;BR /&gt;# shutdown -r 0&lt;BR /&gt;11. When the system comes up again, backup vgrootâ  s LVM Configuration:&lt;BR /&gt;# vgcfgbackup vgroot&lt;BR /&gt;12. And finally remove the old root VG if desired:&lt;BR /&gt;# vgchange -a n vg00&lt;BR /&gt;# vgexport vg00&lt;BR /&gt;If you like to rename vgroot to vg00:&lt;BR /&gt;1. Boot to LVM maintenance mode:&lt;BR /&gt;ISL&amp;gt; hpux â  lm&lt;BR /&gt;2. Export vgroot and import it as vg00:&lt;BR /&gt;# vgexport vgroot&lt;BR /&gt;# mkdir /dev/vg00&lt;BR /&gt;# mknod /dev/vg00/group c 64 0x000000 (we import vg00 with minor 0)&lt;BR /&gt;# vgimport vg00 /dev/dsk/c1t1d0&lt;BR /&gt;3. Activate vg00 and mount the files ystems:&lt;BR /&gt;# vgchange -a y vg00&lt;BR /&gt;# mount /dev/vg00/lvol3 /&lt;BR /&gt;# mount /dev/vg00/lvol1 /stand&lt;BR /&gt;# mount /dev/vg00/lvol4 /usr&lt;BR /&gt;...&lt;BR /&gt;Chapter 16 LVM&lt;BR /&gt;July 2003 Chapter 16 / Page 40&lt;BR /&gt;4. Modify the fstab. Replace vgroot with vg00 again:&lt;BR /&gt;# vi /etc/fstab&lt;BR /&gt;5. Reboot:&lt;BR /&gt;# shutdown -r 0&lt;/HW&gt;</description>
    <pubDate>Fri, 04 Dec 2009 15:02:32 GMT</pubDate>
    <dc:creator>Javed Khan_1</dc:creator>
    <dc:date>2009-12-04T15:02:32Z</dc:date>
    <item>
      <title>bootable disk replacement</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543533#M369690</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Our customer had an rp4440 server running HPUX 11i v1 (2005).&lt;BR /&gt;The primary and alternate bootable disks (2x73GB) are mirrored using MirrorDisk software.&lt;BR /&gt;The customer wants to replace the above disks by 2x 300GB disks (P/N: AD263A)without re-installing HPUX from scratch.&lt;BR /&gt;What is the safest and fastest procedure to replace the disks and extend the file systems containing data.&lt;BR /&gt;&lt;BR /&gt;Thanks and Regards&lt;BR /&gt;&lt;BR /&gt;Roger</description>
      <pubDate>Thu, 03 Dec 2009 09:00:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543533#M369690</guid>
      <dc:creator>Roro_2</dc:creator>
      <dc:date>2009-12-03T09:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: bootable disk replacement</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543534#M369691</link>
      <description>I think the safe way is ignite.&lt;BR /&gt;&lt;BR /&gt;backup your OS with make_tape_recovery ( if you have dds tape). and restore to 300 GB disk. &lt;BR /&gt;&lt;BR /&gt;after restore complete. you must do mirror for new disk.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Freddy</description>
      <pubDate>Thu, 03 Dec 2009 09:12:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543534#M369691</guid>
      <dc:creator>freddy_21</dc:creator>
      <dc:date>2009-12-03T09:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: bootable disk replacement</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543535#M369692</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;the safest way is to make it from ignite tape/server ( install the new configuration to the new disks )&lt;BR /&gt;&lt;BR /&gt;it could be done online, there is a procedure for this, but you need to destroy the mirror, and from the time you will have SPOF on the HW level ( disks will be not mirrored. ), this procedure isn't officially supported be HP.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;mikap</description>
      <pubDate>Thu, 03 Dec 2009 09:13:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543535#M369692</guid>
      <dc:creator>Michal Kapalka (mikap)</dc:creator>
      <dc:date>2009-12-03T09:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: bootable disk replacement</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543536#M369693</link>
      <description>Hi Roro,&lt;BR /&gt;&lt;BR /&gt;me not much aware about MirrorDisk software specified. But in gerneral senario you can break the mirror and remove the alternate disk then you can insert new disk (300gb) and recreate the mirror. Once shink will be completed you can try to boot the system with alternative disk.&lt;BR /&gt;&lt;BR /&gt;If system boot up properly so you can try same thing with primary disk.&lt;BR /&gt;&lt;BR /&gt;Please note:- file system size remain same.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Viney</description>
      <pubDate>Thu, 03 Dec 2009 09:15:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543536#M369693</guid>
      <dc:creator>Viney Kumar</dc:creator>
      <dc:date>2009-12-03T09:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: bootable disk replacement</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543537#M369694</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;check this link, if you like to extend some file systems online.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.symmetricwebsites.com/articles/HP-UX/hpuxDynamicallyExtendSlashAndOrStand.php" target="_blank"&gt;http://www.symmetricwebsites.com/articles/HP-UX/hpuxDynamicallyExtendSlashAndOrStand.php&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;mikap</description>
      <pubDate>Thu, 03 Dec 2009 09:18:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543537#M369694</guid>
      <dc:creator>Michal Kapalka (mikap)</dc:creator>
      <dc:date>2009-12-03T09:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: bootable disk replacement</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543538#M369695</link>
      <description>Hi Roro,&lt;BR /&gt;&lt;BR /&gt;Best way to do these is ignite. Take ignite backup and restore on the one of the new disks, verfiy and then mirror it to other new disk.</description>
      <pubDate>Thu, 03 Dec 2009 09:20:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543538#M369695</guid>
      <dc:creator>R.K. #</dc:creator>
      <dc:date>2009-12-03T09:20:20Z</dc:date>
    </item>
    <item>
      <title>Re: bootable disk replacement</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543539#M369696</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;1- Using tape drive :&lt;BR /&gt;   - should i break the mirroring &lt;BR /&gt;   - in case we did not break the mirroring &lt;BR /&gt;     could i restore the backup to new disk&lt;BR /&gt;     , extend some file systems and mirror &lt;BR /&gt;       the second new disk.&lt;BR /&gt;&lt;BR /&gt;2- No tape drive :&lt;BR /&gt;    - how can i copy the current disk to new&lt;BR /&gt;      new disks. &lt;BR /&gt;    - should i break the mirroring status&lt;BR /&gt;        &lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Roger&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Dec 2009 09:25:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543539#M369696</guid>
      <dc:creator>Roro_2</dc:creator>
      <dc:date>2009-12-03T09:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: bootable disk replacement</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543540#M369697</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;1- Using tape drive :&lt;BR /&gt;- should i break the mirroring &lt;BR /&gt;- in case we did not break the mirroring &lt;BR /&gt;could i restore the backup to new disk&lt;BR /&gt;, extend some file systems and mirror &lt;BR /&gt;the second new disk.&lt;BR /&gt;&lt;BR /&gt;if yuo have a tape drive, make a backup to tape, don;t break the mirror, shutdown the server, remove the old original disks, and put there the new 300 GB disks, boot from tape, and use advanced tape of installation.&lt;BR /&gt;&lt;BR /&gt;If you need to make some FS resize changes, you can do it, ( don't orget use only one disk ) and them start the restoration, after the system will be restored, boot the new installed OS from the disk, check the installation, /etc/rc.log ..... use swverify \*, to see if all parts of SW are in good confition. and them mirror the system to the second disk.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;2- No tape drive :&lt;BR /&gt;- how can i copy the current disk to new&lt;BR /&gt;new disks. &lt;BR /&gt;- should i break the mirroring status&lt;BR /&gt;&lt;BR /&gt;plan a downtime for the system, shutdown all app, and them you could break the mirror, lvreduce / vgreduce, and them add your new disk and remirror it.&lt;BR /&gt;&lt;BR /&gt;mikap&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Roger &lt;BR /&gt;</description>
      <pubDate>Thu, 03 Dec 2009 09:33:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543540#M369697</guid>
      <dc:creator>Michal Kapalka (mikap)</dc:creator>
      <dc:date>2009-12-03T09:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: bootable disk replacement</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543541#M369698</link>
      <description>Ok you may try this &lt;BR /&gt;&lt;BR /&gt;c1t1d0 free disk as an example &lt;BR /&gt;&lt;BR /&gt;1. Create a new VG vgroot with c1t1d0:&lt;BR /&gt;# pvcreate -B /dev/rdsk/c1t1d0 (donâ  t forget the â  B option!)&lt;BR /&gt;# mkdir /dev/vgroot&lt;BR /&gt;# ll /dev/*/group (check for unused minor number)&lt;BR /&gt;# mknod /dev/vgroot/group c 64 0x010000&lt;BR /&gt;# vgcreate vgroot /dev/dsk/c1t1d0&lt;BR /&gt;2. Create LVs for boot, swap and root (in that order). Use at least the same size as in&lt;BR /&gt;your original root VG:&lt;BR /&gt;# lvcreate -C y -r n vgroot&lt;BR /&gt;# lvextend -L 100 /dev/vgroot/lvol1 (e.g. 100 MB for /stand)&lt;BR /&gt;# lvcreate -C y -r n vgroot&lt;BR /&gt;# lvextend -L 512 /dev/vgroot/lvol2 (e.g. 512 MB pri. swap)&lt;BR /&gt;# lvcreate -C y -r n vgroot&lt;BR /&gt;# lvextend -L 200 /dev/vgroot/lvol3 (e.g. 200 MB for /)&lt;BR /&gt;3. Configure LIF and BDRA on c1t1d0 (see the LIF/BDRA Configuration Procedure).&lt;BR /&gt;4. Create LVs for /usr, /opt, /var, /tmp, /etc, /home, etc. Use at least the same size&lt;BR /&gt;as in your original root VG:&lt;BR /&gt;# lvcreate vgroot&lt;BR /&gt;# lvextend -L 500 /dev/vgroot/lvol4&lt;BR /&gt;...&lt;BR /&gt;5. Create the file systems:&lt;BR /&gt;# newfs -F hfs /dev/vgroot/rlvol1&lt;BR /&gt;# newfs -F vxfs /dev/vgroot/rlvol3&lt;BR /&gt;# newfs -F vxfs /dev/vgroot/rlvol4&lt;BR /&gt;...&lt;BR /&gt;6. Mount the file systems:&lt;BR /&gt;# mkdir /new_root /new_usr /new_stand â ¦ (Create mount points)&lt;BR /&gt;# mount /dev/vgroot/lvol1 /new_stand&lt;BR /&gt;# mount /dev/vgroot/lvol3 /new_root&lt;BR /&gt;# mount /dev/vgroot/lvol4 /new_usr&lt;BR /&gt;...&lt;BR /&gt;7. Copy the data, e.g. using find(1) with cpio(1):&lt;BR /&gt;# cd /&lt;BR /&gt;# find . -xdev -depth | cpio -pvdlmax /new_root&lt;BR /&gt;# cd /stand&lt;BR /&gt;# find . -xdev -depth | cpio -pvdlmax /new_stand&lt;BR /&gt;# cd /usr&lt;BR /&gt;# find . -xdev -depth | cpio -pvdlmax /new_usr&lt;BR /&gt;...&lt;BR /&gt;Chapter 16 LVM&lt;BR /&gt;July 2003 Chapter 16 / Page 39&lt;BR /&gt;8. Modify the fstab in /new_root/etc. Replace occurences of vg00 with vgroot:&lt;BR /&gt;# vi /new_root/etc/fstab&lt;BR /&gt;/dev/vgroot/lvol1 /stand hfs defaults 0 0 (new boot LV)&lt;BR /&gt;/dev/vgroot/lvol3 / vxfs delaylog 0 0 (new root LV)&lt;BR /&gt;/dev/vgroot/lvol4 /usr vxfs delaylog 0 0 (new /usr LV)&lt;BR /&gt;9. Change the device files for the root disk in /stand/bootconf to c1t1d0:&lt;BR /&gt;# vi /stand/bootconf&lt;BR /&gt;l /dev/dsk/c1t1d0&lt;BR /&gt;10. Configure disk c1t1d0 as boot path in stable storage and boot from it:&lt;BR /&gt;# setboot -b &lt;HW path="" of="" c1t1d0=""&gt;&lt;BR /&gt;# shutdown -r 0&lt;BR /&gt;11. When the system comes up again, backup vgrootâ  s LVM Configuration:&lt;BR /&gt;# vgcfgbackup vgroot&lt;BR /&gt;12. And finally remove the old root VG if desired:&lt;BR /&gt;# vgchange -a n vg00&lt;BR /&gt;# vgexport vg00&lt;BR /&gt;If you like to rename vgroot to vg00:&lt;BR /&gt;1. Boot to LVM maintenance mode:&lt;BR /&gt;ISL&amp;gt; hpux â  lm&lt;BR /&gt;2. Export vgroot and import it as vg00:&lt;BR /&gt;# vgexport vgroot&lt;BR /&gt;# mkdir /dev/vg00&lt;BR /&gt;# mknod /dev/vg00/group c 64 0x000000 (we import vg00 with minor 0)&lt;BR /&gt;# vgimport vg00 /dev/dsk/c1t1d0&lt;BR /&gt;3. Activate vg00 and mount the files ystems:&lt;BR /&gt;# vgchange -a y vg00&lt;BR /&gt;# mount /dev/vg00/lvol3 /&lt;BR /&gt;# mount /dev/vg00/lvol1 /stand&lt;BR /&gt;# mount /dev/vg00/lvol4 /usr&lt;BR /&gt;...&lt;BR /&gt;Chapter 16 LVM&lt;BR /&gt;July 2003 Chapter 16 / Page 40&lt;BR /&gt;4. Modify the fstab. Replace vgroot with vg00 again:&lt;BR /&gt;# vi /etc/fstab&lt;BR /&gt;5. Reboot:&lt;BR /&gt;# shutdown -r 0&lt;/HW&gt;</description>
      <pubDate>Fri, 04 Dec 2009 15:02:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543541#M369698</guid>
      <dc:creator>Javed Khan_1</dc:creator>
      <dc:date>2009-12-04T15:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: bootable disk replacement</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543542#M369699</link>
      <description>Hi Javed,&lt;BR /&gt;&lt;BR /&gt;Thank you very much for your concern.&lt;BR /&gt;&lt;BR /&gt;Could you tell me how to configure LIF and BDRA  on the new disk.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Roger&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Dec 2009 11:16:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543542#M369699</guid>
      <dc:creator>Roro_2</dc:creator>
      <dc:date>2009-12-07T11:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: bootable disk replacement</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543543#M369700</link>
      <description>HI Roger,&lt;BR /&gt;&lt;BR /&gt;1.  Write LIF header and LIF files (ISL, AUTO, HPUX, LABEL):&lt;BR /&gt;# mkboot -l /dev/rdsk/cXtXdX&lt;BR /&gt;# lifls -l /dev/rdsk/cXtXdX  &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;2.  Write content of AUTO File: &lt;BR /&gt;# mkboot -a hpux /dev/rdsk/cXtXdX&lt;BR /&gt;# mkboot -a "hpux -lq" /dev/rdsk/cXtXdX&lt;BR /&gt;# lifcp /dev/rdsk/cXtXdX:AUTO -  &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;3.  Write content of LABEL file, i.e set root, boot, swap and dump device: &lt;BR /&gt;To be sure to have the latest information on the disk just do the &lt;BR /&gt;following steps. &lt;BR /&gt;# lvlnboot -r /dev/&lt;ROOTVG&gt;/lvol3&lt;BR /&gt;# lvlnboot -b /dev/&lt;ROOTVG&gt;/lvol1&lt;BR /&gt;# lvlnboot -s /dev/&lt;ROOTVG&gt;/lvol2&lt;BR /&gt;# lvlnboot -d /dev/&lt;ROOTVG&gt;/lvol2&lt;BR /&gt;# lvlnboot -v   (to ckeck it)&lt;/ROOTVG&gt;&lt;/ROOTVG&gt;&lt;/ROOTVG&gt;&lt;/ROOTVG&gt;</description>
      <pubDate>Mon, 07 Dec 2009 11:36:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bootable-disk-replacement/m-p/4543543#M369700</guid>
      <dc:creator>R.K. #</dc:creator>
      <dc:date>2009-12-07T11:36:02Z</dc:date>
    </item>
  </channel>
</rss>

