- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: File System 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
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
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
тАО12-13-2001 08:35 AM
тАО12-13-2001 08:35 AM
I have several servers running HP-UX 10.20 with an Oracle database installed. Receintly I have been seeing my root file system reporting 100% (using bdf). The system usually operates between 75% and 85% used. I have trimmed all log files to zero, removed files from /tmp and it doesn't seem to make any difference in the %used. My root drive is 2GB and is managed by LVM.
Doug
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-13-2001 08:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-13-2001 08:39 AM
тАО12-13-2001 08:39 AM
Re: File System Full
find / -xdev -print | xargs ls -l | sort -n -k 2 | tail -50
This will show the biggest files out there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-13-2001 08:41 AM
тАО12-13-2001 08:41 AM
Re: File System Full
Make sure the file is not in use before removing it (fuser
Fr??d??ric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-13-2001 08:41 AM
тАО12-13-2001 08:41 AM
Re: File System Full
I assume that you have a separate /tmp filesystem. The / filesystem should essentially not grow at all once a system is configured. Check for regular files in /dev. If is quite common to find misdirected tar files in /dev. e.g. You meant to use /dev/rmt/0m but used /dev/rmt/Om instead. Also use find to look for core files. I would also use the du -kx / command to look for large directories.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-13-2001 08:42 AM
тАО12-13-2001 08:42 AM
Re: File System Full
--
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-13-2001 08:42 AM
тАО12-13-2001 08:42 AM
Re: File System Full
I would try to use these two commands to
look for big files or newly created files. 1) find / -xdev -size +1000
-exec ll {} \; > /tmp/bigfiles 2) find / -xdev -type f -mtime -2 -exec ll
{} \; > /tmp/newfiles
Check for any errors while u were taking backup ? for eg: entering /dev/rmt/om instead of /dev/rmt/0m ?
This document will surely help you to solve the problem:
HP Knowledge base #BA961218001
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-13-2001 08:44 AM
тАО12-13-2001 08:44 AM
Re: File System Full
OK you can find bigger files with this command
find / -size +100000c -exec ls -l {} \;
This would give you files bigger than 100,000 Characters. You can increase /decrease number of zeroes to look for the desired size.
Some time if you deleted some files and still
you won't get space then probably it may due to there are some process still running related to deleted file.
Also check if your /dev file gieeting filled up by /om due to a wrong tape device destination name , instead of 0m
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-13-2001 11:10 AM
тАО12-13-2001 11:10 AM
Re: File System Full
Can these directories automatically be deleted like the /tmp directory during start up?
One more question... Can the files in /var/preserve be deleted?
Thanks again!
Doug
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-13-2001 11:14 AM
тАО12-13-2001 11:14 AM
Re: File System Full
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-13-2001 11:16 AM
тАО12-13-2001 11:16 AM