- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- File system free space not showing in bdf
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
10-19-2000 03:06 PM
10-19-2000 03:06 PM
Thanks for your help.
Joe Pritchard
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2000 03:29 PM
10-19-2000 03:29 PM
Re: File system free space not showing in bdf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2000 03:29 PM
10-19-2000 03:29 PM
Re: File system free space not showing in bdf
If you moved the file within the same filesystem, then, there will be no change in the percentage used. In this case a 'mv' is simply a rename operation.
If you moved the file from one filesystem to another, then the 'bdf' percentage used will only change if the change in space is significant to 1% or more.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2000 05:50 PM
10-19-2000 05:50 PM
Re: File system free space not showing in bdf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2000 05:54 PM
10-19-2000 05:54 PM
SolutionI may have taken your query too literally. If I did, and I told you the obvious, then here (perhaps) is some better information.
See document #A5826096 or #PU940407163611.
Sometimes after removing a file, a "bdf" command will not show that the file system space was restored. This may occur when a user removes a file that another process still has open.
The data blocks for that file will not be restored to the file system until the process either closes the file descriptor for that file or the process terminates. For example, with a database file that has not returned its space, close the database down or try killing the database handler daemon.
Note that if the process that holds the open file descriptor becomes defunct, it will hold those data blocks until the system is rebooted.
Does this shed better light?
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2000 06:56 AM
10-20-2000 06:56 AM
Re: File system free space not showing in bdf
I did move it to a different file system. It definately is more that 1%.
The file was listener.log for Oracle 8.0.5. I stopped the listener's logging with the LSNRCTL utility before moving the file, however I did not check to see if any other processes had it open. Upon starting the listener log again, it created a new file and logging is working normally. From your last reply, should I try stopping the Listener and restarting it?
Thanks
Joe Pritchard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2000 10:41 AM
10-20-2000 10:41 AM
Re: File system free space not showing in bdf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2000 11:59 AM
10-23-2000 11:59 AM
Re: File system free space not showing in bdf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2000 12:03 PM
10-23-2000 12:03 PM
Re: File system free space not showing in bdf
Do this:
cat /dev/null > /tmp/log #...or whatever...
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2000 12:32 PM
10-23-2000 12:32 PM
Re: File system free space not showing in bdf
> /dir/log.file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2000 04:59 AM
10-24-2000 04:59 AM
Re: File system free space not showing in bdf
fuser -cu /*disk* which will display the list of connections and then I killed them all, not nice, almost a hundred, but at least the space became free.