<?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 Error installing patch stating not enough space in root in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085312#M309675</link>
    <description>I need a way around this error.  I must install the Gold patch for an oracle upgrade.  When I try installing the Gold patch, it fails the pre-test due to not enough space in root.  We are at 90% in root, but have been there for the last 2 1/2 years, so it really is not a big problem for operating, just installing this darn patch.  Is there any way to install this patch whereas it doesn't need more space in root?  This server runs 24/7 w/no maintenance time, so I'm allowed a bounce every once in a while, but that is about it.&lt;BR /&gt;OS = 11i</description>
    <pubDate>Fri, 12 Oct 2007 07:56:56 GMT</pubDate>
    <dc:creator>TWBSupport</dc:creator>
    <dc:date>2007-10-12T07:56:56Z</dc:date>
    <item>
      <title>Error installing patch stating not enough space in root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085312#M309675</link>
      <description>I need a way around this error.  I must install the Gold patch for an oracle upgrade.  When I try installing the Gold patch, it fails the pre-test due to not enough space in root.  We are at 90% in root, but have been there for the last 2 1/2 years, so it really is not a big problem for operating, just installing this darn patch.  Is there any way to install this patch whereas it doesn't need more space in root?  This server runs 24/7 w/no maintenance time, so I'm allowed a bounce every once in a while, but that is about it.&lt;BR /&gt;OS = 11i</description>
      <pubDate>Fri, 12 Oct 2007 07:56:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085312#M309675</guid>
      <dc:creator>TWBSupport</dc:creator>
      <dc:date>2007-10-12T07:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: Error installing patch stating not enough space in root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085313#M309676</link>
      <description>The question to me is:  why is / at 90%?  What is really taking all that room?  Run "du -sk /* |sort -n" to get a listing of  the biggest consumers.  You'll need to weed out the FS mount points and then take a look at where all your / space is being consumed.  Are there core files in there?  Regular files in /dev?  Big files in /root or wherever root's home directory is?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Fri, 12 Oct 2007 08:05:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085313#M309676</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2007-10-12T08:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Error installing patch stating not enough space in root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085314#M309677</link>
      <description>Look for bigfiles in / with the command&lt;BR /&gt;&lt;BR /&gt;find / -size +100000 -xdev</description>
      <pubDate>Fri, 12 Oct 2007 08:09:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085314#M309677</guid>
      <dc:creator>Luk Vandenbussche</dc:creator>
      <dc:date>2007-10-12T08:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: Error installing patch stating not enough space in root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085315#M309678</link>
      <description>Or, if possible, increase /&lt;BR /&gt;&lt;BR /&gt;Here's how to do it live:&lt;BR /&gt;&lt;BR /&gt;Not for the faint of heart.&lt;BR /&gt;&lt;BR /&gt;No outage required , if you have online jfs. &lt;BR /&gt;If you do not have online jfs , do all the following in LVM maintenance mode.&lt;BR /&gt;Note: this will only work if SWAP is NOT the next lvol after /&lt;BR /&gt;&lt;BR /&gt;a. Login as root.&lt;BR /&gt;b. Find out a free disk or un mirror the rootvg and make that disk free.&lt;BR /&gt;c. find out the next logical volume after lvol3(assumed lvol3 is root)&lt;BR /&gt;d. pvmove that logical volume onto the newly added disk &lt;BR /&gt;[ pvmove -n /dev/vg00/lvol4 /dev/dsk/CURRENT /dev/dsk/NEW]&lt;BR /&gt;e. now you should be able to increase root filesystem to an additional `size_of_the_lvol4`.&lt;BR /&gt;f. pvmove the lvol4 back to root vg ( vg00)&lt;BR /&gt;&lt;BR /&gt;boot,swap and root are the only lvols that needs a contegeous policy. so , it does not matter where lvol4 is.&lt;BR /&gt;&lt;BR /&gt;Example, move lvol4 away from lvol3 , thus creating a contegeous space right after lvol3. If you need more space on "/" you will be able to move lvol5 ...6 to the next disk and do the stuff. Do remember to migrate them back to the original disk.&lt;BR /&gt;&lt;BR /&gt;Now, if you have mirrored root vg, then break the mirror before you do this.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Practical Example (actual test)&lt;BR /&gt;&lt;BR /&gt;# bdf |grep vg00&lt;BR /&gt;/dev/vg00/lvol3     204800  151616   53184   74% /&lt;BR /&gt;/dev/vg00/lvol1     125808   49064   64160   43% /stand&lt;BR /&gt;/dev/vg00/lvol7    4194304 2501208 1680472   60% /var&lt;BR /&gt;/dev/vg00/lvol6    3145728 1856304 1279456   59% /usr&lt;BR /&gt;/dev/vg00/lvol5     524288  160992  361104   31% /tmp&lt;BR /&gt;/dev/vg00/lvol4    2097152 1833496  261656   88% /opt&lt;BR /&gt;/dev/vg00/lvol8    1048576  622656  422632   60% /home&lt;BR /&gt;/dev/vg00/lvol10   2097152 1270980  774595   62% /app&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Find a spare disk:&lt;BR /&gt;&lt;BR /&gt;strings /etc/lvmtab |grep c7t0d6&lt;BR /&gt;pvcreate -f /dev/rdsk/c7t0d6&lt;BR /&gt;vgextend /dev/vg00 /dev/dsk/c7t0d6&lt;BR /&gt;lvdisplay -v /dev/vg00/lvol4 |more&lt;BR /&gt;lvreduce -m 0 /dev/vg00/lvol4&lt;BR /&gt;lvdisplay -v /dev/vg00/lvol4 |more&lt;BR /&gt;pvmove -n /dev/vg00/lvol4 /dev/dsk/c0t6d0 /dev/dsk/c7t0d6&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;lvreduce -m 0 /dev/vg00/lvol3&lt;BR /&gt;lvextend -L 1024 /dev/vg00/lvol3&lt;BR /&gt;fsadm -b 1024M /&lt;BR /&gt;&lt;BR /&gt;pvmove -n /dev/vg00/lvol4 /dev/dsk/c7t0d6 /dev/dsk/c0t6d0&lt;BR /&gt;vgreduce /dev/vg00 /dev/dsk/c7t0d6&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol3&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol4&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# bdf |grep vg00&lt;BR /&gt;/dev/vg00/lvol3    1048576  151640  890456   15% /&lt;BR /&gt;/dev/vg00/lvol1     125808   49064   64160   43% /stand&lt;BR /&gt;/dev/vg00/lvol7    4194304 2506048 1675672   60% /var&lt;BR /&gt;/dev/vg00/lvol6    3145728 1856304 1279456   59% /usr&lt;BR /&gt;/dev/vg00/lvol5     524288  160992  361104   31% /tmp&lt;BR /&gt;/dev/vg00/lvol4    2097152 1833552  261600   88% /opt&lt;BR /&gt;/dev/vg00/lvol8    1048576  622656  422632   60% /home&lt;BR /&gt;/dev/vg00/lvol10   2097152 1270980  774595   62% /app&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Fri, 12 Oct 2007 08:13:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085315#M309678</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2007-10-12T08:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: Error installing patch stating not enough space in root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085316#M309679</link>
      <description>There are no big files in root, already checked that. After just installation 5 years ago, root was at 86% (accepted default 200mb, when I shouldn't have. lesson learned now).</description>
      <pubDate>Fri, 12 Oct 2007 08:16:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085316#M309679</guid>
      <dc:creator>TWBSupport</dc:creator>
      <dc:date>2007-10-12T08:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Error installing patch stating not enough space in root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085317#M309680</link>
      <description>Thanks for the info Geoff, but in order to extend root, I would need considerable amount of downtime.  This is a production server and I am not allowed downtime.  Yes, I know crappy environment, but it's the reality of the exec's decisions.  They would rather play the dice than be safe.</description>
      <pubDate>Fri, 12 Oct 2007 08:18:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085317#M309680</guid>
      <dc:creator>TWBSupport</dc:creator>
      <dc:date>2007-10-12T08:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: Error installing patch stating not enough space in root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085318#M309681</link>
      <description>I forgot to add Geoff, we don't have onlineJFS.  Asked for it 3 years ago and was laughed at because of the cost.</description>
      <pubDate>Fri, 12 Oct 2007 08:19:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085318#M309681</guid>
      <dc:creator>TWBSupport</dc:creator>
      <dc:date>2007-10-12T08:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: Error installing patch stating not enough space in root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085319#M309682</link>
      <description>I'm sorry Geoff, I just reread your suggestion.  I have to admit, I don't have a warm and fuzzy feeling about doing it live.  What exactly is LVM maintenance mode?  Maybe that is a stupid question, but I usually just type the commands or use SAM to perform the tasks.  Is there a specific mode that I can put the system in to be a tad safer in doing this?</description>
      <pubDate>Fri, 12 Oct 2007 08:29:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085319#M309682</guid>
      <dc:creator>TWBSupport</dc:creator>
      <dc:date>2007-10-12T08:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Error installing patch stating not enough space in root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085320#M309683</link>
      <description>Ah - without onlinejfs - you are hosed.&lt;BR /&gt;&lt;BR /&gt;You will need an outage - a perfect example of why the cost for onlinejfs is worth it - any server that is required to be 24/7 should have OnlineJFS - else they are kidding themselves.&lt;BR /&gt;&lt;BR /&gt;lvm maintenace mode is an outage - basically, you boot, interact with IPL, and enter&lt;BR /&gt;hpux -lm&lt;BR /&gt;&lt;BR /&gt;The you can use extendfs, etc to change your lvol sizes...&lt;BR /&gt;&lt;BR /&gt;The other way without onlinjfs is to use ignite - and resize your space - again - another rather long outage....&lt;BR /&gt;&lt;BR /&gt;If I were you, I would take this as an opportunity to justify the cost of OnlineJFS.&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Fri, 12 Oct 2007 08:36:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085320#M309683</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2007-10-12T08:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error installing patch stating not enough space in root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085321#M309684</link>
      <description>&lt;BR /&gt;The only way to complete your task is like Geoff said. I think you will need to use the ignite approach to achive this. This may be a good time to justify why online jfs is needed.&lt;BR /&gt;&lt;BR /&gt;sp,</description>
      <pubDate>Mon, 15 Oct 2007 09:11:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085321#M309684</guid>
      <dc:creator>Sp4admin</dc:creator>
      <dc:date>2007-10-15T09:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: Error installing patch stating not enough space in root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085322#M309685</link>
      <description>You might be able to move large directories off them put them back.  Or have a symlink to another filesystem.&lt;BR /&gt;&lt;BR /&gt;The big directories in /var/adm/sw/save?&lt;BR /&gt;(I have 1.5 Gb in one system.)</description>
      <pubDate>Mon, 15 Oct 2007 22:19:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-installing-patch-stating-not-enough-space-in-root/m-p/4085322#M309685</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-10-15T22:19:06Z</dc:date>
    </item>
  </channel>
</rss>

