When you are running out of disk space, you will want to know which are the biggest files in your home directory or in the disk itself.
This way if you find some big useless file you may erase it and recover the disk space.
This small command will do the job
du /home/user/* -s| sort -nr | head
Will show you the biggest directory and or file in your home directory.
If you want to list more lines just add the number of lines you want to list, at the end of the command.
du /home/user/* -s| sort -nr | head -50
There is also another way to do it, without using du
find . -type f -exec ls -s {} \; | sort -n -r | head -50 | cat -n







Recent comments
4 hours 41 min ago
5 days 13 hours ago
5 days 23 hours ago
6 days 21 hours ago
1 week 11 hours ago
1 week 13 hours ago
1 week 1 day ago
1 week 1 day ago
1 week 2 days ago
2 weeks 10 hours ago