<?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: HPUX 11.00 :  Volume Group Creation w/8k Block Size, Largefiles Enable in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-00-volume-group-creation-w-8k-block-size-largefiles/m-p/2909178#M634014</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You are confusing volume groups and filesystems.&lt;BR /&gt;&lt;BR /&gt;Volume groups have a Physical Extent size (PE), the default is 4Mb.&lt;BR /&gt;Filesystems  have a blocksize (default 1Kb) and largefiles capability.&lt;BR /&gt;&lt;BR /&gt;To create a filesystem with 8Kb blocksize and largefiles, use:&lt;BR /&gt;newfs -F vxfs -o largefiles -b 8192 /dev/vg??/rlvol?&lt;BR /&gt;&lt;BR /&gt;Where /dev/vg??/lvol? is the name of a logical volume.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;John</description>
    <pubDate>Thu, 20 Feb 2003 14:21:09 GMT</pubDate>
    <dc:creator>John Palmer</dc:creator>
    <dc:date>2003-02-20T14:21:09Z</dc:date>
    <item>
      <title>HPUX 11.00 :  Volume Group Creation w/8k Block Size, Largefiles Enable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-00-volume-group-creation-w-8k-block-size-largefiles/m-p/2909174#M634010</link>
      <description>I have a L2000 Class server running HPUX 11.0 attached to a EMC array. I need to create a volume group with a 8k block size as well as "largefiles" enabled on each logical volume. The default block size for a new volume group is 4k. What is the correct syntax for creating a volume group with a 8k block size?  How is "largefiles" enabled on a LVM? Can the "fstyp" command be used to verify "largefiles" enabled?</description>
      <pubDate>Thu, 20 Feb 2003 14:02:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-00-volume-group-creation-w-8k-block-size-largefiles/m-p/2909174#M634010</guid>
      <dc:creator>LG Porter</dc:creator>
      <dc:date>2003-02-20T14:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11.00 :  Volume Group Creation w/8k Block Size, Largefiles Enable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-00-volume-group-creation-w-8k-block-size-largefiles/m-p/2909175#M634011</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;The range for the PE size is from 1 to 256 Mo.&lt;BR /&gt;&lt;BR /&gt;To create a fs wiyh largefile option :&lt;BR /&gt;newfs -F vxfs -o largefiles /dev/vgxx/rlvolxx&lt;BR /&gt;&lt;BR /&gt;To check :&lt;BR /&gt;fsadm -F vxfs /&lt;MOUNT point=""&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Fr??d??ric&lt;BR /&gt;&lt;/MOUNT&gt;</description>
      <pubDate>Thu, 20 Feb 2003 14:08:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-00-volume-group-creation-w-8k-block-size-largefiles/m-p/2909175#M634011</guid>
      <dc:creator>Frederic Sevestre</dc:creator>
      <dc:date>2003-02-20T14:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11.00 :  Volume Group Creation w/8k Block Size, Largefiles Enable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-00-volume-group-creation-w-8k-block-size-largefiles/m-p/2909176#M634012</link>
      <description>And, for your 8k block size you need to specify the -s option on your vgcreate command.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 20 Feb 2003 14:13:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-00-volume-group-creation-w-8k-block-size-largefiles/m-p/2909176#M634012</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-02-20T14:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11.00 :  Volume Group Creation w/8k Block Size, Largefiles Enable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-00-volume-group-creation-w-8k-block-size-largefiles/m-p/2909177#M634013</link>
      <description>create a volume group with a pe_size of 8MB (4MB is default):&lt;BR /&gt;&lt;BR /&gt;# vgcreate -s 8 -n vg_name /dev/dsk/c... /dev/dsk/c...&lt;BR /&gt;&lt;BR /&gt;to verify if the lvol (filesystem) is already configured for largefiles:&lt;BR /&gt;&lt;BR /&gt;# fstyp -v /dev/vgXY/lvolX | grep f_flag&lt;BR /&gt;---&amp;gt; 16= largefiels&lt;BR /&gt;     0 = no largefiles&lt;BR /&gt;&lt;BR /&gt;modify an existing filesystem for largefiles:&lt;BR /&gt;&lt;BR /&gt;# fsadm -F &lt;FILESYSTEM_TYP&gt; -o largefiles /dev/[vg]/[rlvol]&lt;BR /&gt;# mount -F vxfs -o largefiles /dev/[vg]/[lvol]/[mountpoint]&lt;BR /&gt;&lt;BR /&gt;create a new filesystem with largefile option:&lt;BR /&gt;&lt;BR /&gt;# newfs -F vxfs -o largefiles /dev/[vg]/[rlvol]&lt;BR /&gt;# mount -F vxfs -o largefiles /dev/[vg]/[lvol]/[mountpoint]&lt;BR /&gt;&lt;BR /&gt;edit /etc/fstab and add the largefile option:&lt;BR /&gt;&lt;BR /&gt;/dev/vgxx/lvolx /[mountpoint] vxfs delaylog,largefiles 0 2&lt;BR /&gt;&lt;BR /&gt;Regards ...&lt;BR /&gt;Armin&lt;BR /&gt;&lt;BR /&gt;&lt;/FILESYSTEM_TYP&gt;</description>
      <pubDate>Thu, 20 Feb 2003 14:16:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-00-volume-group-creation-w-8k-block-size-largefiles/m-p/2909177#M634013</guid>
      <dc:creator>Armin Feller</dc:creator>
      <dc:date>2003-02-20T14:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11.00 :  Volume Group Creation w/8k Block Size, Largefiles Enable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-00-volume-group-creation-w-8k-block-size-largefiles/m-p/2909178#M634014</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You are confusing volume groups and filesystems.&lt;BR /&gt;&lt;BR /&gt;Volume groups have a Physical Extent size (PE), the default is 4Mb.&lt;BR /&gt;Filesystems  have a blocksize (default 1Kb) and largefiles capability.&lt;BR /&gt;&lt;BR /&gt;To create a filesystem with 8Kb blocksize and largefiles, use:&lt;BR /&gt;newfs -F vxfs -o largefiles -b 8192 /dev/vg??/rlvol?&lt;BR /&gt;&lt;BR /&gt;Where /dev/vg??/lvol? is the name of a logical volume.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;John</description>
      <pubDate>Thu, 20 Feb 2003 14:21:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-00-volume-group-creation-w-8k-block-size-largefiles/m-p/2909178#M634014</guid>
      <dc:creator>John Palmer</dc:creator>
      <dc:date>2003-02-20T14:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11.00 :  Volume Group Creation w/8k Block Size, Largefiles Enable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-00-volume-group-creation-w-8k-block-size-largefiles/m-p/2909179#M634015</link>
      <description>first of all Volume group or Lvol has nothing to do with your. Block size is a property of filesytem you create on any Logical volume.&lt;BR /&gt;&lt;BR /&gt;to create largefile enabled filesystem, you can newfs the lv with -o largefiles option.&lt;BR /&gt;&lt;BR /&gt;for 8k block size you also give -b 8192 option in newfs with -o largefiles option.&lt;BR /&gt;&lt;BR /&gt;To check lvol if it has largefiles enabled or not, just run &lt;BR /&gt;fsadm -F vxfs /mountpoint&lt;BR /&gt;where that lv is mounted. it will tell if the filesystem supports largefiles or not. &lt;BR /&gt;fstype -v /dev/VGXX/lvolX will show the block size , see f_bsize parameter there.&lt;BR /&gt;&lt;BR /&gt;And your question, how lvm enables largefiles, internally I do not know, in case of vxfs, i think it may be allowing unlimited extents or in HFS case it may be allowing many redirection for block allocation for a file, but this is just a guess, I think HP LVM engineer needs to step in here...&lt;BR /&gt;&lt;BR /&gt;hope this helps.</description>
      <pubDate>Thu, 20 Feb 2003 23:49:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-00-volume-group-creation-w-8k-block-size-largefiles/m-p/2909179#M634015</guid>
      <dc:creator>monasingh_1</dc:creator>
      <dc:date>2003-02-20T23:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11.00 :  Volume Group Creation w/8k Block Size, Largefiles Enable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-00-volume-group-creation-w-8k-block-size-largefiles/m-p/2909180#M634016</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;As pointed by others, you got confused with block size and the extent size. To specify extent size you would use -s option with vgcreate. -b with newfs if you intended block size. I would not suggest deviating from the default block size (f_frsize) as there would be no gain plus will consume extra overhead on the space as the minimum block it will reserve would be 8k.&lt;BR /&gt;&lt;BR /&gt;An interesting way of checking if a file system is enabled for largefiles or not use mkfs ( I am serious) command with -m option.&lt;BR /&gt;&lt;BR /&gt;mkfs -m /dev/vg01/lvol1&lt;BR /&gt;&lt;BR /&gt;It will printout the line that contains the options of previous mkfs commands and will show you if largefiles option was previously used.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Fri, 21 Feb 2003 00:09:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11-00-volume-group-creation-w-8k-block-size-largefiles/m-p/2909180#M634016</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2003-02-21T00:09:39Z</dc:date>
    </item>
  </channel>
</rss>

