- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Space not freeing 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
01-20-2004 11:44 AM
01-20-2004 11:44 AM
Space not freeing up
Why is this space not releasing?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 11:52 AM
01-20-2004 11:52 AM
Re: Space not freeing up
You have to kill it.
The fast way is to boot the box.
The slow way is:
fuser -cu /filesystemname
Identify and delete the appropriate process.
The fast, destructive way is
fuser -cuk /filesystemname
The results can be anywhere from timid to catastrophic.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 12:20 PM
01-20-2004 12:20 PM
Re: Space not freeing up
# fuser -u filename
will give the pid(s) and the username(s) that have a file open.
As said above, in order for the space to be released, the process that is accessing that file must be stopped / killed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 12:37 PM
01-20-2004 12:37 PM
Re: Space not freeing up
Check for the process using that file .
# fuser -cu filename
and try killingthe process
# fuser -cuk filename
And try dimounting the filesystem and mount again
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 01:18 PM
01-20-2004 01:18 PM
Re: Space not freeing up
fuser /mount_point
fuser /dev/vgXX/lvolYY
fuser /dev/vgXX/rlvolYY
where /dev/vgXX/lvolYY is the source for the mountpoint. If nothing is shown, you'll have to reboot, or get a copy of lsof (List Open Files) which will show the processes that are keeping the mountpoint open.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 03:38 PM
01-20-2004 03:38 PM
Re: Space not freeing up
check what application accesses that mountpoint.
you can shutdown the application processes to free up the space.
fuser -cu /mountpoint
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 05:01 PM
01-20-2004 05:01 PM
Re: Space not freeing up
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=380187
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 08:35 PM
01-20-2004 08:35 PM
Re: Space not freeing up
a lot of responses are right about reasons of bdf is not freeing up the space.
I think that du -sk is more believable than bdf. Then suggestions about use of lsof are the best solution, of course supposing that immediately a reboot is not possible.
Best regards,
Ettore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 09:42 PM
01-20-2004 09:42 PM
Re: Space not freeing up
Kaps