Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've encountered this strange problem today, for which I cannot find an explanation.

I have the following list of files on my Debian Linux system (produced using the "ls -l command"):

http://imageupper.com/i/?S0400010050011Y13567312822016742 (it seems I cannot post images directly because of my reputation)

This shows me 10 files (5 regular files and 5 symbolic links)

Though, when I try to display the file sizes using the command "du -ba", I only get 9 files:

http://imageupper.com/i/?S0400010050011Y13567312822016742

The file missing here is: arm-unknown-linux-gnueabi-gcc

When I use the command "du -ba *", again only 9 files are listed, but now the file missing is: arm-unknown-linux-gnueabi-gcc-4.5.1

I'm a bit clueless here... Does anyone know why du is behaving like this?

Thanks a lot in advance.

share|improve this question

closed as off topic by Paul R, Lars Kotthoff, antlersoft, Petesh, Eugene Mayevski 'EldoS Corp Dec 29 '12 at 7:48

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

My guess is arm-unknown-linux-gnueabu-gcc and arm-unknown-linux-gnueabu-gcc-4.5.1 are hard links to the same file, so there's only one actual file taking up space. Try ls -i to show the inodes; if they're the same for the two files, that's what's going on.

P.S. In the future it would work better just to paste the output from your terminal, rather than posting a link to a screenshot.

share|improve this answer
Or (after reading man du) try du -l to "count sizes many times if hard linked". – iamnotmaynard Dec 28 '12 at 22:11
And du -ba * takes as input all the files given by the glob splat *, which apparently feeds the files in a slightly different order than du itself does. – iamnotmaynard Dec 28 '12 at 22:13

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