vote up 3 vote down star
1

How do I find out which directories are responsible for chewing up all my inodes?

Ultimately the root directory will be responsible for the largest number of inodes, so I'm not sure exactly what sort of answer I want..

Basically, I'm running out of available inodes and need to find a unneeded directory to cull.

Thanks, and sorry for the vague question.

flag

Wow, people running out of inodes? I haven't seen that since the early days of Usenet when you had to give an argument to mkfs to make it make more inodes - because a Usenet news spool had tons of tiny little files. – Paul Tomblin Dec 7 '08 at 14:24
Yeah - certainly a reminder of times long past. – Jonathan Leffler Dec 7 '08 at 15:47
I think that's like saying, "Wow, you overflowed the stack, and there's so much memory available these days". There's often a good reason it's happening (particular script or directory) and that's what the OP is looking for. – gbarry Dec 7 '08 at 19:00

2 Answers

vote up 4 vote down check

So basically you're looking for which directories have a lot of files? Here's a first stab at it:

find . -type d -print0 | xargs -0 -n1 count_files | sort -n

where "count_files" is a shell script that does (thanks Jonathan)

echo $(ls -a "$1" | wc -l) $1
link|flag
no need for the '-l' parameter to ls - it will default to one-line-per-file output if stdout is not a tty. – Alnitak Dec 7 '08 at 15:30
If the hidden files start with '.', this won't find them. I'd probably use - echo $1 $(ls -a "$1" | wc -l) - to generate directory name and count on one line (and I might well reverse the order to list count first). Note the careful use of quotes around the file name where it matters. – Jonathan Leffler Dec 7 '08 at 15:53
vote up 3 vote down

Here's a simple Perl script that'll do it:

#!/usr/bin/perl -w

use strict;

sub count_inodes($);
sub count_inodes($)
{
  my $dir = shift;
  if (opendir(my $dh, $dir)) {
    my $count = 0;
    while (defined(my $file = readdir($dh))) {
      next if ($file eq '.' || $file eq '..');
      $count++;
      my $path = $dir . '/' . $file;
      count_inodes($path) if (-d $path);
    }
    closedir($dh);
    printf "%7d\t%s\n", $count, $dir;
  } else {
    warn "couldn't open $dir - $!\n";
  }
}

push(@ARGV, '.') unless (@ARGV);
while (@ARGV) {
  count_inodes(shift);
}

If you want it to work like du (where each directory count also includes the recursive count of the subdirectory) then change the recursive function to return $count and then at the recursion point say:

$count += count_inodes($path) if (-d $path);
link|flag

Your Answer

Get an OpenID
or

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