- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- about system 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
02-16-2004 11:55 AM
02-16-2004 11:55 AM
about system space!
and in one filesystem /fs
there is a large file which will cause file system 100%!
BUT after we rm the file
the space of the file system is 100% used
someOne told me reboot the system
is there any other way to release the sapce?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2004 12:06 PM
02-16-2004 12:06 PM
Re: about system space!
Yes. YOu will need to find out the process that has this file still opened. Use 'lsof' to find out the process. Search for lsof in these forums and you will find posts that will help download that tool. It is a good to have tool on the system.
Once it is installed, run it as
lsof /filesystem > /tmp/filesystem.out
Look at the 6th column that says SIZE/Off in that file. YOu should see a process corresponding to the a file of size that you deleted. Restarting the process will release the space.
No need to reboot the box.
But if the process is application critical, then you may have to restart your application.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2004 12:06 PM
02-16-2004 12:06 PM
Re: about system space!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2004 03:15 PM
02-16-2004 03:15 PM
Re: about system space!
You can do it to umount the filesystem and mount it again.
Have a nice day~~
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2004 03:28 PM
02-16-2004 03:28 PM
Re: about system space!
If there is a process that has a handle on the file you removed.
The space does not become free until the process dies. The process can't die sometimes without the file.
The process must be identified and killed.
fuser -cu /fsname
to help identify.
fuser -cuk /fsname
That will nuke every process on the filesystem. I use the world nuke on purpose.
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
02-16-2004 04:23 PM
02-16-2004 04:23 PM
Re: about system space!
Check the space using du -sk /fs command
Thanx