FreeBSD 13 system crashed, please help to remedy the error!!!

....


Hardware is Dell system, with core i5

FreeBSD 13.1-RELEASE-p6 GENERIC amd64

Request a solution if any...
 
A page fault in kernel mode may have many causes. It could be a bug. Or it could be flaky hardware.

Faced with this problem, I would take note of the advice above. Do the tests and gather the details requested.

There are also quite a few things you can do to help your self. Stress test your system, identify the specific components, systematically reduce the test surface, and try to reproduce the problem reliably.

The steps you should consider repeating (singly, and in combinations) are:
  • sysctl -a | grep temperature. It should be under 60C, and anything over 80C is definitely a problem.
  • If that doesn't work, google "FreeBSD check temperature" and load the required kernel modules.
  • Stress test by flogging all the CPUs as hard as you can with simple Bourne shell infinite loops:
    Code:
    n=0
    while :
    do  
        n=$((n + 1))
    done&
  • Run enough instances to have every CPU 100% active.
  • Stress test the video components by continuous screen rendering.
  • Shut the system down, put on an anti-static strap, and re-seat all the memory modules.
Keep a written record of the circumstances and results of each test.

If the problem persists, download a Linux bootable ISO onto a thumb drive. Boot your system into a recovery shell and repeat the tests. This may well give you a sense of whether your problem is generic hardware or FreeBSD specific bug.
 
Back
Top