<?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: Extending Mount Points in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816962#M829092</link>
    <description>run vgdisplay -v vg00 &lt;BR /&gt;&lt;BR /&gt;it will report both the volume group and logical volume stats for the volume group&lt;BR /&gt;&lt;BR /&gt;it will end by reporting the physical volume details (disk space used and available, etc)&lt;BR /&gt;&lt;BR /&gt;do you want to extend existing mointed file systems (like /home) or create new ones?&lt;BR /&gt;&lt;BR /&gt;To extend the file systems already mounted will depend on your configuration... do you have OnLineJFS installed?&lt;BR /&gt;&lt;BR /&gt;to create them from scratch, use the lvcreate command... check the man pages for details as there are several options.  If you give us some specs on what you want I am sure the forum has someone with the answer&lt;BR /&gt;&lt;BR /&gt;Ted</description>
    <pubDate>Tue, 01 Oct 2002 17:21:59 GMT</pubDate>
    <dc:creator>Ted Ellis_2</dc:creator>
    <dc:date>2002-10-01T17:21:59Z</dc:date>
    <item>
      <title>Extending Mount Points</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816960#M829090</link>
      <description>When I installed HP-UX 11.0 the OS is allocating only 2 gig of a 10 gig drive. How do I extend the other 8 gig that is free?&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Tue, 01 Oct 2002 17:16:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816960#M829090</guid>
      <dc:creator>Bob Pedi</dc:creator>
      <dc:date>2002-10-01T17:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: Extending Mount Points</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816961#M829091</link>
      <description>During installation you can change the allocated size of the filesystems. During installation go to the filesystems tab and increase the filesystems as per your requirement. Standard config takes around 4 Gb of disk space.&lt;BR /&gt;&lt;BR /&gt;Sandip</description>
      <pubDate>Tue, 01 Oct 2002 17:19:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816961#M829091</guid>
      <dc:creator>Sandip Ghosh</dc:creator>
      <dc:date>2002-10-01T17:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Extending Mount Points</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816962#M829092</link>
      <description>run vgdisplay -v vg00 &lt;BR /&gt;&lt;BR /&gt;it will report both the volume group and logical volume stats for the volume group&lt;BR /&gt;&lt;BR /&gt;it will end by reporting the physical volume details (disk space used and available, etc)&lt;BR /&gt;&lt;BR /&gt;do you want to extend existing mointed file systems (like /home) or create new ones?&lt;BR /&gt;&lt;BR /&gt;To extend the file systems already mounted will depend on your configuration... do you have OnLineJFS installed?&lt;BR /&gt;&lt;BR /&gt;to create them from scratch, use the lvcreate command... check the man pages for details as there are several options.  If you give us some specs on what you want I am sure the forum has someone with the answer&lt;BR /&gt;&lt;BR /&gt;Ted</description>
      <pubDate>Tue, 01 Oct 2002 17:21:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816962#M829092</guid>
      <dc:creator>Ted Ellis_2</dc:creator>
      <dc:date>2002-10-01T17:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Extending Mount Points</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816963#M829093</link>
      <description>Bob,&lt;BR /&gt;&lt;BR /&gt;You can use SAM to extend the existing logical volumes or add new ones.  A complete re-arrangement would probably require a re-install, as previously noted.&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Tue, 01 Oct 2002 17:23:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816963#M829093</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2002-10-01T17:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Extending Mount Points</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816964#M829094</link>
      <description>It depends on whether you're planning to extend the existing logical volume size created during install or using the free space for some other logical volume. You can plan ahead and modify/change the filesystem size during the installation itself, that way you do not need to extend the filesystem like (/tmp;/var;/opt;/usr). If you're planning to use the free space available after your OS installation, say you want to create a 2GB filesystem for /opt/apps, you would simply ..&lt;BR /&gt;# lvcreate -L 2000 -n lvol8 /dev/vg00&lt;BR /&gt;==&amp;gt; Creating "lvol8" (2GB) in vg00&lt;BR /&gt;# mkdir /opt/apps&lt;BR /&gt;# newfs -F vxfs /dev/vg00/rlvol8&lt;BR /&gt;# mount /dev/vg00/lvol8 /opt/apps&lt;BR /&gt;# vi /etc/fstab&lt;BR /&gt;==&amp;gt; Edit appropriately to make the mount point permanent.&lt;BR /&gt;&lt;BR /&gt;Keep in mind (if you can afford it) "vg00" should only have "non-data" LVs. Doing that can simplify the recovery process.</description>
      <pubDate>Tue, 01 Oct 2002 17:26:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816964#M829094</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-10-01T17:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: Extending Mount Points</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816965#M829095</link>
      <description>&lt;BR /&gt;filesystem (aka Logical Volume) at a time.&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Tue, 01 Oct 2002 17:33:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816965#M829095</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-10-01T17:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Extending Mount Points</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816966#M829096</link>
      <description>oops .. you said "extending mount points" .. in that case it is much easier if you have OnlineJFS ( can increase mounted FS on-the-fly ). If you don't you would have to do it the old-fashion way (ie umount the FS first then lvextend it) ..&lt;BR /&gt;Usually you would not be able to umount vg00 filesystem in multi-user mode. Bring the system down in single-user-mode (ISL&amp;gt; hpux -is) then do this .. (example increasing /opt - lvol5 to 4GB)..&lt;BR /&gt;# /etc/umount /opt&lt;BR /&gt;==&amp;gt; Only if it's mounted. It should not in single-user-mode.&lt;BR /&gt;# lvextend -L 4000 /dev/vg00/lvol5&lt;BR /&gt;==&amp;gt; 4GB is the new size&lt;BR /&gt;# /usr/sbin/extendfs /dev/vg00/rlvol5&lt;BR /&gt;# /etc/mount -a&lt;BR /&gt;==&amp;gt; Check the new size.&lt;BR /&gt;Reboot the system. Keep in mind extending contigous LVs (/,/stand and swap) is not going to be straight forward and the above won't work.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Oct 2002 17:36:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816966#M829096</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-10-01T17:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Extending Mount Points</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816967#M829097</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;making a new filesystem goes basicaly like this:&lt;BR /&gt;&lt;BR /&gt;- decide how big it will be, and where it come in the tree.&lt;BR /&gt;- lvcreate -L size_in Mb /dev/vg00&lt;BR /&gt;- this results in a new lv, say lvol9&lt;BR /&gt;- newfs -F vxfs /dev/vg00/rlvol9&lt;BR /&gt;- mkdir /where_it_will_be&lt;BR /&gt;- mount /dev/vg00/lvol9 /where_it_will_be&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;extending a filesystem is possible through onlinejfs (which must be bought seperately) , and without:&lt;BR /&gt;&lt;BR /&gt;in both ways you do&lt;BR /&gt;- lvextend -L new_size_in_Mb /dev/vg00/lvol9&lt;BR /&gt;&lt;BR /&gt;in onlinejfs you do:&lt;BR /&gt;- fsadm -F vxfs|hfs /mountpoint&lt;BR /&gt;&lt;BR /&gt;without onlineJFS you do:&lt;BR /&gt;- umount /mountpoint&lt;BR /&gt;- extendfs -F vxfs|hfs /dev/vg00/rlvol9&lt;BR /&gt;- mount  /mountpoint&lt;BR /&gt;&lt;BR /&gt;The trouble with the not-onlineJFS-way is that some mountpoints (like /tmp, /var, / ...) can not be unmounted. Therefore you have to reboot in single user mode. There fore you sit behind the console:&lt;BR /&gt;- let users log out&lt;BR /&gt;- shutdown -ry 0&lt;BR /&gt;- interrupt boot proces when it asks you&lt;BR /&gt;- load hpux -is&lt;BR /&gt;- do the trick and reboot again&lt;BR /&gt;&lt;BR /&gt;Good luck&lt;BR /&gt;Donald&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Oct 2002 17:43:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816967#M829097</guid>
      <dc:creator>Donald Kok</dc:creator>
      <dc:date>2002-10-01T17:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: Extending Mount Points</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816968#M829098</link>
      <description>The other posts have explained how to do it.  I'm wondering what exactly you are trying to do.  If your OS only needs 2GB why extend exisiting logical volumes/file systems to use up the other 8GB?  That's what the question sounds like.&lt;BR /&gt;If you do not need it, keep it in reserve.  If you allocate all of the disk space and then later have a need for more, either for an existing logical volume or a new one, it's much more difficult to reclaim it.  &lt;BR /&gt;HP used to ship their new systems with all of the boot disk assigned.  They would create the usual file systems at default sizes and then allocate the remainder to swap.  500MB of swap on a system with 32MB of memory did not make sense.  They now leave it unassigned so the customer can use it as they please.&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Oct 2002 14:11:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816968#M829098</guid>
      <dc:creator>Dave Wherry</dc:creator>
      <dc:date>2002-10-02T14:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: Extending Mount Points</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816969#M829099</link>
      <description>Hi Bob,&lt;BR /&gt;&lt;BR /&gt;I'm with Dave, why do you want to extend the OS?&lt;BR /&gt;Have you installed Swap?&lt;BR /&gt;It should be twice of your RAM.&lt;BR /&gt;You can do this with the SAM.&lt;BR /&gt;&lt;BR /&gt;And don't worry - one time (HP-UX 20.1?) also 10 gig will be too less. ;))&lt;BR /&gt;&lt;BR /&gt;Volkmar</description>
      <pubDate>Wed, 02 Oct 2002 15:19:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-mount-points/m-p/2816969#M829099</guid>
      <dc:creator>V. Nyga</dc:creator>
      <dc:date>2002-10-02T15:19:52Z</dc:date>
    </item>
  </channel>
</rss>

