⟩ How do you find large files in UNIX e.g. more than 1GB?
You can easily find big files by using find command because it provides option to search files based upon there size. Use this if your file system is full and your Java process is crashing with no more space. This command will list all files which is more than 1GB. You can tweak the size easily e.g. to find all files with more than 100 MB just use +100M.
find . - type f -size +1G -print