- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Filesystem size not reporting space correctly
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-27-2005 12:43 AM
06-27-2005 12:43 AM
Filesystem size not reporting space correctly
VxFS presented from a EVA5000
RP8400 10CPU 18GRam,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2005 12:49 AM
06-27-2005 12:49 AM
Re: Filesystem size not reporting space correctly
This file system has some open files which are in use by some applications which is causing this.Use fuser command to find processes using this
#fuser -u /archives
Once these process are terminted or aborted the space should be reflected properly.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2005 12:51 AM
06-27-2005 12:51 AM
Re: Filesystem size not reporting space correctly
Before you move/delete them, you should always do a check to see if they are being used or not.
fuser -u /dir/file
Will give you which process is using the file. The other tool that most of the admins use is lsof (list open files) you can get it fro here.
http://hpux.connect.org.uk
Now as you have moved/deleted files, you will have to stop the process to see that process releasesthe space and you see it in your bdf/FS
You can do lsof +aL1 to check what processes are holding the space now.
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2005 12:56 AM
06-27-2005 12:56 AM
Re: Filesystem size not reporting space correctly
Thanks,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2005 02:02 AM
06-27-2005 02:02 AM
Re: Filesystem size not reporting space correctly
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2005 03:58 AM
06-27-2005 03:58 AM
Re: Filesystem size not reporting space correctly
should report the open files that havent' released space (NLINK=0).
regards!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2005 01:55 PM
06-27-2005 01:55 PM
Re: Filesystem size not reporting space correctly
John