<?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: file system blocksize in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542118#M649182</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;fstyp -v /dev/vgXX/lvXXXX&lt;BR /&gt;&lt;BR /&gt;look at f_bsize value&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Patrice.</description>
    <pubDate>Tue, 19 Jun 2001 08:31:59 GMT</pubDate>
    <dc:creator>MARTINACHE</dc:creator>
    <dc:date>2001-06-19T08:31:59Z</dc:date>
    <item>
      <title>file system blocksize</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542117#M649181</link>
      <description>How can I check the file system blocksize for a vxfs filesystem?&lt;BR /&gt;&lt;BR /&gt;df -g show me always 8192 file-system blocksize.&lt;BR /&gt;But total blocks is always 1/1000 of the total amount of space for that filesystem. &lt;BR /&gt;So I would say 1k blocks.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 19 Jun 2001 08:26:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542117#M649181</guid>
      <dc:creator>Ivan Thoelen</dc:creator>
      <dc:date>2001-06-19T08:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: file system blocksize</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542118#M649182</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;fstyp -v /dev/vgXX/lvXXXX&lt;BR /&gt;&lt;BR /&gt;look at f_bsize value&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Patrice.</description>
      <pubDate>Tue, 19 Jun 2001 08:31:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542118#M649182</guid>
      <dc:creator>MARTINACHE</dc:creator>
      <dc:date>2001-06-19T08:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: file system blocksize</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542119#M649183</link>
      <description>fstyp -v /dev/vgXX/lvolx|grep -i f_bsize &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 19 Jun 2001 08:49:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542119#M649183</guid>
      <dc:creator>Vincenzo Restuccia</dc:creator>
      <dc:date>2001-06-19T08:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: file system blocksize</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542120#M649184</link>
      <description>This has been argued over before. There are a lot of different definitions on what block size means;&lt;BR /&gt;&lt;BR /&gt;Basically, HP-UX only talks to disks at 512bytes as a block size via the drivers. HFS uses 512bytes.&lt;BR /&gt;&lt;BR /&gt;JFS uses DEV_BSIZE (declared in /usr/include/sys/param.h) as 1k. However, at a lower level this is still talking to the disk as 512bytes as thats what the HP-UX drivers use. fstyp -v and newfs use a block size parameter which defaults to 8 * DEV_BSIZE (so 8k), but again, at a lower level it uses DEV_BSIZE, so 1k, and even lower down to the HP-UX driver only talks to the disks at 512bytes. So take your pick as to the block size.&lt;BR /&gt;</description>
      <pubDate>Tue, 19 Jun 2001 08:51:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542120#M649184</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2001-06-19T08:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: file system blocksize</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542121#M649185</link>
      <description>I thinks it should be the "f_frsize" . This value can be changed by the command "newfs_vxfs" with the -b option .&lt;BR /&gt;&lt;BR /&gt;And I am also confused with "f_bsize" with "f_frsize" , does "f_frsize" mean fragment size ? but the command " newfs -F vxfs -b 2048 /dev/vg00/lvol# " just change the f_frsize value ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Frank.</description>
      <pubDate>Wed, 20 Jun 2001 00:28:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542121#M649185</guid>
      <dc:creator>Frank Li</dc:creator>
      <dc:date>2001-06-20T00:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: file system blocksize</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542122#M649186</link>
      <description>&lt;BR /&gt;How can we change the f_bsize ? Or it is determinted my the system ? with the -b option of newfs_vxfs command you can only change the f_frsize , that is the fragment size .&lt;BR /&gt;&lt;BR /&gt;Frank.</description>
      <pubDate>Wed, 20 Jun 2001 00:43:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542122#M649186</guid>
      <dc:creator>Frank Li</dc:creator>
      <dc:date>2001-06-20T00:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: file system blocksize</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542123#M649187</link>
      <description>From TKB document #1100330242&lt;BR /&gt;&lt;BR /&gt;PROBLEM&lt;BR /&gt;&lt;BR /&gt;How can I determine the current block size for the vxfs and hfs file systems?&lt;BR /&gt;&lt;BR /&gt;CONFIGURATION&lt;BR /&gt;&lt;BR /&gt;Operating System - HP-UX&lt;BR /&gt;Subsystem - System Administration&lt;BR /&gt;&lt;BR /&gt;RESOLUTION&lt;BR /&gt;&lt;BR /&gt;To determine the current block size for the vxfs file system:&lt;BR /&gt;&lt;BR /&gt;fstyp -v /dev/vg00/lvol#&lt;BR /&gt;&lt;BR /&gt;For example:&lt;BR /&gt;&lt;BR /&gt;# fstyp -v /dev/vg00/lvol1&lt;BR /&gt;&lt;BR /&gt;f_bsize: 8192&lt;BR /&gt;&lt;BR /&gt;Note: The f_bsize parameter reports the block size for the vxfs file system.&lt;BR /&gt;&lt;BR /&gt;To determine the current block size for the hfs file system:&lt;BR /&gt;&lt;BR /&gt;tunefs -v /dev/vg00/rlvol# | grep bsize&lt;BR /&gt;&lt;BR /&gt;For example:&lt;BR /&gt;&lt;BR /&gt;# tunefs -v /dev/vg00/rlvol4 | grep bsize&lt;BR /&gt;&lt;BR /&gt;sbsize  2048  cgsize  2048  cgoffset 24   cgmask  0xfffffff8&lt;BR /&gt;bsize   8192    bshift  13   bmask   0xffffe000&lt;BR /&gt;&lt;BR /&gt;Here is an example of how HFS and VxFS actually interpret these fields:&lt;BR /&gt;&lt;BR /&gt;Field     HFS                   Value for VxFS&lt;BR /&gt;----         ---                    --------------&lt;BR /&gt;f_bsize  block size (8K)   largest possible block size (8K)&lt;BR /&gt;f_frsize  fragment size (1K)    actual block size (usually 1K)</description>
      <pubDate>Wed, 20 Jun 2001 01:35:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542123#M649187</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2001-06-20T01:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: file system blocksize</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542124#M649188</link>
      <description>&lt;BR /&gt;#mkfs -F vxfs -m /dev/vg00/lvol4&lt;BR /&gt;will give this output&lt;BR /&gt;mkfs -F vxfs -o ninode=unlimited,bsize=1024,version=4,inosize=256,logsize=1024,nolargefiles /dev/vg00/lvol4 1048576&lt;BR /&gt;here bsize  value is the block size in bytes.</description>
      <pubDate>Thu, 21 Jun 2001 15:45:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-blocksize/m-p/2542124#M649188</guid>
      <dc:creator>Kandaswamy Natarajan</dc:creator>
      <dc:date>2001-06-21T15:45:33Z</dc:date>
    </item>
  </channel>
</rss>

