- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- deleting files does not reduce the space
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-30-2004 06:21 PM
06-30-2004 06:21 PM
deleting files does not reduce the space
I am deleting some files from one of my filesystems. But it does not increase the available space.
Before deleting one file the available space is 6.8 MB. After deleting a file of 60 MB the available space remains the same.
Its a B Class machine
and HP Unix Versions is 10.20>
Could anybody please advice.
Thanks and Regards,
Amit Manna
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2004 06:30 PM
06-30-2004 06:30 PM
Re: deleting files does not reduce the space
This link may help you.
http://forums1.itrc.hp.com/service/forums/bizsupport/questionanswer.do?threadId=485727
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2004 06:42 PM
06-30-2004 06:42 PM
Re: deleting files does not reduce the space
#fuser -cu /file_system
This will list processes using a file or file structure. If the same is listed then user the following command
#fuser -kcu /file_system
which will send the SIGKILL signal to each process using each file.
Both the command need to be fired from root id.
sks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2004 06:45 PM
06-30-2004 06:45 PM
Re: deleting files does not reduce the space
Kaps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2004 09:14 PM
06-30-2004 09:14 PM
Re: deleting files does not reduce the space
Thanks and Regards,
Amit Manna
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2004 09:20 PM
06-30-2004 09:20 PM
Re: deleting files does not reduce the space
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2004 09:21 PM
06-30-2004 09:21 PM
Re: deleting files does not reduce the space
This is a common problem. Disk space is not returned to the filesystem when you delete a file if something has that file open. You don't get the space back until that file is closed. However, the directory entry for the file IS removed so you can't see it anymore. It's almost certain that something is holding your 60MB file open. You will have to find what has that file open. Make sure it isn't you :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2004 09:23 PM
06-30-2004 09:23 PM
Re: deleting files does not reduce the space
As Antunes suggested, rebooting if possible can solve your problem.
Or you can try umounting and again mounting the Filesystem.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2004 09:23 PM
06-30-2004 09:23 PM
Re: deleting files does not reduce the space
Kaps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2004 09:48 PM
06-30-2004 09:48 PM
Re: deleting files does not reduce the space
Other suggestion:
Save file system on tape.
Create again file system with mkfs command.
Restore file system from tape.
HTH
Bruno