Anope space eater

The UnrealIRCd team does not officially provide support for any services packages that you may be using or want to use. This forum is provided so the community can help each other with services issues.

Moderator: Supporters

Locked
Matbox
Posts: 4
Joined: Sat Oct 29, 2005 11:28 pm

Anope space eater

Post 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
Syzop
UnrealIRCd head coder
Posts: 2179
Joined: Sat Mar 06, 2004 8:57 pm
Location: .nl
Contact:

Post 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
Last edited by Syzop on Sun Oct 30, 2005 9:14 pm, edited 1 time in total.
Matbox
Posts: 4
Joined: Sat Oct 29, 2005 11:28 pm

Post by Matbox »

Thanks you i forgot to say the used os (Linux)
Locked