If you want to search all the files that are more than 100MB in your linux server /var folder, type thee below command:
# find /var -type f -size +100M
To Know which directories are taking most spaces of the hard disk, type the below command in your Linux Console:
# du -a /var | sort -n -r | head -n 10
There are 0 comments