<?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: /stand increase in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551862#M642107</link>
    <description>Hi&lt;BR /&gt;&lt;BR /&gt;i belive that the best way to increase /stand is &lt;BR /&gt;to use the recovery tape.&lt;BR /&gt;&lt;BR /&gt;just create the recovery tape,&lt;BR /&gt;then boot from that tape ,and interact with the &lt;BR /&gt;boot process and change the size of /stand from the installation menu.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 13 May 2002 07:53:40 GMT</pubDate>
    <dc:creator>samurai_2</dc:creator>
    <dc:date>2002-05-13T07:53:40Z</dc:date>
    <item>
      <title>/stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551847#M642092</link>
      <description>Hi&lt;BR /&gt;how does it work? I want to increase /stand, but it seems to be very difficult because its contiguous with / and /swap.&lt;BR /&gt;&lt;BR /&gt;I have to do this while updaating from HP-UX 10.20 ti HP-UX 11i.&lt;BR /&gt;&lt;BR /&gt;Thanks for help!&lt;BR /&gt;&lt;BR /&gt;Thomas</description>
      <pubDate>Thu, 12 Jul 2001 11:01:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551847#M642092</guid>
      <dc:creator>Thomas Lepach</dc:creator>
      <dc:date>2001-07-12T11:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: /stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551848#M642093</link>
      <description>make_recovery is only way.</description>
      <pubDate>Thu, 12 Jul 2001 11:10:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551848#M642093</guid>
      <dc:creator>Vincenzo Restuccia</dc:creator>
      <dc:date>2001-07-12T11:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: /stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551849#M642094</link>
      <description>Hi Thomas:&lt;BR /&gt;&lt;BR /&gt;First, aside from moving from 10.20 to 11.x, the only sanctioned method for resizing /stand is to use Ignite make_tape_recovery.  This is guarenteed to work.&lt;BR /&gt;&lt;BR /&gt;Since you indicate that you *are* moving from 10.20 to 11.x, I would urge you to consider doing a cold install.  This will afford you the natural choice to size your filesystems the way you see fit.  The general experience/consensus of the Forum is that cold-installs are preferred over upgrades.&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 12 Jul 2001 11:14:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551849#M642094</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2001-07-12T11:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: /stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551850#M642095</link>
      <description>hi ,&lt;BR /&gt;&lt;BR /&gt;Assumptions,&lt;BR /&gt;&lt;BR /&gt;01. You are not just an "HP kid" who will play with ignite like stuff.&lt;BR /&gt;&lt;BR /&gt;02. You like taking some risk &amp;amp; saving your valuable time&lt;BR /&gt;&lt;BR /&gt;Size of /dev/vg00/lvol1 is A (boot or /stand or /dev/vg00/lvol1)&lt;BR /&gt;&lt;BR /&gt;Size of /dev/vg00/lvol2 is B (swap or /dev/vg00/lvol2)&lt;BR /&gt;&lt;BR /&gt;You wanna increase size of lvol1 from A to A+X (where X is not more than B - "physical memory installed in your machine")&lt;BR /&gt;&lt;BR /&gt;Basically we have to decrease size of swap to increase boot as they are contigous.&lt;BR /&gt;&lt;BR /&gt;Now Extending /stand is an easy job which can be performed in 10-15 minutes.&lt;BR /&gt;&lt;BR /&gt;Steps&lt;BR /&gt;&lt;BR /&gt;01. Boot your machine in LVM maintenance mode&lt;BR /&gt;(hpux -lm at ISL&amp;gt;)&lt;BR /&gt;&lt;BR /&gt;#rm /etc/mnttab&lt;BR /&gt;#vgchange -a y /dev/vg00&lt;BR /&gt;#lvrmboot -r /dev/vg00&lt;BR /&gt;#lvremove /dev/vg00/lvol2&lt;BR /&gt;#lvextend -L "A+X" /dev/vg00/lvol1&lt;BR /&gt;#extendfs /dev/vg00/rlvol1&lt;BR /&gt;#lvcreate -L "B-(X+10)" -C y -r n -n lvol2 /dev/vg00&lt;BR /&gt;#lvlnboot -b /dev/vg00/lvol1&lt;BR /&gt;#lvlnboot -r /dev/vg00/lvol3&lt;BR /&gt;#lvlnboot -s /dev/vg00/lvol2&lt;BR /&gt;#lvlnboot -d /dev/vg00/lvol2&lt;BR /&gt;#reboot -r&lt;BR /&gt;&lt;BR /&gt;You have your /stand extended now&lt;BR /&gt;&lt;BR /&gt;This is a working solution i have tried &amp;amp; found success&lt;BR /&gt;&lt;BR /&gt;Best of luck&lt;BR /&gt;&lt;BR /&gt;Come back to me if you are still scared&lt;BR /&gt;&lt;BR /&gt;kaps&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Jul 2001 14:01:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551850#M642095</guid>
      <dc:creator>KapilRaj</dc:creator>
      <dc:date>2001-07-12T14:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: /stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551851#M642096</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;What do you say ?. Did you give a try ?. If not, y not ?. Any logical errors in my way of doing it ?. Tell me guys so that i can correct it.&lt;BR /&gt;&lt;BR /&gt;kaps&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Jul 2001 03:13:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551851#M642096</guid>
      <dc:creator>KapilRaj</dc:creator>
      <dc:date>2001-07-13T03:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: /stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551852#M642097</link>
      <description>hi thomas&lt;BR /&gt;&lt;BR /&gt;kapil is right, it works. Just u have to compromise a little bit of ur swap space..&lt;BR /&gt;u can create secondary swap to compensate.. in case u need it..&lt;BR /&gt;&lt;BR /&gt;it works well..&lt;BR /&gt;&lt;BR /&gt;if u want to be very safe.. u cud keep a golden image before trying it out.. assuming u hv the resources..&lt;BR /&gt;&lt;BR /&gt;best wishes&lt;BR /&gt;&lt;BR /&gt;sridhar&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Jul 2001 14:15:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551852#M642097</guid>
      <dc:creator>Sridhar Venkataramu</dc:creator>
      <dc:date>2001-07-13T14:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: /stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551853#M642098</link>
      <description>Hello &lt;BR /&gt;&lt;BR /&gt;The solution given by Kapil should work looks logical, Also if you have same amount of free contiguous space as your swap size in VG00 then I think you need not even worry about giving up that small poriton of swap space to extend /stand as lvrceate should use that free space to create the new swap area.&lt;BR /&gt;&lt;BR /&gt;Goodluck</description>
      <pubDate>Fri, 13 Jul 2001 14:48:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551853#M642098</guid>
      <dc:creator>Ajitkumar Rane</dc:creator>
      <dc:date>2001-07-13T14:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: /stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551854#M642099</link>
      <description>Hi Thomas,&lt;BR /&gt;&lt;BR /&gt;You can try this.&lt;BR /&gt;Make a make recovery before, OK !&lt;BR /&gt;Later :&lt;BR /&gt;&lt;BR /&gt;If you need more space in /stand look and see if you have more than one copy of vmunix. Look for a vmunix.prev and if you are VERY SURE that your current kernel is stable, you can remove vmunix.prev or any other backup copies that may be there.&lt;BR /&gt;&lt;BR /&gt;I Hope this help.&lt;BR /&gt;&lt;BR /&gt;Regrads,&lt;BR /&gt;&lt;BR /&gt;Abel Berger&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Jul 2001 16:44:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551854#M642099</guid>
      <dc:creator>Abel Berger</dc:creator>
      <dc:date>2001-07-30T16:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: /stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551855#M642100</link>
      <description>Hi Kapil,&lt;BR /&gt;Thanks. I have never thought about it. Great!!.&lt;BR /&gt;&lt;BR /&gt;Sachin&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Jul 2001 17:44:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551855#M642100</guid>
      <dc:creator>Sachin Patel</dc:creator>
      <dc:date>2001-07-30T17:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: /stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551856#M642101</link>
      <description>Hi Thomas,&lt;BR /&gt;&lt;BR /&gt;If you following Kapil's logic, you have to do lvlnboot -R before executing the reboot command.&lt;BR /&gt;&lt;BR /&gt;ie., ...&lt;BR /&gt;&lt;BR /&gt;#lvlnboot for boot, root, swap and dump.&lt;BR /&gt;&lt;BR /&gt;#lvlnboot -R&lt;BR /&gt;to update BDRA.&lt;BR /&gt; &lt;BR /&gt;then&lt;BR /&gt;#reboot.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;N.Harinath.</description>
      <pubDate>Tue, 31 Jul 2001 09:33:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551856#M642101</guid>
      <dc:creator>Harinath N</dc:creator>
      <dc:date>2001-07-31T09:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: /stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551857#M642102</link>
      <description>Just a quick question, since I need to increase /stand for an update from 11.0 to 11i. &lt;BR /&gt;&lt;BR /&gt;In Kaps reply it states:&lt;BR /&gt;lvcreate -L "B-(X+10)" -C y -r n -n lvol2 /dev/vg00&lt;BR /&gt;&lt;BR /&gt;My question is - what is the 10MB cushion for? (X+10)&lt;BR /&gt;&lt;BR /&gt;1 more question - The last post to this message states you need to do a lvlnboot -R (Recover any missing links to all of the logical volumes specified in the Boot Data Reserved Area and update the Boot Data Reserved Area of each bootable physical volume in the volume group) before the reboot, is this correct - no one has replied since then so I wasn't sure.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Lisa</description>
      <pubDate>Tue, 09 Apr 2002 13:59:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551857#M642102</guid>
      <dc:creator>Lisa  Mauer</dc:creator>
      <dc:date>2002-04-09T13:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: /stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551858#M642103</link>
      <description>&lt;BR /&gt;Yes, lvlnboot -R needs to be run whenever we update/change the boot record.&lt;BR /&gt;&lt;BR /&gt;regarding the 10Mb cushion, i guess it may have to do with accomodating any headers/extra space which the lvcreate command takes. &lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;raj</description>
      <pubDate>Tue, 09 Apr 2002 14:04:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551858#M642103</guid>
      <dc:creator>Roger Baptiste</dc:creator>
      <dc:date>2002-04-09T14:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: /stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551859#M642104</link>
      <description>I ran the instructions from kaps on increasing /stand and everything worked perfectly with the minor exception of removing /etc/mnttab, I did - but when you get to extendfs - it requires mnttab. I would suggest not removing the file OR if you do, before the extendfs, "mount /usr" run bdf "umount /usr" then run extendfs. I also added lvlnboot -R right before the reboot.&lt;BR /&gt;One other piece of advice - DO NOT BACK SPACE in any of your commands, the command will fail, it looks like the command failed due to an error, not because of a backspace.&lt;BR /&gt;It took me about 30 - 40 minutes start to finish.</description>
      <pubDate>Thu, 11 Apr 2002 19:38:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551859#M642104</guid>
      <dc:creator>Lisa  Mauer</dc:creator>
      <dc:date>2002-04-11T19:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: /stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551860#M642105</link>
      <description>You need to remove your swap, extend /stand then recreate the swap space. Of couse you will loss some of your swap space.&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Apr 2002 15:43:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551860#M642105</guid>
      <dc:creator>hpuxrox</dc:creator>
      <dc:date>2002-04-12T15:43:18Z</dc:date>
    </item>
    <item>
      <title>Re: /stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551861#M642106</link>
      <description>Hi THomas,&lt;BR /&gt;as you are planning to upgrade to hp-ux 11i, it wil be a best choice you can cold install HP-UX 11i and select your choice of filesystem sizes during installation.&lt;BR /&gt;&lt;BR /&gt;Otherwise , upgrade will be more cumbersome.....and will take hours to resolv if any problem arises...&lt;BR /&gt;&lt;BR /&gt;-pap&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Apr 2002 16:07:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551861#M642106</guid>
      <dc:creator>pap</dc:creator>
      <dc:date>2002-04-12T16:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: /stand increase</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551862#M642107</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;i belive that the best way to increase /stand is &lt;BR /&gt;to use the recovery tape.&lt;BR /&gt;&lt;BR /&gt;just create the recovery tape,&lt;BR /&gt;then boot from that tape ,and interact with the &lt;BR /&gt;boot process and change the size of /stand from the installation menu.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 13 May 2002 07:53:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stand-increase/m-p/2551862#M642107</guid>
      <dc:creator>samurai_2</dc:creator>
      <dc:date>2002-05-13T07:53:40Z</dc:date>
    </item>
  </channel>
</rss>

