View Single Post
Posts: 16 | Thanked: 15 times | Joined on Jan 2010 @ Norway
#3
As you can see space hogs are often under /user/share and /var.

The graphical Storage Usage application is OK, but there's no option not to list folders that are symlinked to/from other file systems. If you want to check the size of a folder, try:

Code:
du -hs <folder>
To check all folders under a folder, e.g. /usr/share

Code:
cd /usr/share
du -hs * | grep M
(listing only those with size in megabytes.)