Page 1 of 1

Anope space eater

Posted: Sun Oct 30, 2005 9:03 pm
by Matbox
hello !
I installed anope on my shell. All work perfectly but each time i start anope the disponible space on my shell decrease. I know it's normal but i want to know wich file delect to win space.
Than you to help me.

ps: Sorry for my English

Posted: Sun Oct 30, 2005 9:13 pm
by Syzop
Since I do "diskspace hunting" all the time, here are some tips:

Linux

To check the size of the subdirectories (in megabytes):

Code: Select all

du --max-depth=1 -m
(or --max-depth=2 etc... cd to directory if needed)

And for files (files only) in the current directory:

Code: Select all

ls -al --sort=size -r|tail
FreeBSD
On FreeBSD you can do the same via:

Code: Select all

du -d 1 -m
and

Code: Select all

ls -al|sort -n +4|tail

Posted: Sun Oct 30, 2005 9:14 pm
by Matbox
Thanks you i forgot to say the used os (Linux)