- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Freed disk space but bdf does not show it
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
01-19-2004 08:22 AM
01-19-2004 08:22 AM
Freed disk space but bdf does not show it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 08:29 AM
01-19-2004 08:29 AM
Re: Freed disk space but bdf does not show it
Can you see the tail -f process in your process list 'ps -ef'? If so, find the PID and kill it.
If not, then you will have to use "lsof" to find the processes that opened the log file.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 08:33 AM
01-19-2004 08:33 AM
Re: Freed disk space but bdf does not show it
There must be a process (tail)that keeps the file open. If you manage to find/kill the process ( lsof, fuser ) the disk space will clear up ( in bdf).
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 08:37 AM
01-19-2004 08:37 AM
Re: Freed disk space but bdf does not show it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 08:41 AM
01-19-2004 08:41 AM
Re: Freed disk space but bdf does not show it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 08:45 AM
01-19-2004 08:45 AM
Re: Freed disk space but bdf does not show it
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 08:50 AM
01-19-2004 08:50 AM
Re: Freed disk space but bdf does not show it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 08:55 AM
01-19-2004 08:55 AM
Re: Freed disk space but bdf does not show it
show the reality accounting for that file.
You are going to receive a page once it reaches the configured threshold.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 09:06 AM
01-19-2004 09:06 AM
Re: Freed disk space but bdf does not show it
Do you start customer defined run commands CDRC in the foregound? In other words if you cmviewcl do you get,package starting or running. If it is starting change the CDRC so they start in the background or give back a exit 0. ( script that starts the software)
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 09:12 AM
01-19-2004 09:12 AM
Re: Freed disk space but bdf does not show it
You might be able to fee up space elsewhere in /.
Run the following
du -akx | sort -rn | more
This will show the largest files/dirs in descending order. You may be able to remove/trim something just enough to get you by until you can halt the pkg again.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 06:58 PM
01-19-2004 06:58 PM
Re: Freed disk space but bdf does not show it
This might help you pinpoint the process, because it will report processes using the / directory, but your process will not show up in 'fuser /'.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 11:36 PM
01-19-2004 11:36 PM
Re: Freed disk space but bdf does not show it
Or use this small script to find out which process has an opened indoe but no dir entry associated (rm has been done but space not freed until process dies)
Regards.