- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- file system full - part 2
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
04-18-2001 10:39 AM
04-18-2001 10:39 AM
file system full - part 2
About a month ago I started a thread when I was repeatedly getting the "/tmp: file system full" error while trying to execute a man command. To correct the problem I extended /tmp by 200Mb. /tmp now has a total size of 600Mb. Now here I am a month later and I'm starting to get this error again.
I've attached a file with a number of outputs from my workstation. The glaring thing to me from this output is that I have a large /tmp logical volume with practically no files in it and man commands and a few other commands generate the error.
My workstation is a B180 running 10.20.
Help, I'm falling and I can't get up!
Paul Wahner
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2001 10:44 AM
04-18-2001 10:44 AM
Re: file system full - part 2
du -k /tmp
Thanks,
/rcw
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2001 10:53 AM
04-18-2001 10:53 AM
Re: file system full - part 2
I'd be real interested in what's in your lost+found directory, and maybe the others, too. You can probably delete everything in the lost+found directory, but don't delete the directory itself.
Hope this helps,
Mo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2001 10:54 AM
04-18-2001 10:54 AM
Re: file system full - part 2
The output of du -k /tmp is the same as the
du -kx /tmp output at the bottom of my attachment.
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2001 10:59 AM
04-18-2001 10:59 AM
Re: file system full - part 2
Otherwise there is a lot of space used up by something.
It could very well be that there was a large file and someone deleted it. Deleting it does not work if it is still open by someone. It just removes the directory entry so you can't see the file anymore.
I did this with syslog one time and ended up having to reboot the box to set things right.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2001 11:03 AM
04-18-2001 11:03 AM
Re: file system full - part 2
The space is then only returned to the filesystems when all the file descriptors associated with that pathname are closed.
Have you tried running lsof?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2001 11:11 AM
04-18-2001 11:11 AM
Re: file system full - part 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2001 11:20 AM
04-18-2001 11:20 AM
Re: file system full - part 2
cd /tmp
find . -type f -size +${1}000000c -exec ll {} \;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2001 11:23 AM
04-18-2001 11:23 AM
Re: file system full - part 2
find /tmp -type f -size +1000000c -exec ll {} \;
This should print anything greater than 1MB.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2001 05:56 PM
04-18-2001 05:56 PM
Re: file system full - part 2
1. Is there any mountpoints under /tmp? Unlikely, but space may be hidden under a directory that is mounted to somewhere else?
2. What does "fuser -c /tmp" show? (A more flashier version is 'lsof', available from the HP Porting Centre). Whenever we experience a similar problem, it has commonly been an Application still holding onto space allocated in a mount point. Have you done any "uncompress"s or sh'd a patch lately? Are all Applications that utilise /tmp shutdown completely on a regular basis?