- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: bdf values do not add up
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
06-15-2004 02:59 PM
06-15-2004 02:59 PM
bdf values do not add up
Brief background:Data in a file system on a server needs to be replicated to another server.
FS of same size created on the other server. However, the bdf values do not tally
server 1:
/dev/vg01/lvburnbuf 983040 925203 54869 94% /ixos/burnbuf
server 2:
/dev/vg01/lvburnbuf 983040 1341 920350 0% /ixos/burnbuf
The total sizes tally, but the sum of the used and avail do not. This causes the replication to fail as the avail space (920350) is insufficient
Appreciate possible explanations for this.
Rgds,
Shahril
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2004 03:08 PM
06-15-2004 03:08 PM
Re: bdf values do not add up
# fstyp dev/vg01/lvburnbuf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2004 03:12 PM
06-15-2004 03:12 PM
Re: bdf values do not add up
Both are JFS.
Rgds,
Shahril
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2004 03:12 PM
06-15-2004 03:12 PM
Re: bdf values do not add up
When you create a filesystem, 10% is alloted for minfree area meant for performance and another 5% for system overhead. You will not see atleast 5% in the usage field of your bdf output.
So if you want 100MB, create a logical volume size of around 110 MB as after filesystem creation, you will get approximately 100MB.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2004 06:26 PM
06-15-2004 06:26 PM
Re: bdf values do not add up
The discrepancy could be due to different metastructure of the disks on both the servers, if the disks are from a storage box. Just the compare the disk sizes and number of disks in the volume groups. And as a practice, create/extend logical volumes to specific disks only.
regards,
RDL.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 02:54 AM
06-17-2004 02:54 AM
Re: bdf values do not add up
As Sri points out, a certain amount of free space is reserved on each file system. It looks like the 2 file systems you list have a different % set aside for free space. I am not that familiar with JFS file systems, but with HFS file systems there is a tunefs command that changes the %minfree on a file system. e.g.
tunefs -m 3 /dev/vg01/lvburnbuf
I would umount the file system before running tunefs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 03:07 AM
06-17-2004 03:07 AM
Re: bdf values do not add up
Pls umount in server 2 /ixos/burnbuf and check if after this files exist inside, in this case you remove them a re-mount the FS.
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 06:44 AM
06-17-2004 06:44 AM
Re: bdf values do not add up
df -k
instead.
From bdf man page:
The bdf command does not account for any disk space reserved for swap
space, or used for the HFS boot block (8 KB, 1 per file system), HFS
superblocks (8 KB each, 1 per disk cylinder), HFS cylinder group
blocks (1 KB - 8 KB each, 1 per cylinder group), and inodes (currently
128 bytes reserved for each inode). Non-HFS file systems may have
other items not accounted for by this command.
Rgds...Geoff