- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to determone the block size in a jfs filesyste...
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
Forums
Discussions
Discussions
Discussions
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
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
09-11-2007 04:57 AM
09-11-2007 04:57 AM
how to determone the block size in a jfs filesystem and how to know if large file size is enabled
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2007 05:04 AM
09-11-2007 05:04 AM
Re: how to determone the block size in a jfs filesystem and how to know if large file size is enabled
# /usr/sbin/mkfs -F vxfs -m /dev/vgXX/lvolNN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2007 05:22 AM
09-11-2007 05:22 AM
Re: how to determone the block size in a jfs filesystem and how to know if large file size is enabled
# fsadm -F vxfs /path/to/filesystem
If you want to find the block size look at the vgdisplay output under "PE size"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2007 05:33 AM
09-11-2007 05:33 AM
Re: how to determone the block size in a jfs filesystem and how to know if large file size is enabled
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2007 05:36 AM
09-11-2007 05:36 AM
Re: how to determone the block size in a jfs filesystem and how to know if large file size is enabled
no points on this post.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2007 05:41 AM
09-11-2007 05:41 AM
Re: how to determone the block size in a jfs filesystem and how to know if large file size is enabled
Here is another way to check the large files. see the command and the output. If the f_flag is set to 16 , large file is activated. If set to 0 , then large files not supported. Also see the f_blocksize ..
# fstyp -v /dev/vg21/lvol1
vxfs
version: 4
f_bsize: 8192
f_frsize: 1024
f_blocks: 1024000
f_bfree: 530841
f_bavail: 497920
f_files: 132228
f_ffree: 132708
f_favail: 132708
f_fsid: 1073938433
f_basetype: vxfs
f_namemax: 254
f_magic: a501fcf5
f_featurebits: 0
f_flag: 16
f_fsindex: 7
f_size: 1024000
Rgds / James George
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2007 05:43 AM
09-11-2007 05:43 AM
Re: how to determone the block size in a jfs filesystem and how to know if large file size is enabled
fstyp -v /dev/vg00/lvol3
vxfs
version: 3
f_bsize: 8192
f_frsize: 1024 <-- this is the block size of the file system
f_blocks: 524288
f_bfree: 414238
f_bavail: 388361
f_files: 139348
f_ffree: 103556
f_favail: 103556
f_fsid: 1073741827
f_basetype: vxfs
f_namemax: 254
f_magic: a501fcf5
f_featurebits: 0
f_flag: 0 <-- this will be 16 if largefiles enabled
f_fsindex: 6
f_size: 524288