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
Anope space eater
Moderator: Supporters
Since I do "diskspace hunting" all the time, here are some tips:
Linux
To check the size of the subdirectories (in megabytes):
(or --max-depth=2 etc... cd to directory if needed)
And for files (files only) in the current directory:
FreeBSD
On FreeBSD you can do the same via:
and
Linux
To check the size of the subdirectories (in megabytes):
Code: Select all
du --max-depth=1 -mAnd for files (files only) in the current directory:
Code: Select all
ls -al --sort=size -r|tailOn FreeBSD you can do the same via:
Code: Select all
du -d 1 -mCode: Select all
ls -al|sort -n +4|tail
Last edited by Syzop on Sun Oct 30, 2005 9:14 pm, edited 1 time in total.