This website requires JavaScript.
Explore
Help
Register
Sign in
adyxax
/
www
Watch
1
Star
0
Fork
You've already forked www
0
Code
Issues
Pull requests
Activity
Actions
a7fdb10be0
Branches
Tags
No results found.
www
/
content
/
blog
/
commands
/
find-inodes-used.md
Julien Dessaux
ea435049b3
Refactored syntax highlighting shortcodes into markdown
2023-04-23 22:34:10 +02:00
280 B
Raw
Blame
History
title
date
description
tags
Find where inodes are used
2018-04-25
How to locate what is taking all the inodes in the subdirectory of a given device
linux
toolbox
unix
The command
find . -xdev -printf
'%h\n'
|
sort
|
uniq -c
|
sort -k
1
-n