vote up 3 vote down star
2

Hi, my partition /tmp is full... and its empty at the same time. So the partition is full. Check the directory:

# du -sh /tmp
28K /tmp

What? It is empty... And it is really empty... just two empty directories are located in /tmp

Checking partition details:

# df -h
Filesystem           Size  Used Avail Use% Mounted on
/dev/cciss/c0d0p9   1012M  961M     0 100% /tmp

It is full! But why is used + available != size?

Checking Inodes:

# df -i
Filesystem            Inodes   IUsed   IFree IUse% Mounted on
/dev/cciss/c0d0p9     131616      17  131599    1% /tmp

So what happens here?

flag
It's too bad. The other day I had a technical question that I wanted to ask which I'm sure the SOF community could answer -- but it wasn't programming related, so I didn't ask. Maybe SOF needs to broaden its scope? – Pistos Oct 30 '08 at 13:09
If you search for "sysadmin questions" you can find a discussion where there was community consensus to allow sysadmin questions if they are tagged as such. – Paul Tomblin Oct 30 '08 at 13:12
I'm going to guess Solaris for the OS? – warren Oct 30 '08 at 13:20
@toolkit, @warren: A Unix like OS; du(1) is a clue. Which one seems irrelevant. – janm Oct 30 '08 at 13:25
BTW: the second and third command look like the arguments and output from df, so I fixed them. – Paul Tomblin Oct 30 '08 at 13:27
show 1 more comment

2 Answers

vote up 3 vote down check

In unix/linux, after you remove a file, it remains on the disk until the last program using it closes it. So in your case, you might have a deleted file that is filling up /tmp, and a zombie program that is holding it open.

Update: I'm going to echo @Vinko's suggestion that you can use lsof to find that zombie, using

lsof +D /tmp
link|flag
Zombies! If it's not files, it's brains! – Mitch Wheat Oct 30 '08 at 13:12
Here here - the man page says "du - estimate file space usage" – toolkit Oct 30 '08 at 13:13
@toolkit: The key there is "estimate". Paul Tomblin is right; if you a process still has a handle open to a deleted file the space isn't released. It doesn't even have to be a zombie process. – janm Oct 30 '08 at 13:22
janm - I was agreeing with Paul. 'Here here' means I agree :-) – toolkit Oct 30 '08 at 13:26
Suggestion thief! :) – Vinko Vrsalovic Oct 30 '08 at 13:26
show 2 more comments
vote up 3 vote down

Use lsof to find out which process is holding the file open

$ lsof /usr/bin/python
COMMAND  PID  USER  FD   TYPE DEVICE    SIZE   NODE NAME
python  5020 hplip mem    REG    8,2 1158612 623041 /usr/bin/python2.5
python  6795 vinko txt    REG    8,2 1158612 623041 /usr/bin/python2.5
link|flag
I stole your suggestion, but I voted you up. Are we even? :-) – Paul Tomblin Oct 30 '08 at 13:29
Not until I get to steal one of yours and vote you up. – Vinko Vrsalovic Oct 30 '08 at 13:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.