here are a few Linux console commands (bash commands) to help you to find some biggest files:
use the "find"
find . -type f -size +50M
find – is the command obviously
. – where to start the search
-type – a type of what to check
-size – Select files with a size below or an equal size
use the "du" and "sort"
du -h --max-depth=1 | sort -hr
links:
https://www.devopsroles.com/find-large-files-linux/
https://www.tomshardware.com/how-to/find-large-files-linux
https://www.cyberciti.biz/faq/linux-find-largest-file-in-directory-recursively-using-find-du/
No comments:
Post a Comment