I crashed 2 times in 1 hour.
This has been happenning out of the blue:
System specs:
Filesystem Size Used Avail Use% Mounted on
/dev/hdb1 2.9G 2.7G 81M 98% /
/dev/hda1 2.9G 2.7G 267M 92% /win
total used free shared buffers cached
Mem: 249 246 3 0 0 83
-/+ buffers/cache: 162 87
Swap: 122 14 107
My safeguard is the sleep program I have made, which is a *vast* improvement
on the do program I previously posted (was a CPU hog).
If anyone else has crashing problems, and wants a program to keep X up and
running, here's a little demo:
sleep.c:
#include <stdio.h>
int main(){
while (0==0){
sleep(32768);
}
}
I just ran blackbox with gdb, let's see what happens.