<?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 File Systems in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452936#M11580</link>
    <description>First start, what FS are you tring to extend. Be aware that the root a swap need to be continuous and that however the other FSs are setup, thet may be contigous as well. (They don't need to be but that is how they were setup.)&lt;BR /&gt;&lt;BR /&gt;From SAM, choose the 'Disks and File Systems' option, then choose the Logical Volume option&lt;BR /&gt;This could take a little time (couple of minutes as it scans the HW). Within this option, highlight the LV you wish to expand and then on the menu bar is Actions. Bring down the menu and there is a selection for 'Increase Size'. &lt;BR /&gt;&lt;BR /&gt;Again be aware, if a contiguous FS, there will be additional steps involved.</description>
    <pubDate>Thu, 12 Oct 2000 15:11:19 GMT</pubDate>
    <dc:creator>Rick Garland</dc:creator>
    <dc:date>2000-10-12T15:11:19Z</dc:date>
    <item>
      <title>Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452919#M11563</link>
      <description>I am running HP 11.0 and I left some disk space unpartitioned when I installed HP-UX so that I could extend a file system when I needed more space.  I can't figure out how to extend a file system.  Can someone help me out extending one of the file systems on a disk?&lt;BR /&gt;&lt;BR /&gt;Chris Hinnen</description>
      <pubDate>Thu, 12 Oct 2000 13:47:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452919#M11563</guid>
      <dc:creator>Chris Hinnen</dc:creator>
      <dc:date>2000-10-12T13:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452920#M11564</link>
      <description>Chris:&lt;BR /&gt;&lt;BR /&gt;If you have OnlineJFS you can do this "on-the-fly". This is a "chargeable" product feature but well worth the cost. You can use SAM to guide you throught the resize, or you can do this yourself. For example, do: &lt;BR /&gt;&lt;BR /&gt;# lvextend -L n /dev/vgxx/lvolx &lt;BR /&gt;# fsadm -b 1024n /var &lt;BR /&gt;&lt;BR /&gt;where n is the NEW SIZE of the logical volume in megabytes, not the increment in size; &lt;BR /&gt;&lt;BR /&gt;and, 1024n is the product of 1024 and the number of megabytes you want to filesystem to ultimately be.&lt;BR /&gt;&lt;BR /&gt;If the filesystem is HFS or you do not have online JFS, then you will need to be able to unmount the filesystem before you can extend it. &lt;BR /&gt;&lt;BR /&gt;These procedures are described in the HP-UX System Administration Tasks manual: &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/hpux/onlinedocs/B2355-90672/B2355-90672.html" target="_blank"&gt;http://docs.hp.com/hpux/onlinedocs/B2355-90672/B2355-90672.html&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 12 Oct 2000 13:59:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452920#M11564</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2000-10-12T13:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452921#M11565</link>
      <description>Hi Chris,&lt;BR /&gt;&lt;BR /&gt;First you have to extend the logical volume with the 'lvextend' command.&lt;BR /&gt;&lt;BR /&gt;Then you have to extend the filesystem. This depends on a) which filesystem and b) whether you have purchased Online JFS.&lt;BR /&gt;&lt;BR /&gt;If you have Online JFS then you can extend 'on the fly' with the fsadm command. Otherwise you have to unmount the filesystem (single user mode may be required) and extend it with the extend_fs command.&lt;BR /&gt;&lt;BR /&gt;There are lots of previous threads on this issue. I suggest that you do a Forums Search (SEARCH button at top left of screen, tick Community Forums and Boolean options and search for 'extending and filesystem').&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;John</description>
      <pubDate>Thu, 12 Oct 2000 13:59:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452921#M11565</guid>
      <dc:creator>John Palmer</dc:creator>
      <dc:date>2000-10-12T13:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452922#M11566</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;do a bdf and notice the first columns device path ie: /dev/vg01/lvol1&lt;BR /&gt;ie you want 500MB do:&lt;BR /&gt;lvextend -L 500 /dev/vg01/lvol1&lt;BR /&gt;After this you have to unmount the filesystem:&lt;BR /&gt;umount /&lt;MOUNT_DIR&gt;&lt;BR /&gt;You have to determine which fs you have with:&lt;BR /&gt;fstyp /dev/vg01/lvol1&lt;BR /&gt;Now extend the filesystem:&lt;BR /&gt;extendfs -F [vxfs|hfs] /dev/vg01/lvol1&lt;BR /&gt;Then mount the fs:&lt;BR /&gt;mount /&lt;MOUNT_DIR&gt;&lt;BR /&gt;&lt;BR /&gt;If you have OnlineJFS you can extend fs without umounting - do a search in the forums with 'fsadm'&lt;BR /&gt;&lt;BR /&gt;Regards&lt;/MOUNT_DIR&gt;&lt;/MOUNT_DIR&gt;</description>
      <pubDate>Thu, 12 Oct 2000 14:00:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452922#M11566</guid>
      <dc:creator>Andreas Voss</dc:creator>
      <dc:date>2000-10-12T14:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452923#M11567</link>
      <description>Depending on the FS you want extended, a couple of them need to remain contingous.&lt;BR /&gt;&lt;BR /&gt;SAM can help.&lt;BR /&gt;&lt;BR /&gt;From the command line, umount the partition, do lvextend -l X /dev/vgYY/lvZZ - X is the total number of extents, YY is the VGNAME and ZZ is the LVNAME. Once complete, do the extendfs command.&lt;BR /&gt;&lt;BR /&gt;SAM will do all of the above steps for you - if the FS dos not need to contingous. If you do not have OnLine JFS, you will need to umount the partition.&lt;BR /&gt;&lt;BR /&gt;Also do a SEARCH for previous posts related to this subject.</description>
      <pubDate>Thu, 12 Oct 2000 14:01:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452923#M11567</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2000-10-12T14:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452924#M11568</link>
      <description>Chris,&lt;BR /&gt;&lt;BR /&gt;extend_fs was a type, the command is extendfs.&lt;BR /&gt;&lt;BR /&gt;I always mix that up with the required man page - man extendfs_vxfs or man extendfs_hfs.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;John</description>
      <pubDate>Thu, 12 Oct 2000 14:03:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452924#M11568</guid>
      <dc:creator>John Palmer</dc:creator>
      <dc:date>2000-10-12T14:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452925#M11569</link>
      <description>How can I determine how much unused space I have to extend these file systems.&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Thu, 12 Oct 2000 14:12:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452925#M11569</guid>
      <dc:creator>Chris Hinnen</dc:creator>
      <dc:date>2000-10-12T14:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452926#M11570</link>
      <description>Chris:&lt;BR /&gt;&lt;BR /&gt;To find how much unused space you have:&lt;BR /&gt;&lt;BR /&gt;# vgdisplay /dev/vgXX&lt;BR /&gt;&lt;BR /&gt;Look for the free PE (physical extents).  One PE=1024 KB&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 12 Oct 2000 14:17:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452926#M11570</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2000-10-12T14:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452927#M11571</link>
      <description>Chris:&lt;BR /&gt;&lt;BR /&gt;Sorry, wrong thought: one PE=4MB as vgdisplay will show!!!&lt;BR /&gt;&lt;BR /&gt;To find how much unused space you have:&lt;BR /&gt;&lt;BR /&gt;# vgdisplay /dev/vgXX&lt;BR /&gt;&lt;BR /&gt;Look for the free PE (physical extents).  One PE=4 MB&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 12 Oct 2000 14:18:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452927#M11571</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2000-10-12T14:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452928#M11572</link>
      <description>Chris,&lt;BR /&gt;&lt;BR /&gt;vgdisplay -v vg?? gives you details per disk in the volume group.&lt;BR /&gt;&lt;BR /&gt;To study a particular disk, use pvdisplay.&lt;BR /&gt;&lt;BR /&gt;See the relevant man pages for full details.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;John</description>
      <pubDate>Thu, 12 Oct 2000 14:25:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452928#M11572</guid>
      <dc:creator>John Palmer</dc:creator>
      <dc:date>2000-10-12T14:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452929#M11573</link>
      <description>OK I go to Volume Groups in SAM and choose Extend on the Volume Group I want to extend.  The Volume Group I want to extend says it has 3152 MB available.  So I select it and choose Extend.  I went to Extend Existing Logical Volumes and changed the size of the ones that I want to increase and hit OK.  I can't choose OK on the Extend Existing Volume Group screen until I choose a disk.  But when I hit the button to Select Disk it gives me an error saying no unused disks are found.  What do I do?&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Thu, 12 Oct 2000 14:33:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452929#M11573</guid>
      <dc:creator>Chris Hinnen</dc:creator>
      <dc:date>2000-10-12T14:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452930#M11574</link>
      <description>Sounds like you are extending onto a disk that is already in the LVM and there are no more 'free' disks. If correct and you want extend a FS on a disk that is in use, choose the VG/LV that is going to be extended. The follow the prompts through to completion. &lt;BR /&gt;&lt;BR /&gt;The find disks option lets you select disks that are not in use with the LVM and will let you setup LVM on the disk(s).</description>
      <pubDate>Thu, 12 Oct 2000 14:37:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452930#M11574</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2000-10-12T14:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452931#M11575</link>
      <description>Hi Chris,&lt;BR /&gt;&lt;BR /&gt;SAM is the best option for you.&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Oct 2000 14:39:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452931#M11575</guid>
      <dc:creator>CHRIS_ANORUO</dc:creator>
      <dc:date>2000-10-12T14:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452932#M11576</link>
      <description>I am using SAM.  I don't understand what you said in your last post Rick about choosing a disk that is in use.  I did this command from the command line and got this error:&lt;BR /&gt;&lt;BR /&gt;/usr/sbin/lvextend -L 152 /dev/vg00/lvol1&lt;BR /&gt;lvextend: Not enough free physical extents available.&lt;BR /&gt;Logical volume "/dev/vg00/lvol1" could not be extended.&lt;BR /&gt;Failure possibly caused by contiguous allocation policy.&lt;BR /&gt;Failure possibly caused by strict allocation policy&lt;BR /&gt;&lt;BR /&gt;I know I have enought physical extents available, it said I have 788 Free PE.&lt;BR /&gt;&lt;BR /&gt;chris</description>
      <pubDate>Thu, 12 Oct 2000 14:47:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452932#M11576</guid>
      <dc:creator>Chris Hinnen</dc:creator>
      <dc:date>2000-10-12T14:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452933#M11577</link>
      <description>Chris,&lt;BR /&gt;vg00/lvol1 is the boot volume of your root VG (/stand).  It MUST be contiguous and have bad block relocation turned off. It is not possible to increase the size of this filesystem after initial creation without either physically moving extents allocated to the other lvols or rebuilding the VG.  Both operations are probably more complex than you require.&lt;BR /&gt;&lt;BR /&gt;Why do you need to extend /stand?  It is proobably more desirable to clean out old/unneccessary kernel/system files.  Alternativey, if a subdirectory is large (should not be, but IF) then you might want to create a separate filesystem for that subdirectory.&lt;BR /&gt;&lt;BR /&gt;Again, cleaning out the FS is probably your best choice.  If you really have a need for a larger /stand, then I suggest rebuilding the root VG with a make_recovery tape.</description>
      <pubDate>Thu, 12 Oct 2000 15:00:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452933#M11577</guid>
      <dc:creator>Alan Riggs</dc:creator>
      <dc:date>2000-10-12T15:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452934#M11578</link>
      <description>I am trying to install the latest General Release Patches for HP-UX 11.0 and it said i did not have enough free space on /stand.  So I guess I need to clean it out.  I don't really know what to delete out of there and don't want to mess anything up inside it.&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Thu, 12 Oct 2000 15:03:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452934#M11578</guid>
      <dc:creator>Chris Hinnen</dc:creator>
      <dc:date>2000-10-12T15:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452935#M11579</link>
      <description>Chris -- look for a build directory.  Anything in there can be removed.  Look for vmunix.* files.  These can be moved elsewhere for the patch install.  The patching will create a copy of your current vmunix file before compiling the new kernel, anyway.  It should not be necessary to restore to a previous version, so rm them if you are confident in your current kernel, move them aside otherwise.&lt;BR /&gt;&lt;BR /&gt;That shoud be enough.  If not, post an ll of /stand and we can take a look.</description>
      <pubDate>Thu, 12 Oct 2000 15:08:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452935#M11579</guid>
      <dc:creator>Alan Riggs</dc:creator>
      <dc:date>2000-10-12T15:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452936#M11580</link>
      <description>First start, what FS are you tring to extend. Be aware that the root a swap need to be continuous and that however the other FSs are setup, thet may be contigous as well. (They don't need to be but that is how they were setup.)&lt;BR /&gt;&lt;BR /&gt;From SAM, choose the 'Disks and File Systems' option, then choose the Logical Volume option&lt;BR /&gt;This could take a little time (couple of minutes as it scans the HW). Within this option, highlight the LV you wish to expand and then on the menu bar is Actions. Bring down the menu and there is a selection for 'Increase Size'. &lt;BR /&gt;&lt;BR /&gt;Again be aware, if a contiguous FS, there will be additional steps involved.</description>
      <pubDate>Thu, 12 Oct 2000 15:11:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452936#M11580</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2000-10-12T15:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452937#M11581</link>
      <description>Here is my ll of the stand directory.&lt;BR /&gt;&lt;BR /&gt;-rw-r--r--   1 root       sys             19 Jul 27 11:23 bootconf&lt;BR /&gt;drwxr-xr-x   4 root       sys           2048 Oct 11 13:11 build&lt;BR /&gt;drwxr-xr-x   5 root       sys           1024 Aug  7 10:41 dlkm&lt;BR /&gt;drwxr-xr-x   5 root       sys           1024 Aug  4 11:51 dlkm.vmunix.prev&lt;BR /&gt;-rw-r--r--   1 root       sys           1932 Jul 27 11:47 ioconfig&lt;BR /&gt;-r--r--r--   1 root       sys             82 Jul 27 11:47 kernrel&lt;BR /&gt;drwxr-xr-x   2 root       root          8192 Jul 27 11:23 lost+found&lt;BR /&gt;-rw-------   1 root       root            12 Oct 11 11:04 rootconf&lt;BR /&gt;-r--r--r--   1 root       sys            690 Oct 11 13:11 system&lt;BR /&gt;-r--r--r--   1 root       sys            690 Oct 11 13:06 system.prev&lt;BR /&gt;-rwxr-xr-x   1 root       sys        12908808 Aug  7 10:28 vmunix&lt;BR /&gt;-rwxr-xr-x   1 root       sys        12908808 Jul 27 11:42 vmunix.prev&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Oct 2000 15:15:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452937#M11581</guid>
      <dc:creator>Chris Hinnen</dc:creator>
      <dc:date>2000-10-12T15:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Extending File Systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452938#M11582</link>
      <description>Okay -- see my last message.  mv or rm vmunix.prev.  Remove files under /stand/build.  I will be very surprised if that does not clear enough space.</description>
      <pubDate>Thu, 12 Oct 2000 15:17:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extending-file-systems/m-p/2452938#M11582</guid>
      <dc:creator>Alan Riggs</dc:creator>
      <dc:date>2000-10-12T15:17:26Z</dc:date>
    </item>
  </channel>
</rss>

