- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: / is 100% full
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
03-27-2006 03:49 AM
03-27-2006 03:49 AM
/ is 100% full
it looks like some user process holding the space
how to find out who/what it is?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2006 03:52 AM
03-27-2006 03:52 AM
Re: / is 100% full
cd /
du -k | sort -rn | more
You may wish to boot into single user mode, which makes it easier to id files when all the filesystems are not mounted.
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
03-27-2006 03:59 AM
03-27-2006 03:59 AM
Re: / is 100% full
Check for files that have been created/modified in last n no of days
find / -mtime 10
Cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2006 04:04 AM
03-27-2006 04:04 AM
Re: / is 100% full
# lsof +aL1 /
In case you don't have lsof get it from...
http://hpux.cs.utah.edu/hppd/cgi-bin/search?package=on&description=on&term=lsof
cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2006 04:06 AM
03-27-2006 04:06 AM
Re: / is 100% full
Try : find / -size +10000 -xdev -exec ll {} \;
+10000 : nb of blocks with 512 bytes per block.
It will list all the biggest file of /
Hope this helps
Pat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2006 04:49 AM
03-27-2006 04:49 AM
Re: / is 100% full
mount points. Do you have any NFS mounts?
If so, try unmounting and listing files
under the mount point.
I generally set the access on mount points
to 000. This severely limits the ability
to create files hidden by mount points.
You may need to shutdown the auto mounter
to free up some mount points.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2006 09:47 AM
03-27-2006 09:47 AM
Re: / is 100% full
Also if package is moved to failover node and users still dumping files under mount point directories..
Several possibilities..
Hope it helps
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2006 12:14 PM
03-27-2006 12:14 PM