- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: File system problem
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Forums
Discussions
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
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
04-13-2004 05:13 AM
04-13-2004 05:13 AM
2569598 /t01
Aparently the total filesystem is barely using 2.5GB, but bdf output tells me something different
/dev/vgBS/lv_t01.... 8388608 ...8180296 ... 208312 ...98%.... /t01
Is there any way to find out what is happening? What action should be taken to solve this problem? I would like some help on this. Thanks!!!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 05:38 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 05:43 AM
04-13-2004 05:43 AM
Re: File system problem
It is possible that you deleted a file which was still in use and hence the space did not get released even after the file was deleted. This space will get released only when the process that was using this file gets killed / terminate.
do a fuser on the filesystem and find out a list of the processes that are using the filesystem. Locate the process and see if you can kill it or bounce / restart it.
fuser -cu /mount_point
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 05:49 AM
04-13-2004 05:49 AM
Re: File system problem
If you have lsof you can find the unlinked file using the option +aL1.
Use,
lsof +aL1 /mount_point
If you don't have lsof, you can get lsof from this link,
http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.70/
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 06:13 AM
04-13-2004 06:13 AM
Re: File system problem
You probably don't have a problem. I suspect that the DBAs have set up a sparse file for the DB's use. That's a file that defines the beginning and ending blocks but doesn't actually consume the space at that moment. It will slowly use & it will use no more until the DBAs assign it more.
For an example see man prealloc - it does the same thing. bdf sees the preallocated space while du sees the used space - perfectly normal & should not ba a concern. But check with your DBAs just to confirm.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 08:06 AM
04-13-2004 08:06 AM
Re: File system problem
Try this instead:
cd
find . -name +msize 1000000c -exec ll {} \;
This should list larger files for you to look for as targets.
Best regards,
Kent M. Ostby
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 11:58 AM
04-13-2004 11:58 AM
Re: File system problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 12:25 PM
04-13-2004 12:25 PM