<?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: Expand /usr in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060107#M436571</link>
    <description>Thank you all for the prompt reply.  Problem solved.</description>
    <pubDate>Thu, 26 Jul 2007 15:05:18 GMT</pubDate>
    <dc:creator>Peter Chuang</dc:creator>
    <dc:date>2007-07-26T15:05:18Z</dc:date>
    <item>
      <title>Expand /usr</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060101#M436565</link>
      <description>my /usr is 100% full&lt;BR /&gt;&lt;BR /&gt;/dev/vg00/lvol6     861557  775402       0  100% /usr     &lt;BR /&gt;&lt;BR /&gt;I have the command from previous thread&lt;BR /&gt;&lt;BR /&gt;lvextend -L 500 /dev/vg00/lvol6&lt;BR /&gt;&lt;BR /&gt;what is 500 stand for?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance</description>
      <pubDate>Thu, 26 Jul 2007 14:11:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060101#M436565</guid>
      <dc:creator>Peter Chuang</dc:creator>
      <dc:date>2007-07-26T14:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: Expand /usr</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060102#M436566</link>
      <description>500MB size. See lvextend man page. Since your /usr is around 800MB, you'll want a bigger value than 800.</description>
      <pubDate>Thu, 26 Jul 2007 14:15:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060102#M436566</guid>
      <dc:creator>Jeff_Traigle</dc:creator>
      <dc:date>2007-07-26T14:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: Expand /usr</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060103#M436567</link>
      <description>after you extend the lvol you will want to extend the file system. if you have onlinejfs you can&lt;BR /&gt;&lt;BR /&gt;# fsadm -b 800M /var</description>
      <pubDate>Thu, 26 Jul 2007 14:20:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060103#M436567</guid>
      <dc:creator>Court Campbell</dc:creator>
      <dc:date>2007-07-26T14:20:12Z</dc:date>
    </item>
    <item>
      <title>Re: Expand /usr</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060104#M436568</link>
      <description>Hi Peter:&lt;BR /&gt;&lt;BR /&gt;# man lvextend&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 26 Jul 2007 14:20:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060104#M436568</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-07-26T14:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: Expand /usr</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060105#M436569</link>
      <description>And take a look at the examples in "man lvextend".  By the way, you will most likely need to reboot in single user mode in order to get /usr unmounted.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 26 Jul 2007 14:24:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060105#M436569</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2007-07-26T14:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: Expand /usr</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060106#M436570</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you look at the man page, you will see that the -L option sets the new size in MegaBytes.&lt;BR /&gt;&lt;BR /&gt;If you have onlineJFS installed you can increase the /usr filesystem on the fly.&lt;BR /&gt;&lt;BR /&gt;# swlist -l product | grep -i online&lt;BR /&gt;&lt;BR /&gt;Then the command would be&lt;BR /&gt;&lt;BR /&gt;# lvextend -L xxxxx /dev/vg00/lvol6&lt;BR /&gt;xxxxx = new size of /usr&lt;BR /&gt;# fsadm -F vxfs -b xxxxxM /usr&lt;BR /&gt;&lt;BR /&gt;If you do not have OnlineJFS installed, you will have to reboot into single user mode.&lt;BR /&gt;&lt;BR /&gt;# shutdown -r -y now&lt;BR /&gt;interrupt boor process&lt;BR /&gt;boot pri ipl&lt;BR /&gt;ISL&amp;gt; hpux -is&lt;BR /&gt;# /sbin/lvextend -L xxxxx /dev/vg00/lvol6&lt;BR /&gt;# /sbin/extendfs /dev/vg00/lvol6&lt;BR /&gt;# mount /usr&lt;BR /&gt;# shutdown -r -y now&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Robert-Jan&lt;BR /&gt;</description>
      <pubDate>Thu, 26 Jul 2007 14:29:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060106#M436570</guid>
      <dc:creator>Robert-Jan Goossens_1</dc:creator>
      <dc:date>2007-07-26T14:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: Expand /usr</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060107#M436571</link>
      <description>Thank you all for the prompt reply.  Problem solved.</description>
      <pubDate>Thu, 26 Jul 2007 15:05:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060107#M436571</guid>
      <dc:creator>Peter Chuang</dc:creator>
      <dc:date>2007-07-26T15:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: Expand /usr</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060108#M436572</link>
      <description>Thanks again.</description>
      <pubDate>Thu, 26 Jul 2007 15:06:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/expand-usr/m-p/5060108#M436572</guid>
      <dc:creator>Peter Chuang</dc:creator>
      <dc:date>2007-07-26T15:06:35Z</dc:date>
    </item>
  </channel>
</rss>

