<?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: lvextend / - root file system in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583622#M618779</link>
    <description>Ok, I'll assume the free-extents all range in sequence, but maybe some-day they don't.&lt;BR /&gt;&lt;BR /&gt;here's your comments:&lt;BR /&gt;&lt;BR /&gt;lvextend the / filesystem to the desired size as needed as long as there are enough free extents available.&lt;BR /&gt;&lt;BR /&gt;lvextend -l 55 /dev/vg00/lvol3&lt;BR /&gt;fsadm -F vxfs -b 220M /&lt;BR /&gt;&lt;BR /&gt;What might be a real test, Robert, is running IGNITE and see if you can Recover the file-systems that require the Contiguous Extents ;-)</description>
    <pubDate>Fri, 12 Aug 2005 21:50:58 GMT</pubDate>
    <dc:creator>D Block 2</dc:creator>
    <dc:date>2005-08-12T21:50:58Z</dc:date>
    <item>
      <title>lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583604#M618761</link>
      <description>I was getting errors when trying to reply to bachphan's thread - so I thought I'd start this one in hopes of helping.&lt;BR /&gt;&lt;BR /&gt;I just had to come up with a way to do  this the other day - and it worked!  Check these steps out.&lt;BR /&gt;&lt;BR /&gt;1. bdf  - note the lvol that / is mounted on (normally /dev/vg00/lvol3)&lt;BR /&gt;           note the next mount point that is mounted on the next lvol (ex. /tmp - lvol4)&lt;BR /&gt;&lt;BR /&gt;2. vgdisplay -v vg00  - note the number of lvol's and the physical volumes of vg00.&lt;BR /&gt;&lt;BR /&gt; ex.  8 lvol's &lt;BR /&gt;&lt;BR /&gt;   --- Physical volumes ---&lt;BR /&gt;   PV Name                     /dev/dsk/c0t5d0&lt;BR /&gt;   PV Status                   available                &lt;BR /&gt;   Total PE                    2169    &lt;BR /&gt;   Free PE                     447     &lt;BR /&gt;   Autoswitch                  On        &lt;BR /&gt;&lt;BR /&gt;   PV Name                     /dev/dsk/c0t8d0&lt;BR /&gt;   PV Status                   available                &lt;BR /&gt;   Total PE                    2169    &lt;BR /&gt;   Free PE                     447     &lt;BR /&gt;   Autoswitch                  On        &lt;BR /&gt;&lt;BR /&gt;3. Remove the mirrors off the second physical volume.&lt;BR /&gt; &lt;BR /&gt; for i in 1 2 3 4 5 6 7 8 &lt;BR /&gt; do&lt;BR /&gt; lvreduce -m 0 /dev/vg00/lvol$i /dev/dsk/c0t8d0&lt;BR /&gt; done&lt;BR /&gt;&lt;BR /&gt;4. Move the next contiguous lvol from primary OS disk to "mirror" disk&lt;BR /&gt; &lt;BR /&gt; pvmove -n /dev/vg00/lvol4 /dev/dsk/c0t5d0 /dev/dsk/c0t8d0&lt;BR /&gt;&lt;BR /&gt;5. Ensure that you have freed up the logical extents after the / lvol. (ex. lvol3 )&lt;BR /&gt;&lt;BR /&gt; pvdisplay -v /dev/dsk/c0t5d0 | more&lt;BR /&gt;&lt;BR /&gt; 01563 current  /dev/vg00/lvol3    00020 &lt;BR /&gt;   01564 current  /dev/vg00/lvol3    00021 &lt;BR /&gt;   01565 current  /dev/vg00/lvol3    00022 &lt;BR /&gt;   01566 current  /dev/vg00/lvol3    00023 &lt;BR /&gt;   01567 current  /dev/vg00/lvol3    00024 &lt;BR /&gt;   01568 free                        00000 &lt;BR /&gt;   01569 free                        00000 &lt;BR /&gt;   01570 free                        00000 &lt;BR /&gt;   01571 free                        00000 &lt;BR /&gt;   01572 free                        00000 &lt;BR /&gt;   01573 free                        00000 &lt;BR /&gt;   01574 free                        00000 &lt;BR /&gt;   01575 free                        00000&lt;BR /&gt;&lt;BR /&gt;6. Ensure that the / lvol is strict and contiguous.&lt;BR /&gt;&lt;BR /&gt; lvdisplay /dev/vg00/lvol3&lt;BR /&gt;&lt;BR /&gt; --- Logical volumes ---&lt;BR /&gt;LV Name                     /dev/vg00/lvol3&lt;BR /&gt;VG Name                     /dev/vg00&lt;BR /&gt;LV Permission               read/write   &lt;BR /&gt;LV Status                   available/syncd           &lt;BR /&gt;Mirror copies               1            &lt;BR /&gt;Consistency Recovery        MWC                 &lt;BR /&gt;Schedule                    parallel     &lt;BR /&gt;LV Size (Mbytes)            200             &lt;BR /&gt;Current LE                  50        &lt;BR /&gt;Allocated PE                110         &lt;BR /&gt;Stripes                     0       &lt;BR /&gt;Stripe Size (Kbytes)        0                   &lt;BR /&gt;Bad block                   off          &lt;BR /&gt;Allocation                  strict/contiguous         &lt;BR /&gt;IO Timeout (Seconds)        default             &lt;BR /&gt;&lt;BR /&gt;7. lvextend the / filesystem to the desired size as needed as long as there are enough free extents available.&lt;BR /&gt;&lt;BR /&gt;  lvextend -l 55 /dev/vg00/lvol3&lt;BR /&gt;  fsadm -F vxfs -b 220M /&lt;BR /&gt;&lt;BR /&gt;8. Move the previously moved lvol back from the mirrored disk to the primary disk.&lt;BR /&gt;&lt;BR /&gt; pvmove -n /dev/vg00/lvol4 /dev/dsk/c0t8d0 /dev/dsk/c0t5d0&lt;BR /&gt;&lt;BR /&gt;9. vgdisplay -v vg00  - ensure that everything is mounted on the primary OS disk and that the mirror disk is empty&lt;BR /&gt;&lt;BR /&gt;   --- Physical volumes ---&lt;BR /&gt;   PV Name                     /dev/dsk/c0t5d0&lt;BR /&gt;   PV Status                   available                &lt;BR /&gt;   Total PE                    2169    &lt;BR /&gt;   Free PE                     447     &lt;BR /&gt;   Autoswitch                  On        &lt;BR /&gt;&lt;BR /&gt;   PV Name                     /dev/dsk/c0t8d0&lt;BR /&gt;   PV Status                   available                &lt;BR /&gt;   Total PE                    2169    &lt;BR /&gt;   Free PE                     2169     &lt;BR /&gt;   Autoswitch                  On       &lt;BR /&gt;&lt;BR /&gt;10. Mirror all the lvol's back to the mirrored disk.&lt;BR /&gt;&lt;BR /&gt; for i in 1 2 3 4 5 6 7 8&lt;BR /&gt; do&lt;BR /&gt; lvextend -m 1 /dev/dsk/lvol$i /dev/dsk/c0t8d0&lt;BR /&gt; done&lt;BR /&gt;&lt;BR /&gt;11. vgdisplay -v vg00  - ensure that all lvol’s are mirrored.&lt;BR /&gt;&lt;BR /&gt;    --- Physical volumes ---&lt;BR /&gt;   PV Name                     /dev/dsk/c0t5d0&lt;BR /&gt;   PV Status                   available                &lt;BR /&gt;   Total PE                    2169    &lt;BR /&gt;   Free PE                     447     &lt;BR /&gt;   Autoswitch                  On        &lt;BR /&gt;&lt;BR /&gt;   PV Name                     /dev/dsk/c0t8d0&lt;BR /&gt;   PV Status                   available                &lt;BR /&gt;   Total PE                    2169    &lt;BR /&gt;   Free PE                     447     &lt;BR /&gt;   Autoswitch                  On       &lt;BR /&gt; &lt;BR /&gt;</description>
      <pubDate>Fri, 15 Jul 2005 07:56:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583604#M618761</guid>
      <dc:creator>Robert Bennett_3</dc:creator>
      <dc:date>2005-07-15T07:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583605#M618762</link>
      <description>This is an excellent solution Robert,&lt;BR /&gt;I wish there was a way to award points to the  author of the question.&lt;BR /&gt;good job &lt;BR /&gt;DP</description>
      <pubDate>Fri, 15 Jul 2005 08:17:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583605#M618762</guid>
      <dc:creator>Devesh Pant_1</dc:creator>
      <dc:date>2005-07-15T08:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583606#M618763</link>
      <description>Thanks -&lt;BR /&gt;&lt;BR /&gt;Acknowledgement from my peers is good enough for me. ;-}</description>
      <pubDate>Fri, 15 Jul 2005 08:21:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583606#M618763</guid>
      <dc:creator>Robert Bennett_3</dc:creator>
      <dc:date>2005-07-15T08:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583607#M618764</link>
      <description>/opt/ignite/bin/make_tape_recovery -a /dev/rmt/0mn -I -v -x inc_entire=vg00 &lt;BR /&gt;&lt;BR /&gt;Boot to Tape&lt;BR /&gt;Choose new size for filesystems&lt;BR /&gt;Install OS&lt;BR /&gt;&lt;BR /&gt;Remirror Root&lt;BR /&gt;&lt;BR /&gt;Be Happy you just saved allot of time :).</description>
      <pubDate>Fri, 15 Jul 2005 08:22:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583607#M618764</guid>
      <dc:creator>generic_1</dc:creator>
      <dc:date>2005-07-15T08:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583608#M618765</link>
      <description>Robert,&lt;BR /&gt;&lt;BR /&gt;In relation to the corresponding thread the only problem in implementing this solution was that there the disk did not had any free extents, which was required as you need to adjust back the moved LVOL within the same disk without resizing. So it requires atleast one file system to be reduced prior to moving back the LVOL back to this disk.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Devender</description>
      <pubDate>Sat, 16 Jul 2005 07:56:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583608#M618765</guid>
      <dc:creator>Devender Khatana</dc:creator>
      <dc:date>2005-07-16T07:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583609#M618766</link>
      <description>Robert,&lt;BR /&gt;&lt;BR /&gt;very cool,&lt;BR /&gt;&lt;BR /&gt;what does Mirror Copies of 1 imply after&lt;BR /&gt;reducing the mirrors?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;your step 6 here:&lt;BR /&gt;6. Ensure that the / lvol is strict and contiguous.&lt;BR /&gt;&lt;BR /&gt;lvdisplay /dev/vg00/lvol3&lt;BR /&gt;&lt;BR /&gt;--- Logical volumes ---&lt;BR /&gt;LV Name /dev/vg00/lvol3&lt;BR /&gt;VG Name /dev/vg00&lt;BR /&gt;LV Permission read/write &lt;BR /&gt;LV Status available/syncd &lt;BR /&gt;Mirror copies 1              &amp;lt;--- '1' ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 17 Jul 2005 17:17:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583609#M618766</guid>
      <dc:creator>D Block 2</dc:creator>
      <dc:date>2005-07-17T17:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583610#M618767</link>
      <description>Hi Robert,&lt;BR /&gt;&lt;BR /&gt;The steps will be work, but these steps is not supported by HP. So if there's a problem during extend the root (/) file system, it will get worse.&lt;BR /&gt;&lt;BR /&gt;My recommendation is to use Ignite/UX to solve the problem, for more details about Ignite/UX check the url below :&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/en/IUX/" target="_blank"&gt;http://www.docs.hp.com/en/IUX/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this information can help you.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;AW</description>
      <pubDate>Sun, 17 Jul 2005 20:49:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583610#M618767</guid>
      <dc:creator>Adisuria Wangsadinata_1</dc:creator>
      <dc:date>2005-07-17T20:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583611#M618768</link>
      <description>*** Warning ***&lt;BR /&gt;I've done essentially the same procedure, which worked great while running. IIRC we had problems on the subsequent reboot which probably could have been avoided by:&lt;BR /&gt;&lt;BR /&gt;#lvlnboot -R&lt;BR /&gt;&lt;BR /&gt;Unfortunately, I wasn't present at the reboot and my co-worker doesn't recall all the incantations prescribed by HP Response Center when the system didn't want to come back up.</description>
      <pubDate>Mon, 18 Jul 2005 08:22:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583611#M618768</guid>
      <dc:creator>Kirby A. Joss</dc:creator>
      <dc:date>2005-07-18T08:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583612#M618769</link>
      <description>Thanks for all the feedback.&lt;BR /&gt;&lt;BR /&gt;The mirror copy of 1 is just that - the lvol's are mirrored to begin with, nothing more.&lt;BR /&gt;&lt;BR /&gt;Thanks for the heads up on the reboot.  I have not rebooted this box yet - I was tasked with extending / without having to reboot - so that's what I did.  Luckily I did this to a test box ( an old D350) so I will research the lvlnboot -R command and apply as needed and reboot.  &lt;BR /&gt;&lt;BR /&gt;I'll report my findings.&lt;BR /&gt;&lt;BR /&gt;PS - I was on vacation for a week and was pleasantly surprised by the respones.</description>
      <pubDate>Mon, 25 Jul 2005 11:21:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583612#M618769</guid>
      <dc:creator>Robert Bennett_3</dc:creator>
      <dc:date>2005-07-25T11:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583613#M618770</link>
      <description>I ran lvlnboot -R /dev/vg00&lt;BR /&gt;&lt;BR /&gt;then I rebooted - long 8 minutes - but everythings up and running fine, no problems.&lt;BR /&gt;&lt;BR /&gt;I'm not sure I needed to run the lvlnboot -R , as the man page says that starting with HP-UX Release 10.0, this is done automatically.  &lt;BR /&gt;&lt;BR /&gt;Better safe than sorry though ;-}&lt;BR /&gt;&lt;BR /&gt;If anyone has a test box that they can play with - give this a shot - it worked for me.&lt;BR /&gt;&lt;BR /&gt;BTW - the reason we had to extend / was because of our /etc/lvmconf - so many volume groups and actually had to remove the .old's as a bandaid solution until we could extend /.</description>
      <pubDate>Mon, 25 Jul 2005 12:04:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583613#M618770</guid>
      <dc:creator>Robert Bennett_3</dc:creator>
      <dc:date>2005-07-25T12:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583614#M618771</link>
      <description>At our site the /etc/lvmconf directorys also grow over our heads after a new standard defined -s 256 -e 65535 -p 255 or something along those lines.&lt;BR /&gt;&lt;BR /&gt;two things (one will make Your neck hair stand up!)&lt;BR /&gt;&lt;BR /&gt;- we went down to -s 256 -e 5000 -p 35 and feel this is really sufficient&lt;BR /&gt;- I was helping out at a friend's site when I noticed they had /etc/lvmconf as a lvol of it's own! to my great surprise it really works, even though I couldn't try booting to hpux -lm.&lt;BR /&gt;(it was suggested by their HP onsite consultant, they said. but...)</description>
      <pubDate>Mon, 25 Jul 2005 12:24:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583614#M618771</guid>
      <dc:creator>Florian Heigl (new acc)</dc:creator>
      <dc:date>2005-07-25T12:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583615#M618772</link>
      <description>Robert,&lt;BR /&gt;&lt;BR /&gt;We were very interested in your procedure, beliving that make recovery was the ONLY process to extend /.  Now it may be the only SUPPORTED way but it truly is an interesting approach.&lt;BR /&gt;&lt;BR /&gt;What we are asuming is that you have online JFS as part of your software package. &lt;BR /&gt;&lt;BR /&gt;We attempted your procedure, in part as our sandbox machine doesn't have mirroring, with a non vg00 lvol.&lt;BR /&gt;&lt;BR /&gt;We were able to get the extendfs to be accepted, could not understand the fsadm command as ours doesn't have the "-b 220M" options so we tried extendfs and it of course said that the lvol had to be unmounted before it would extend the file system.&lt;BR /&gt;&lt;BR /&gt;Is the assumption correct that you do have OLJFS running.&lt;BR /&gt;&lt;BR /&gt;Thanks for a reply.&lt;BR /&gt;&lt;BR /&gt;regards</description>
      <pubDate>Thu, 28 Jul 2005 13:39:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583615#M618772</guid>
      <dc:creator>Charles Holland</dc:creator>
      <dc:date>2005-07-28T13:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583616#M618773</link>
      <description>In order to user fsadm on a mounted file system you would need to have online jfs installed and working.</description>
      <pubDate>Thu, 28 Jul 2005 14:42:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583616#M618773</guid>
      <dc:creator>Alain Tesserot</dc:creator>
      <dc:date>2005-07-28T14:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583617#M618774</link>
      <description>Correct - we have onlineJFS - &lt;BR /&gt;&lt;BR /&gt;Sorry - but I've been out of touch fo a while and just saw that there were more replies to this.&lt;BR /&gt;&lt;BR /&gt;I have done this to a few of our servers now and am confident in this procedure - have at it!</description>
      <pubDate>Wed, 03 Aug 2005 11:24:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583617#M618774</guid>
      <dc:creator>Robert Bennett_3</dc:creator>
      <dc:date>2005-08-03T11:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583618#M618775</link>
      <description>I like it Robert - the approach is aimed at getting the space from the next lvol (lvol4 in this case) on the drive for the root lvol (lvol3).&lt;BR /&gt;&lt;BR /&gt;Which makes me wonder - should one consider migrating root to be the LAST lvol on the disk instead of the third?  Then all the headroom would ever want to extend root would be available.&lt;BR /&gt;&lt;BR /&gt;Create a new lvol in vg00&lt;BR /&gt;dd lvol3 to the new lvol&lt;BR /&gt;fix everything up with lvlnboot&lt;BR /&gt;fix the /etc/fstab&lt;BR /&gt;&lt;BR /&gt;Reboot .&lt;BR /&gt;&lt;BR /&gt;Wouldn't that work ?&lt;BR /&gt;</description>
      <pubDate>Wed, 03 Aug 2005 11:39:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583618#M618775</guid>
      <dc:creator>TwoProc</dc:creator>
      <dc:date>2005-08-03T11:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583619#M618776</link>
      <description>LVOL1, 2 and 3 (/stand, pri swap and /) have to be the first on the disk I believe.  Not only must they be defined with contiguous extents, but I believe they have to be contiguous to each other as well.&lt;BR /&gt;&lt;BR /&gt;If you move / to be the last LV in /, I think you would break your machine and render it unbootable.</description>
      <pubDate>Wed, 03 Aug 2005 11:44:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583619#M618776</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2005-08-03T11:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583620#M618777</link>
      <description>Interesting thoughts.  &lt;BR /&gt;&lt;BR /&gt;I'd have to experiment and more so - have time to experiment with that one.  But, in the mean time, try this procedure should you need need to extend /.</description>
      <pubDate>Wed, 03 Aug 2005 11:58:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583620#M618777</guid>
      <dc:creator>Robert Bennett_3</dc:creator>
      <dc:date>2005-08-03T11:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583621#M618778</link>
      <description>You're probably right Patrick - but the thought came from re-examining the output from lvlnboot:&lt;BR /&gt;&lt;BR /&gt;Boot Definitions for Volume Group /dev/vg00:&lt;BR /&gt;Physical Volumes belonging in Root Volume Group:&lt;BR /&gt;        /dev/dsk/c0t4d0 (8/4.4.0) -- Boot Disk&lt;BR /&gt;        /dev/dsk/c0t5d0 (8/4.5.0) -- Boot Disk&lt;BR /&gt;Boot: lvol1     on:     /dev/dsk/c0t4d0&lt;BR /&gt;                        /dev/dsk/c0t5d0&lt;BR /&gt;Root: lvol4     on:     /dev/dsk/c0t4d0&lt;BR /&gt;                        /dev/dsk/c0t5d0&lt;BR /&gt;&lt;BR /&gt;I can see that boot is on lvol1, and root is on lvol4.  Looks highly movable from here.  I can/could imagine the concept that "Boot:" may not be movable (just seems that it wouldn't be b/c the boot segment would practically require a static place to look to come up at) - but that "Root:" just might be movable - in that goofy, "just maybe" sense.&lt;BR /&gt;&lt;BR /&gt;I'm not sure I'm SOOO curious/bored that I'm determined to tear up a test server to find out, but at least I've had to convince myself not to b/c of other pressing things!  :-)</description>
      <pubDate>Wed, 03 Aug 2005 12:08:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583621#M618778</guid>
      <dc:creator>TwoProc</dc:creator>
      <dc:date>2005-08-03T12:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583622#M618779</link>
      <description>Ok, I'll assume the free-extents all range in sequence, but maybe some-day they don't.&lt;BR /&gt;&lt;BR /&gt;here's your comments:&lt;BR /&gt;&lt;BR /&gt;lvextend the / filesystem to the desired size as needed as long as there are enough free extents available.&lt;BR /&gt;&lt;BR /&gt;lvextend -l 55 /dev/vg00/lvol3&lt;BR /&gt;fsadm -F vxfs -b 220M /&lt;BR /&gt;&lt;BR /&gt;What might be a real test, Robert, is running IGNITE and see if you can Recover the file-systems that require the Contiguous Extents ;-)</description>
      <pubDate>Fri, 12 Aug 2005 21:50:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583622#M618779</guid>
      <dc:creator>D Block 2</dc:creator>
      <dc:date>2005-08-12T21:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend / - root file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583623#M618780</link>
      <description>Robert, thanks for the solution! I had a very simliar solution but with more steps, (wasn't using "pvmove". What makes this oh-so slick is that you don't have to bring the system down to single user mode! I agree that Make_Net_Recovery is the "preferred" method for resizing "root", but in a "high availability" world, that's not always an option!&lt;BR /&gt;Thank you again for the post...&lt;BR /&gt;&lt;BR /&gt;Marty Gardner&lt;BR /&gt;UNIX Sys.Admin.&lt;BR /&gt;NYS Office of Mental Health&lt;BR /&gt;Albany, NY. 12229</description>
      <pubDate>Mon, 15 Aug 2005 11:20:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvextend-root-file-system/m-p/3583623#M618780</guid>
      <dc:creator>Marty Gardner</dc:creator>
      <dc:date>2005-08-15T11:20:29Z</dc:date>
    </item>
  </channel>
</rss>

