Timeline for How do I find where all the files are?
Current License: CC BY-SA 3.0
5 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Nov 28, 2016 at 13:55 | comment | added | alexis | That's a great suggestion, @Dababi. But I'd combine it with find . -type d in order to ignore regular files. | |
| Nov 28, 2016 at 13:39 | comment | added | Dababi | this command will give you the top 20 directories or files ordered by disk space occupied | |
| Nov 28, 2016 at 13:37 | comment | added | Dababi | du -bh |sort -nr |tail -n 20 | |
| Nov 28, 2016 at 13:23 | comment | added | alexis | Sounds great, but unfortunately my du has no --inodes option and no differently named option to count files. (This is on a rather old Debian distribution.) Any other ideas? | |
| Nov 28, 2016 at 13:22 | history | answered | Dababi | CC BY-SA 3.0 |