Answer the question
In order to leave comments, you need to log in
How to find a large file on linux?
Which command can display a list of files with sizes on the server?
Answer the question
In order to leave comments, you need to log in
find . -type f -size +1M -exec du -h \{\} \;
instead of a symbol . specify the directory in which to search, instead of 1 specify the minimum size in megabytes. all files in the specified directory and subdirectories that are larger than the specified size and to which the user has access will be displayed with the specified size.
You can use ncdu, a very handy console utility, a pseudo-graphical wrapper over du that displays folders and files by size in the form of a table and allows you to navigate through folders.
it all depends on the target...
find ~ -size +100000k -exec ls -la '{}' ';'
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question