Before anyone says a word, I know this is an obsolete product, but it has been running happily for years without intervention (since 2002 I think)
I now get an "out of disk space" message during a reboot, and the email is not flowing (it is configured as Server-only with multi-drop email).
Has anybody got any ideas on how to flush some temporary files or something to get it running again?
Thanks,
Derick
Did you recently download stuff or receive large e-mails?
Some tricks to find out what is consuming the disk space in general for linux migt help you get started:
To show you which partition/mount point is full:
df
To tell you which directory (in this case one level below where you are now) is containing which amount of data:
du --si --max-depth 1
You can adjust the maxdepth if you like details on a deeper level.
If you would like this two levels deep from the root you could do something like this:
cd /
du --si --max-depth 2