<?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 HP-UX 11.11 increasing the size of /opt in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-11-11-increasing-the-size-of-opt/m-p/5295391#M475097</link>
    <description>&lt;P&gt;It's been a while since I have had to deal with this issue. But I may need to increase the size of /opt to upgrade to Data Protector 6.2. Is that one of the filesystems that requires going to single user mode?&lt;/P&gt;&lt;P&gt;Input will be appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Stuart&lt;/P&gt;</description>
    <pubDate>Tue, 09 Aug 2011 13:57:43 GMT</pubDate>
    <dc:creator>Stuart Powell</dc:creator>
    <dc:date>2011-08-09T13:57:43Z</dc:date>
    <item>
      <title>HP-UX 11.11 increasing the size of /opt</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-11-11-increasing-the-size-of-opt/m-p/5295391#M475097</link>
      <description>&lt;P&gt;It's been a while since I have had to deal with this issue. But I may need to increase the size of /opt to upgrade to Data Protector 6.2. Is that one of the filesystems that requires going to single user mode?&lt;/P&gt;&lt;P&gt;Input will be appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Stuart&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2011 13:57:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-11-11-increasing-the-size-of-opt/m-p/5295391#M475097</guid>
      <dc:creator>Stuart Powell</dc:creator>
      <dc:date>2011-08-09T13:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: HP-UX 11.11 increasing the size of /opt</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-11-11-increasing-the-size-of-opt/m-p/5295591#M475098</link>
      <description>&lt;P&gt;Most likely, but only if you do not have OnlineJFS.&amp;nbsp; With this feature you can expand your filesystem online.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With OnlineJFS (Advanced JFS) installed:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; # lvextend -l &amp;lt;new total PE size&amp;gt; | -L &amp;lt;new total MB size&amp;gt; &amp;lt;lv_path&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; # fsadm -b &amp;lt;size&amp;gt; &amp;lt;file_system&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; size = (PE size x 1024) (Total PE)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -- or --&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; size = xxxxM (value in Megabytes)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;&amp;nbsp; # lvextend -L 2500 /dev/vg00/lvol7 (increase size of lvol7 to 2500 MB)&lt;/P&gt;&lt;P&gt;&amp;nbsp; # fsadm -b 2500M /usr (increase size of /usr filesystem to 2500 MB)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Without OnlineJFS Unmount filesystem (for those such as /var /usr, reboot to single-user mode)&lt;/P&gt;&lt;P&gt;&amp;nbsp; # lvextend -l &amp;lt;new total PE size&amp;gt; | -L &amp;lt;new total MB size&amp;gt; &amp;lt;lv_path&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; # extendfs &amp;lt;lv_path&amp;gt; (the max available size is used by default Mount filesystem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;&amp;nbsp; # lvextend -l 400 /dev/vg00/lvol5 (increase the number of extents to 400 on lvol5)&lt;/P&gt;&lt;P&gt;&amp;nbsp; # umount /home&lt;/P&gt;&lt;P&gt;&amp;nbsp; # extendsfs /dev/vg00/lvol5 (increase the size of the filesystem to the max allowed by the LV)&lt;/P&gt;&lt;P&gt;&amp;nbsp; # mount /home﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Bob&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2011 16:55:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-11-11-increasing-the-size-of-opt/m-p/5295591#M475098</guid>
      <dc:creator>Robert_Jewell</dc:creator>
      <dc:date>2011-08-09T16:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: HP-UX 11.11 increasing the size of /opt</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-11-11-increasing-the-size-of-opt/m-p/5295607#M475099</link>
      <description>&lt;P&gt;Bob,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do have on-line JFS, so I will be able to follow your steps.&amp;nbsp; Thanks for the confirmation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Stuart&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2011 17:07:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-11-11-increasing-the-size-of-opt/m-p/5295607#M475099</guid>
      <dc:creator>Stuart Powell</dc:creator>
      <dc:date>2011-08-09T17:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: HP-UX 11.11 increasing the size of /opt</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-11-11-increasing-the-size-of-opt/m-p/5296665#M475117</link>
      <description>&lt;P&gt;Stuart,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is highly unlikely that you will be able unmount /opt while in multi-user mode, so you &lt;U&gt;will&lt;/U&gt; probably have to go to single user.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2011 14:32:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-11-11-increasing-the-size-of-opt/m-p/5296665#M475117</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2011-08-10T14:32:05Z</dc:date>
    </item>
  </channel>
</rss>

