• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

looking for something like SequoiaView for a linux server

leglez

Platinum Member
SequoiaView

I recently bought a dedicated server running Debian Etch. I checked last night and realized I dont have much space left. I am wanting a program that I can access from the web that tells me how much space each directory is taking up or something so I can narrow it down. I would love for it to be like a web gui or something so I can access it on the web. I have xampp installed already so that would be prefered to run it on the web.
 
It's easiest to use the command line to find out this sort of thing.

For example:
cd /
du -sh

find -t d | while read i; do du -sh ${i} ; done > list-of-directories-with-sizes.txt

But there are a variety of GUI applications for this. My favorite is filelight. It's better then those silly squares.
 
Back
Top