<?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: need to create a filesystem in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330312#M188971</link>
    <description>If you havent already fixed this...&lt;BR /&gt;&lt;BR /&gt;I would suggest using a smaller size then adding MBs upto the max you want...&lt;BR /&gt;&lt;BR /&gt;if the FS is unmounted i would suggest to use extendfs since it will claim all the space you allocated via lvextend...&lt;BR /&gt;&lt;BR /&gt;You dont need to specify the bytes with extendfs IIRC.(if I remember correctly)&lt;BR /&gt;&lt;BR /&gt;FROM THE MANPAGE:&lt;BR /&gt;&lt;BR /&gt;#man extendfs&lt;BR /&gt;&lt;BR /&gt;SYNOPSIS&lt;BR /&gt;      /usr/sbin/extendfs [-F FStype] [-q] [-v] [-s size] special&lt;BR /&gt;&lt;BR /&gt;      -s size   Specifies the number of DEV_BSIZE blocks to be added to&lt;BR /&gt;                     the file system.  If  size is not specified, the maximum possible size is used.&lt;BR /&gt;</description>
    <pubDate>Mon, 19 Jul 2004 13:34:18 GMT</pubDate>
    <dc:creator>Todd McDaniel_1</dc:creator>
    <dc:date>2004-07-19T13:34:18Z</dc:date>
    <item>
      <title>need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330293#M188952</link>
      <description>I want to create a 100MB filesystem (lets call it dump), and increase the  filesystem to 200MB using OnlineJFS. I can use the /dev/vg02 volume group.&lt;BR /&gt;&lt;BR /&gt;I appreciate if you give me the procedures you use to do this. Seems like my OnlineJFS is not working correctly.&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Tue, 13 Jul 2004 14:02:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330293#M188952</guid>
      <dc:creator>Denise_22</dc:creator>
      <dc:date>2004-07-13T14:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330294#M188953</link>
      <description>1) Make sure you have enough space in /dev/vg02&lt;BR /&gt;&lt;BR /&gt;  # vgdisplay -v /dev/vg02 | egrep "^Free PE|PE Size"&lt;BR /&gt;&lt;BR /&gt;  Multiply Free PE and PE size, the result should be &amp;gt;= 200MB.&lt;BR /&gt;&lt;BR /&gt;2) Create the LV&lt;BR /&gt;&lt;BR /&gt;   # lvcreate -L 100 -n dump /dev/vg01&lt;BR /&gt;&lt;BR /&gt;3) Create the file system&lt;BR /&gt;&lt;BR /&gt;   # newfs -F vxfs /dev/vg01/rdump&lt;BR /&gt;&lt;BR /&gt;4) Mount it&lt;BR /&gt;&lt;BR /&gt;   # mount -F vxfs /dev/vg01/dump /mnt&lt;BR /&gt;&lt;BR /&gt;5) extend the lv to 200 MB.&lt;BR /&gt;&lt;BR /&gt;   # lvextend -L 200 /dev/vg01/dump&lt;BR /&gt;&lt;BR /&gt;6) increase the FS&lt;BR /&gt; &lt;BR /&gt;   # fsadm -F vxfs -b 200m /mnt&lt;BR /&gt;&lt;BR /&gt;7) done.</description>
      <pubDate>Tue, 13 Jul 2004 14:07:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330294#M188953</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-07-13T14:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330295#M188954</link>
      <description>I'm not near a system right now but the creation part is okay.&lt;BR /&gt;&lt;BR /&gt;# lvcreate -n dump /dev/vg02&lt;BR /&gt;# lvextend -L 100 /dev/vg02/dump&lt;BR /&gt;# newfs -F vxfs /dev/vg02/rdump&lt;BR /&gt;# mkdir /dump&lt;BR /&gt;# mount /dev/vg02/dump /dump&lt;BR /&gt;&lt;BR /&gt;This should be okay, someone can fix the size.&lt;BR /&gt;# fsadm -F vxfs -b &lt;NEWSIZE&gt; /dump&lt;BR /&gt;&lt;/NEWSIZE&gt;</description>
      <pubDate>Tue, 13 Jul 2004 14:07:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330295#M188954</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2004-07-13T14:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330296#M188955</link>
      <description>creating FS:&lt;BR /&gt;&lt;BR /&gt;1.  lvcreate -L 100 vg02&lt;BR /&gt;&lt;BR /&gt;Then you get the block and raw device as the output of the command, lets assume it is /dev/vg02/lvolX.&lt;BR /&gt;&lt;BR /&gt;2.  newfs -F vxfs /dev/vg02/rlvolX&lt;BR /&gt;&lt;BR /&gt;3.  if it is a temporary FS then just mount it in /mnt: mount /dev/vg02/lvolX /mnt.&lt;BR /&gt;If it is perminent add a record to the /etc/fstab file.&lt;BR /&gt;&lt;BR /&gt;4. Extend the logical volume:&lt;BR /&gt;lvextend -L 200 /dev/vg02/lvolX.&lt;BR /&gt;&lt;BR /&gt;5. Extend the FS using online JFS:&lt;BR /&gt;fsadm -F vxfs -b 204800 /mnt (or the other moint point).&lt;BR /&gt;* (For the future - If the FS is in 100% for some reason then the fsadm command fails. You have to clean some space and run it again).&lt;BR /&gt;&lt;BR /&gt;6. If you have a provblem with the online JFS you can umount, use extendfs -F vxfs /dev/vg02/rlvolX, and re-mount.&lt;BR /&gt;&lt;BR /&gt;Good Luck !&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Jul 2004 14:11:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330296#M188955</guid>
      <dc:creator>Oved</dc:creator>
      <dc:date>2004-07-13T14:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330297#M188956</link>
      <description>Hi Denise,&lt;BR /&gt;&lt;BR /&gt;If you're using the proper procedures &amp;amp; it still won't extend the FS on the fly, then check to make sure the the vxadv driver is in the kernel. using SAM is the easiest way.&lt;BR /&gt;&lt;BR /&gt;Rgds,&lt;BR /&gt;Jeff</description>
      <pubDate>Tue, 13 Jul 2004 14:13:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330297#M188956</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2004-07-13T14:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330298#M188957</link>
      <description>If you think that the online jfs is not working correctly, what error messages are you getting?</description>
      <pubDate>Tue, 13 Jul 2004 14:19:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330298#M188957</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2004-07-13T14:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330299#M188958</link>
      <description>Just to add one note incase you decide you want to extend it more then 200MB.&lt;BR /&gt;&lt;BR /&gt;fsadm -F vxfs -b 1024*Size_MB's /mountpoint&lt;BR /&gt;&lt;BR /&gt;-F vxfs creates the file system as a vxfs filesystem type.&lt;BR /&gt;-b is block size so it's 1024*200 (if I were to use your 200MB example)&lt;BR /&gt;&lt;BR /&gt;I noticed someone else used the -b 200m for megabytes. I've learned something new, like usual.  And can't find it refered to in the man page.&lt;BR /&gt;&lt;BR /&gt;Figured I would add this incase your scenerio were example numbers.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Jul 2004 14:23:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330299#M188958</guid>
      <dc:creator>Dave Hutton</dc:creator>
      <dc:date>2004-07-13T14:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330300#M188959</link>
      <description>fsadm: cannot shrink /dev/vg02/dump - upgrade fs - inodes currently in use.&lt;BR /&gt;&lt;BR /&gt;This is my error message. I think when I used the fsadm -F vxfs -b 200 /testfs&lt;BR /&gt;&lt;BR /&gt;the -b is not the right option?&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Tue, 13 Jul 2004 14:51:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330300#M188959</guid>
      <dc:creator>Denise_22</dc:creator>
      <dc:date>2004-07-13T14:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330301#M188960</link>
      <description>I've never tried the megabytes option ... &lt;BR /&gt;&lt;BR /&gt;I always use -b blocks. The fsadm_vxfs man pages more or less spells out the formula.&lt;BR /&gt;&lt;BR /&gt;# fsadm -F vxfs -b 209715 /dump</description>
      <pubDate>Tue, 13 Jul 2004 15:11:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330301#M188960</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2004-07-13T15:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330302#M188961</link>
      <description>Michael,&lt;BR /&gt;&lt;BR /&gt;Where did you get that number, 209715? How do you convert from 200MB to blocks?</description>
      <pubDate>Tue, 13 Jul 2004 15:15:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330302#M188961</guid>
      <dc:creator>Denise_22</dc:creator>
      <dc:date>2004-07-13T15:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330303#M188962</link>
      <description>I still can't read nor add up.&lt;BR /&gt;&lt;BR /&gt;# fsadm -F vxfs -b 204800 /dump&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Jul 2004 15:15:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330303#M188962</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2004-07-13T15:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330304#M188963</link>
      <description>Michael,&lt;BR /&gt;&lt;BR /&gt;I set up the initial filesystem as 10MB. Now, I did this&lt;BR /&gt;&lt;BR /&gt;fsadm -F vxfs -b 20480 /dump&lt;BR /&gt;&lt;BR /&gt;I did a vgdisplau -vg02 and it showed that it is a PE of 16. Does that make a difference?&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Tue, 13 Jul 2004 15:22:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330304#M188963</guid>
      <dc:creator>Denise_22</dc:creator>
      <dc:date>2004-07-13T15:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330305#M188964</link>
      <description>Denise,&lt;BR /&gt;&lt;BR /&gt;  fsadm: cannot shrink /dev/vg02/dump - upgrade fs - inodes currently in use.&lt;BR /&gt;&lt;BR /&gt;This is my error message. I think when I used the fsadm -F vxfs -b 200 /testfs&lt;BR /&gt;&lt;BR /&gt;   You are getting this error message because the filesystem is obviously more than 200 blocks - suffix "m" to 200 and try again&lt;BR /&gt;&lt;BR /&gt;  fsadm -F vxfs -b 200m /testfs</description>
      <pubDate>Tue, 13 Jul 2004 15:23:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330305#M188964</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-07-13T15:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330306#M188965</link>
      <description>This is the error msg I get when doing the &lt;BR /&gt;&lt;BR /&gt;fsadm -F vxfs -b 20480 /dump&lt;BR /&gt;&lt;BR /&gt;/dev/vg01/rdump is currently  xxx sectors - size will be increased&lt;BR /&gt;write failure at block 4214782: no such device or address.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Jul 2004 15:26:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330306#M188965</guid>
      <dc:creator>Denise_22</dc:creator>
      <dc:date>2004-07-13T15:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330307#M188966</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You said you are getting this error&lt;BR /&gt;" fsadm -F vxfs -b 20480 /dump&lt;BR /&gt;/dev/vg01/rdump is currently xxx sectors - size will be increased&lt;BR /&gt;write failure at block 4214782: no such device or address " &lt;BR /&gt;&lt;BR /&gt;I can see in your first post you were trying to extend /dump in vg02 then howcome you are getting error for vg01 or is it typing mistake in your last post ? &lt;BR /&gt;&lt;BR /&gt;Dou you also have /dump in vg01.. ? &lt;BR /&gt;Is it giving any error number if yes could you post it..&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Jul 2004 01:13:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330307#M188966</guid>
      <dc:creator>Shaikh Imran</dc:creator>
      <dc:date>2004-07-14T01:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330308#M188967</link>
      <description>Shaikh,&lt;BR /&gt;&lt;BR /&gt;Its my typo. Its actually at /dev/vg02/... and where I am getting this error.&lt;BR /&gt;&lt;BR /&gt;Too many things going on in my mind. &lt;BR /&gt;&lt;BR /&gt;Anyone have any input on why I am getting this error, when I am using 1024*MB.&lt;BR /&gt;&lt;BR /&gt;Lets say I set up the filesystem with 10MB. I wanted to increase to 20MB, that means I would use&lt;BR /&gt;&lt;BR /&gt;fsadm -F vxfs -b 20480 /dump&lt;BR /&gt;&lt;BR /&gt;By the way, I created another 10MB file system and called it /testfs. I then try to extend it using &lt;BR /&gt;&lt;BR /&gt;fsadm -F vxfs -b 20480 /testfs &lt;BR /&gt;&lt;BR /&gt;and am getting the same error message. I thought fsadm can do it on the fly? By the way, I caught where there are versions 3 and version 4 and these correspond to the type of filesystem, would this make a difference here? How do I find the version of my filesystem?&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Wed, 14 Jul 2004 10:51:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330308#M188967</guid>
      <dc:creator>Denise_22</dc:creator>
      <dc:date>2004-07-14T10:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330309#M188968</link>
      <description>GUYS,&lt;BR /&gt;&lt;BR /&gt;This is what I did:&lt;BR /&gt;&lt;BR /&gt;lvcreate -n test /dev/vg02&lt;BR /&gt;lvextend -L 10 /dev/vg02/test&lt;BR /&gt;newfs -F vxfs /dev/vg02/rtest&lt;BR /&gt;mkdir /test&lt;BR /&gt;mount /dev/vg02/test /test&lt;BR /&gt;fsadm -F vxfs -b 20480 /test&lt;BR /&gt;&lt;BR /&gt;The error messages I am getting is probably related to the -b 20480 value. As you can see, I made the size of this filesystem 10MB, but a BDF on vg02 shows a PE size of 16MB.&lt;BR /&gt;&lt;BR /&gt;The error msg is:&lt;BR /&gt;&lt;BR /&gt;fsadm: /dev/vg02/rtest is currently 16384 sectors - size will be increased&lt;BR /&gt;write failure at block 4214782: no such device or address.&lt;BR /&gt;&lt;BR /&gt;Why am I getting the 'write failure at block 4214782'?&lt;BR /&gt;&lt;BR /&gt;I tried the -b 32768 and got the same error. I am not sure why its showing a write failure at block...? Any help here? &lt;BR /&gt;Thanks...</description>
      <pubDate>Thu, 15 Jul 2004 14:05:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330309#M188968</guid>
      <dc:creator>Denise_22</dc:creator>
      <dc:date>2004-07-15T14:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330310#M188969</link>
      <description>Hi,&lt;BR /&gt;The answer to your first question i.e.&lt;BR /&gt;How to know the version is &lt;BR /&gt;fstyp -v /mountpoint&lt;BR /&gt;&lt;BR /&gt;This should tell you the filesystem version.&lt;BR /&gt;&lt;BR /&gt;And for your last post i will like to know the O.S. and bundle patch version as i think&lt;BR /&gt;a patch could fix this as whatever you are doing is correct and still you are getting the same error.&lt;BR /&gt;&lt;BR /&gt;I have heard of some patches for fsadm to fix resizing problems but not exactly know the numbers.&lt;BR /&gt;I will try to get the numbers if you give the O.S and bundle patch details of yours.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Jul 2004 23:58:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330310#M188969</guid>
      <dc:creator>Shaikh Imran</dc:creator>
      <dc:date>2004-07-15T23:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330311#M188970</link>
      <description>Shaikh,&lt;BR /&gt;&lt;BR /&gt;Ok, my OS is 11.0 and the Bundle we have on the server is Sept 2003. The plan is for March 2004 to be installed this coming weekend. &lt;BR /&gt;&lt;BR /&gt;When I did the fstyp -v, I see the version is a 3, and I believe I saw a version 4 for onlineJFS. I am not sure this would cause the problem I am having, but when I:&lt;BR /&gt;&lt;BR /&gt;fsadm -F vxfs -b 20480 /testfs&lt;BR /&gt;&lt;BR /&gt;I get this error msg: &lt;BR /&gt;&lt;BR /&gt;fsdam: /dev/vg02/rtest is currently 16384 sectors - size will be increased.&lt;BR /&gt;write failure at block 4214782: no such device or address.&lt;BR /&gt;&lt;BR /&gt;Not sure what failure at block 4214782 indicates?&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Mon, 19 Jul 2004 13:16:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330311#M188970</guid>
      <dc:creator>James Ellis_1</dc:creator>
      <dc:date>2004-07-19T13:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: need to create a filesystem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330312#M188971</link>
      <description>If you havent already fixed this...&lt;BR /&gt;&lt;BR /&gt;I would suggest using a smaller size then adding MBs upto the max you want...&lt;BR /&gt;&lt;BR /&gt;if the FS is unmounted i would suggest to use extendfs since it will claim all the space you allocated via lvextend...&lt;BR /&gt;&lt;BR /&gt;You dont need to specify the bytes with extendfs IIRC.(if I remember correctly)&lt;BR /&gt;&lt;BR /&gt;FROM THE MANPAGE:&lt;BR /&gt;&lt;BR /&gt;#man extendfs&lt;BR /&gt;&lt;BR /&gt;SYNOPSIS&lt;BR /&gt;      /usr/sbin/extendfs [-F FStype] [-q] [-v] [-s size] special&lt;BR /&gt;&lt;BR /&gt;      -s size   Specifies the number of DEV_BSIZE blocks to be added to&lt;BR /&gt;                     the file system.  If  size is not specified, the maximum possible size is used.&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Jul 2004 13:34:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-to-create-a-filesystem/m-p/3330312#M188971</guid>
      <dc:creator>Todd McDaniel_1</dc:creator>
      <dc:date>2004-07-19T13:34:18Z</dc:date>
    </item>
  </channel>
</rss>

