Emmanuel wrote:
>
> When a program crashes in unix, the OS dumps information
> about the state of the program into a file called core. One
> can then later analyze this file for debugging purposes.
> You're probably safe to just delete it.
I'd first identify which program has the bug in it (i.e. which one crashed). You can do that from the command line using:
file /path/to/blah
(where blah is the file). If you are in the same directory as the file, do:
file blah
Charlie