What can I use instead of TreeSize

There is a Windows program called Tree Size which shows disk usage.

You can tell how much each folder is using in Linux using the following from command line:-

du -cks * | sort -gr

 

Old version...      du -sm $(find $1 -maxdepth 1 -type d ) | sort -gr

 

The output is show in MB.

Was this answer helpful?

 Print this Article

Also Read

Apache - Address already in use: make_sock: could not bind to address

Apache - Address already in use: make_sock: could not bind to address This error message can be...

Slow ssh authentication

Problem: ssh login takes up to 30 seconds. Solution: It is likely to be a Reverse DNS issue....

Improve ProFTPD performance

A quick fix to fix connectivity or slow connection issues when using ProFTPD is to edit some of...

FTP uploads have wrong permissions

When files are created in a folder via FTP, the permisions are not set to those of the folder....

Run .cgi outside cgi-bin directory

By default runs CGI scripts in /cgi-bin/ folder only. To allow CGI scripts be processed from...