- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- definition of f_bsize vs. f_frsize
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-03-2011 04:32 PM
тАО03-03-2011 04:32 PM
definition of f_bsize vs. f_frsize
maxux1:[/]
# fstyp -v /dev/vg19/lvol19
vxfs
version: 5
f_bsize: 8192
f_frsize: 1024
f_blocks: 733806592
f_bfree: 729478676
f_bavail: 683886259
f_files: 182375844
f_ffree: 182369668
f_favail: 182369668
f_fsid: 1074987009
f_basetype: vxfs
f_namemax: 254
f_magic: a501fcf5
f_featurebits: 0
f_flag: 16
f_fsindex: 9
f_size: 733806592
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-03-2011 05:28 PM - last edited on тАО08-25-2011 01:39 PM by Kevin_Paul
тАО03-03-2011 05:28 PM - last edited on тАО08-25-2011 01:39 PM by Kevin_Paul
Re: definition of f_bsize vs. f_frsize
one post says frsize is block size
http://h30499.www3.hp.com/t5/System-Administration/Filesystem-block-size-fstyp-v-vs-mkfs-m/m-p/2577765#M31405
But a guy on this post says that bsize is block size.
http://h30499.www3.hp.com/t5/System-Administration/how-to-know-the-block-size-and-chunk-size-of-my-hp-ux-system/m-p/4264214#M333302
You would think bsize would be block size, but you see many on the first thread say that its frsize. which one is correct? The MAN pages in this case is useless.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-03-2011 07:37 PM
тАО03-03-2011 07:37 PM
Re: definition of f_bsize vs. f_frsize
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-04-2011 12:53 AM
тАО03-04-2011 12:53 AM
Re: definition of f_bsize vs. f_frsize
For your first doubt please check:
http://www.docs.hp.com/en/B2355-90682/statvfs.2.html
-Or-
#man statvfs
If you are on 11i then you have option to modify PE size at vgcreate command:
#vgcreate -s [nn] vgname /dev/dsk/cntndn...
Where -s [nn] will be your desired PE size.
#man vgcreate
If you're over 11i (11i v2 with the PHCO_35524 patch), you could resize disk online with vgmodify. Please check this:
http://h20000.www2.hp.com/bc/docs/support/SupportManual/c01920387/c01920387.pdf
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-04-2011 10:03 AM
тАО03-04-2011 10:03 AM
Re: definition of f_bsize vs. f_frsize
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-04-2011 10:15 AM
тАО03-04-2011 10:15 AM
Re: definition of f_bsize vs. f_frsize
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-05-2011 01:18 AM
тАО03-05-2011 01:18 AM
Re: definition of f_bsize vs. f_frsize
Please check these articles about "Oracle and RAID Usage" and "Setting the optimal disk RAID stripe size", are easy to read, interesting and useful:
http://www.dba-oracle.com/oracle_tips_raid_usage.htm
http://www.dba-oracle.com/t_setting_optimal_raid_asm_disk_stripe_size.htm
I hope they are in your profit!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-05-2011 04:35 AM
тАО03-05-2011 04:35 AM
Re: definition of f_bsize vs. f_frsize
bsize is the "preferred block size": the system will attempt to do all operations in multiples of this size unless it absolutely must do otherwise.
I would expect bsize to be always equal or greater than frsize.
It may be possible to change bsize on an existing filesystem, but changing frsize will probably always require backing up all data on the filesystem and re-running mkfs.
If you're using SSD storage for maximum performance, the value of bsize may be important: SSD blocks must be erased before they can be re-written, and the erase operation will always erase an entire "erase block", which is usually greater than 1k in size. To optimize the usage of SSD, you'll want bsize to be equal to the SSD erase block size (or an exact multiple of it). Otherwise, two write operations to consecutive disk blocks may cause the same erase block to be erased and re-written twice, which lowers performance and speeds up SSD wear rate.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-05-2011 01:34 PM
тАО03-05-2011 01:34 PM
Re: definition of f_bsize vs. f_frsize
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-05-2011 01:39 PM
тАО03-05-2011 01:39 PM